@@ -7,15 +7,15 @@ discard block |
||
| 7 | 7 | * @category mobile-header-layout |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 10 | +if ( ! defined('ABSPATH')) { |
|
| 11 | 11 | exit; |
| 12 | 12 | } |
| 13 | 13 | |
| 14 | -if ( ! class_exists( 'WP_Customize_Control' ) ) { |
|
| 14 | +if ( ! class_exists('WP_Customize_Control')) { |
|
| 15 | 15 | return; |
| 16 | 16 | } |
| 17 | 17 | |
| 18 | -if ( ! class_exists( 'LSX_Customize_Mobile_Header_Layout_Control' ) ) : |
|
| 18 | +if ( ! class_exists('LSX_Customize_Mobile_Header_Layout_Control')) : |
|
| 19 | 19 | |
| 20 | 20 | /** |
| 21 | 21 | * LSX_Customize_Mobile_Header_Layout_Control Class |
@@ -30,10 +30,10 @@ discard block |
||
| 30 | 30 | public $statuses; |
| 31 | 31 | public $layouts = array(); |
| 32 | 32 | |
| 33 | - public function __construct( $manager, $id, $args = array() ) { |
|
| 34 | - parent::__construct( $manager, $id, $args ); |
|
| 33 | + public function __construct($manager, $id, $args = array()) { |
|
| 34 | + parent::__construct($manager, $id, $args); |
|
| 35 | 35 | |
| 36 | - if ( ! empty( $args['choices'] ) ) { |
|
| 36 | + if ( ! empty($args['choices'])) { |
|
| 37 | 37 | $this->layouts = $args['choices']; |
| 38 | 38 | } |
| 39 | 39 | } |
@@ -42,39 +42,39 @@ discard block |
||
| 42 | 42 | * Enqueue scripts/styles for the color picker. |
| 43 | 43 | */ |
| 44 | 44 | public function enqueue() { |
| 45 | - wp_enqueue_script( 'lsx-mobile-header-layout-control', get_template_directory_uri() . '/assets/js/admin/customizer-mobile-header-layout.js', array( 'jquery' ), LSX_VERSION, true ); |
|
| 45 | + wp_enqueue_script('lsx-mobile-header-layout-control', get_template_directory_uri() . '/assets/js/admin/customizer-mobile-header-layout.js', array('jquery'), LSX_VERSION, true); |
|
| 46 | 46 | } |
| 47 | 47 | |
| 48 | 48 | /** |
| 49 | 49 | * Render output. |
| 50 | 50 | */ |
| 51 | 51 | public function render_content() { |
| 52 | - $post_id = 'customize-control-' . str_replace( '[', '-', str_replace( ']', '', $this->id ) ); |
|
| 52 | + $post_id = 'customize-control-' . str_replace('[', '-', str_replace(']', '', $this->id)); |
|
| 53 | 53 | $class = 'customize-control customize-control-' . $this->type; |
| 54 | 54 | $value = $this->value(); |
| 55 | 55 | ?> |
| 56 | 56 | <label> |
| 57 | 57 | <?php |
| 58 | - if ( ! empty( $this->label ) ) { |
|
| 58 | + if ( ! empty($this->label)) { |
|
| 59 | 59 | ?> |
| 60 | - <span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span> |
|
| 60 | + <span class="customize-control-title"><?php echo esc_html($this->label); ?></span> |
|
| 61 | 61 | <?php |
| 62 | 62 | } |
| 63 | - if ( ! empty( $this->description ) ) { |
|
| 63 | + if ( ! empty($this->description)) { |
|
| 64 | 64 | ?> |
| 65 | - <span class="description customize-control-description"><?php echo esc_html( $this->description ); ?></span> |
|
| 65 | + <span class="description customize-control-description"><?php echo esc_html($this->description); ?></span> |
|
| 66 | 66 | <?php } ?> |
| 67 | 67 | <div class="mobile-header-layouts-selector"> |
| 68 | 68 | <?php |
| 69 | - foreach ( $this->layouts as $layout ) { |
|
| 69 | + foreach ($this->layouts as $layout) { |
|
| 70 | 70 | $sel = 'border: 1px solid transparent;'; |
| 71 | - if ( $value === $layout ) { |
|
| 71 | + if ($value === $layout) { |
|
| 72 | 72 | $sel = 'border: 1px solid rgb(43, 166, 203);'; |
| 73 | 73 | } |
| 74 | - echo '<img class="mobile-header-layout-button" style="max-width:180px;padding:2px;' . esc_attr( $sel ) . '" src="' . esc_attr( get_template_directory_uri() ) . '/assets/images/admin/header-' . esc_attr( $layout ) . '.png" data-option="' . esc_attr( $layout ) . '">'; |
|
| 74 | + echo '<img class="mobile-header-layout-button" style="max-width:180px;padding:2px;' . esc_attr($sel) . '" src="' . esc_attr(get_template_directory_uri()) . '/assets/images/admin/header-' . esc_attr($layout) . '.png" data-option="' . esc_attr($layout) . '">'; |
|
| 75 | 75 | } |
| 76 | 76 | ?> |
| 77 | - <input <?php $this->link(); ?> class="selected-mobile-header-layout <?php echo esc_attr( $class ); ?>" id="<?php echo esc_attr( $post_id ); ?>" type="hidden" value="<?php echo esc_attr( $value ); ?>" <?php $this->input_attrs(); ?>> |
|
| 77 | + <input <?php $this->link(); ?> class="selected-mobile-header-layout <?php echo esc_attr($class); ?>" id="<?php echo esc_attr($post_id); ?>" type="hidden" value="<?php echo esc_attr($value); ?>" <?php $this->input_attrs(); ?>> |
|
| 78 | 78 | </div> |
| 79 | 79 | </label> |
| 80 | 80 | <?php |
@@ -6,11 +6,11 @@ discard block |
||
| 6 | 6 | * @subpackage customizer |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 9 | +if ( ! defined('ABSPATH')) { |
|
| 10 | 10 | exit; |
| 11 | 11 | } |
| 12 | 12 | |
| 13 | -if ( ! function_exists( 'lsx_customizer_core_controls' ) ) : |
|
| 13 | +if ( ! function_exists('lsx_customizer_core_controls')) : |
|
| 14 | 14 | |
| 15 | 15 | /** |
| 16 | 16 | * Returns an array of the core panel. |
@@ -20,10 +20,10 @@ discard block |
||
| 20 | 20 | * |
| 21 | 21 | * @return $lsx_controls array() |
| 22 | 22 | */ |
| 23 | - function lsx_customizer_core_controls( $lsx_controls ) { |
|
| 23 | + function lsx_customizer_core_controls($lsx_controls) { |
|
| 24 | 24 | $lsx_controls['sections']['lsx-core'] = array( |
| 25 | - 'title' => esc_html__( 'Core Settings', 'lsx' ), |
|
| 26 | - 'description' => esc_html__( 'Change the core settings.', 'lsx' ), |
|
| 25 | + 'title' => esc_html__('Core Settings', 'lsx'), |
|
| 26 | + 'description' => esc_html__('Change the core settings.', 'lsx'), |
|
| 27 | 27 | 'priority' => 21, |
| 28 | 28 | ); |
| 29 | 29 | |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | ); |
| 35 | 35 | |
| 36 | 36 | $lsx_controls['fields']['lsx_preloader_content_status'] = array( |
| 37 | - 'label' => esc_html__( 'Preloader Content', 'lsx' ), |
|
| 37 | + 'label' => esc_html__('Preloader Content', 'lsx'), |
|
| 38 | 38 | 'section' => 'lsx-core', |
| 39 | 39 | 'type' => 'checkbox', |
| 40 | 40 | ); |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | ); |
| 47 | 47 | |
| 48 | 48 | $lsx_controls['fields']['lsx_disable_fonts'] = array( |
| 49 | - 'label' => esc_html__( 'Disable Fonts', 'lsx' ), |
|
| 49 | + 'label' => esc_html__('Disable Fonts', 'lsx'), |
|
| 50 | 50 | 'section' => 'lsx-core', |
| 51 | 51 | 'type' => 'checkbox', |
| 52 | 52 | ); |
@@ -56,9 +56,9 @@ discard block |
||
| 56 | 56 | |
| 57 | 57 | endif; |
| 58 | 58 | |
| 59 | -add_filter( 'lsx_customizer_controls', 'lsx_customizer_core_controls' ); |
|
| 59 | +add_filter('lsx_customizer_controls', 'lsx_customizer_core_controls'); |
|
| 60 | 60 | |
| 61 | -if ( ! function_exists( 'lsx_customizer_layout_controls' ) ) : |
|
| 61 | +if ( ! function_exists('lsx_customizer_layout_controls')) : |
|
| 62 | 62 | |
| 63 | 63 | /** |
| 64 | 64 | * Returns an array of the layout panel. |
@@ -68,10 +68,10 @@ discard block |
||
| 68 | 68 | * |
| 69 | 69 | * @return $lsx_controls array() |
| 70 | 70 | */ |
| 71 | - function lsx_customizer_layout_controls( $lsx_controls ) { |
|
| 71 | + function lsx_customizer_layout_controls($lsx_controls) { |
|
| 72 | 72 | $lsx_controls['sections']['lsx-layout'] = array( |
| 73 | - 'title' => esc_html__( 'Layout', 'lsx' ), |
|
| 74 | - 'description' => esc_html__( 'Change the layout sitewide. If your homepage is set to use a page with a template, the following will not apply to it.', 'lsx' ), |
|
| 73 | + 'title' => esc_html__('Layout', 'lsx'), |
|
| 74 | + 'description' => esc_html__('Change the layout sitewide. If your homepage is set to use a page with a template, the following will not apply to it.', 'lsx'), |
|
| 75 | 75 | 'priority' => 22, |
| 76 | 76 | ); |
| 77 | 77 | |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | ); |
| 83 | 83 | |
| 84 | 84 | $lsx_controls['fields']['lsx_header_layout'] = array( |
| 85 | - 'label' => esc_html__( 'Header', 'lsx' ), |
|
| 85 | + 'label' => esc_html__('Header', 'lsx'), |
|
| 86 | 86 | 'section' => 'lsx-layout', |
| 87 | 87 | 'control' => 'LSX_Customize_Header_Layout_Control', |
| 88 | 88 | 'choices' => array( |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | ); |
| 100 | 100 | |
| 101 | 101 | $lsx_controls['fields']['lsx_header_mobile_layout'] = array( |
| 102 | - 'label' => esc_html__( 'Mobile Header', 'lsx' ), |
|
| 102 | + 'label' => esc_html__('Mobile Header', 'lsx'), |
|
| 103 | 103 | 'section' => 'lsx-layout', |
| 104 | 104 | 'control' => 'LSX_Customize_Mobile_Header_Layout_Control', |
| 105 | 105 | 'choices' => array( |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | ); |
| 116 | 116 | |
| 117 | 117 | $lsx_controls['fields']['lsx_layout'] = array( |
| 118 | - 'label' => esc_html__( 'Body', 'lsx' ), |
|
| 118 | + 'label' => esc_html__('Body', 'lsx'), |
|
| 119 | 119 | 'section' => 'lsx-layout', |
| 120 | 120 | 'control' => 'LSX_Customize_Layout_Control', |
| 121 | 121 | 'choices' => array( |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | ); |
| 133 | 133 | |
| 134 | 134 | $lsx_controls['fields']['lsx_header_fixed'] = array( |
| 135 | - 'label' => esc_html__( 'Fixed Header', 'lsx' ), |
|
| 135 | + 'label' => esc_html__('Fixed Header', 'lsx'), |
|
| 136 | 136 | 'section' => 'lsx-layout', |
| 137 | 137 | 'type' => 'checkbox', |
| 138 | 138 | ); |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | ); |
| 145 | 145 | |
| 146 | 146 | $lsx_controls['fields']['lsx_header_search'] = array( |
| 147 | - 'label' => esc_html__( 'Search Box in Header', 'lsx' ), |
|
| 147 | + 'label' => esc_html__('Search Box in Header', 'lsx'), |
|
| 148 | 148 | 'section' => 'lsx-layout', |
| 149 | 149 | 'type' => 'checkbox', |
| 150 | 150 | ); |
@@ -152,9 +152,9 @@ discard block |
||
| 152 | 152 | $lsx_controls['selective_refresh']['lsx_header_search'] = array( |
| 153 | 153 | 'selector' => '#lsx-header-search-css', |
| 154 | 154 | 'render_callback' => function() { |
| 155 | - $search_form = get_theme_mod( 'lsx_header_search' ); |
|
| 155 | + $search_form = get_theme_mod('lsx_header_search'); |
|
| 156 | 156 | |
| 157 | - if ( false !== $search_form ) { |
|
| 157 | + if (false !== $search_form) { |
|
| 158 | 158 | echo 'body #searchform { display: block; }'; |
| 159 | 159 | } else { |
| 160 | 160 | echo 'body #searchform { display: none; }'; |
@@ -167,9 +167,9 @@ discard block |
||
| 167 | 167 | |
| 168 | 168 | endif; |
| 169 | 169 | |
| 170 | -add_filter( 'lsx_customizer_controls', 'lsx_customizer_layout_controls' ); |
|
| 170 | +add_filter('lsx_customizer_controls', 'lsx_customizer_layout_controls'); |
|
| 171 | 171 | |
| 172 | -if ( ! function_exists( 'lsx_get_customizer_controls' ) ) : |
|
| 172 | +if ( ! function_exists('lsx_get_customizer_controls')) : |
|
| 173 | 173 | |
| 174 | 174 | /** |
| 175 | 175 | * Returns an array of $controls for the customizer class to generate. |
@@ -181,10 +181,10 @@ discard block |
||
| 181 | 181 | */ |
| 182 | 182 | function lsx_get_customizer_controls() { |
| 183 | 183 | $lsx_controls = array(); |
| 184 | - $lsx_controls = apply_filters( 'lsx_customizer_controls', $lsx_controls ); |
|
| 184 | + $lsx_controls = apply_filters('lsx_customizer_controls', $lsx_controls); |
|
| 185 | 185 | return $lsx_controls; |
| 186 | 186 | } |
| 187 | 187 | |
| 188 | 188 | endif; |
| 189 | 189 | |
| 190 | -$lsx_customizer = new LSX_Theme_Customizer( lsx_get_customizer_controls() ); |
|
| 190 | +$lsx_customizer = new LSX_Theme_Customizer(lsx_get_customizer_controls()); |
|