controls-helper.php
28 lines
| 1 | <?php |
| 2 | |
| 3 | namespace ShopEngine\Utils; |
| 4 | |
| 5 | defined('ABSPATH') || exit; |
| 6 | |
| 7 | /** |
| 8 | * Global helper class. |
| 9 | * |
| 10 | * @since 1.0.0 |
| 11 | */ |
| 12 | class Controls_Helper { |
| 13 | |
| 14 | public static function font_weight_options() { |
| 15 | $typo_weight_options = [ |
| 16 | '' => esc_html__( 'Default', 'shopengine' ), |
| 17 | ]; |
| 18 | |
| 19 | foreach ( array_merge( [ 'normal', 'bold' ], range( 100, 900, 100 ) ) as $weight ) { |
| 20 | $typo_weight_options[ $weight ] = ucfirst( $weight ); |
| 21 | } |
| 22 | |
| 23 | return $typo_weight_options; |
| 24 | |
| 25 | } |
| 26 | |
| 27 | } |
| 28 |