@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if ( ! defined( 'ABSPATH' ) ) { |
|
3 | +if ( ! defined('ABSPATH')) { |
|
4 | 4 | exit; |
5 | 5 | } |
6 | 6 | |
@@ -20,14 +20,14 @@ discard block |
||
20 | 20 | */ |
21 | 21 | public function __construct() { |
22 | 22 | $this->widget_cssclass = 'woocommerce widget_recent_reviews'; |
23 | - $this->widget_description = __( 'Display a list of your most recent reviews on your site.', 'woocommerce' ); |
|
23 | + $this->widget_description = __('Display a list of your most recent reviews on your site.', 'woocommerce'); |
|
24 | 24 | $this->widget_id = 'woocommerce_recent_reviews'; |
25 | - $this->widget_name = __( 'WooCommerce recent reviews', 'woocommerce' ); |
|
25 | + $this->widget_name = __('WooCommerce recent reviews', 'woocommerce'); |
|
26 | 26 | $this->settings = array( |
27 | 27 | 'title' => array( |
28 | 28 | 'type' => 'text', |
29 | - 'std' => __( 'Recent reviews', 'woocommerce' ), |
|
30 | - 'label' => __( 'Title', 'woocommerce' ), |
|
29 | + 'std' => __('Recent reviews', 'woocommerce'), |
|
30 | + 'label' => __('Title', 'woocommerce'), |
|
31 | 31 | ), |
32 | 32 | 'number' => array( |
33 | 33 | 'type' => 'number', |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | 'min' => 1, |
36 | 36 | 'max' => '', |
37 | 37 | 'std' => 10, |
38 | - 'label' => __( 'Number of reviews to show', 'woocommerce' ), |
|
38 | + 'label' => __('Number of reviews to show', 'woocommerce'), |
|
39 | 39 | ), |
40 | 40 | ); |
41 | 41 | |
@@ -50,44 +50,44 @@ discard block |
||
50 | 50 | * @param array $args |
51 | 51 | * @param array $instance |
52 | 52 | */ |
53 | - public function widget( $args, $instance ) { |
|
53 | + public function widget($args, $instance) { |
|
54 | 54 | global $comments, $comment; |
55 | 55 | |
56 | - if ( $this->get_cached_widget( $args ) ) { |
|
56 | + if ($this->get_cached_widget($args)) { |
|
57 | 57 | return; |
58 | 58 | } |
59 | 59 | |
60 | 60 | ob_start(); |
61 | 61 | |
62 | - $number = ! empty( $instance['number'] ) ? absint( $instance['number'] ) : $this->settings['number']['std']; |
|
62 | + $number = ! empty($instance['number']) ? absint($instance['number']) : $this->settings['number']['std']; |
|
63 | 63 | |
64 | - $comments = get_comments( array( |
|
64 | + $comments = get_comments(array( |
|
65 | 65 | 'number' => $number, |
66 | 66 | 'status' => 'approve', |
67 | 67 | 'post_status' => 'publish', |
68 | 68 | 'post_type' => 'product', |
69 | 69 | 'parent' => 0, |
70 | - ) ); |
|
70 | + )); |
|
71 | 71 | |
72 | - if ( $comments ) { |
|
73 | - $this->widget_start( $args, $instance ); |
|
72 | + if ($comments) { |
|
73 | + $this->widget_start($args, $instance); |
|
74 | 74 | |
75 | 75 | // @codingStandardsIgnoreLine |
76 | - echo apply_filters( 'woocommerce_before_widget_product_list', '<ul class="product_list_widget">' ); |
|
76 | + echo apply_filters('woocommerce_before_widget_product_list', '<ul class="product_list_widget">'); |
|
77 | 77 | |
78 | 78 | global $comment, $_product, $rating; |
79 | 79 | |
80 | - foreach ( (array) $comments as $comment ) { |
|
81 | - $_product = wc_get_product( $comment->comment_post_ID ); |
|
82 | - $rating = intval( get_comment_meta( $comment->comment_ID, 'rating', true ) ); |
|
80 | + foreach ((array) $comments as $comment) { |
|
81 | + $_product = wc_get_product($comment->comment_post_ID); |
|
82 | + $rating = intval(get_comment_meta($comment->comment_ID, 'rating', true)); |
|
83 | 83 | |
84 | - wc_get_template( 'content-widget-review.php' ); |
|
84 | + wc_get_template('content-widget-review.php'); |
|
85 | 85 | } |
86 | 86 | |
87 | 87 | // @codingStandardsIgnoreLine |
88 | - echo apply_filters( 'woocommerce_after_widget_product_list', '</ul>' ); |
|
88 | + echo apply_filters('woocommerce_after_widget_product_list', '</ul>'); |
|
89 | 89 | |
90 | - $this->widget_end( $args ); |
|
90 | + $this->widget_end($args); |
|
91 | 91 | } |
92 | 92 | |
93 | 93 | $content = ob_get_clean(); |
@@ -95,6 +95,6 @@ discard block |
||
95 | 95 | // @codingStandardsIgnoreLine |
96 | 96 | echo $content; |
97 | 97 | |
98 | - $this->cache_widget( $args, $content ); |
|
98 | + $this->cache_widget($args, $content); |
|
99 | 99 | } |
100 | 100 | } |
@@ -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 ( ! class_exists( 'LSX_Theme_Customizer' ) ) : |
|
13 | +if ( ! class_exists('LSX_Theme_Customizer')) : |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Customizer Configuration File |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | /** |
27 | 27 | * Initialize the plugin by setting localization and loading public scripts and styles. |
28 | 28 | */ |
29 | - public function __construct( $controls ) { |
|
29 | + public function __construct($controls) { |
|
30 | 30 | require get_template_directory() . '/includes/classes/class-lsx-customize-core-control.php'; |
31 | 31 | require get_template_directory() . '/includes/classes/class-lsx-customize-layout-control.php'; |
32 | 32 | require get_template_directory() . '/includes/classes/class-lsx-customize-font-control.php'; |
@@ -34,83 +34,83 @@ discard block |
||
34 | 34 | |
35 | 35 | $this->controls = $controls; |
36 | 36 | |
37 | - add_action( 'customize_preview_init', array( $this, 'customize_preview_js' ), 20 ); |
|
38 | - add_action( 'customize_register', array( $this, 'customizer' ), 11 ); |
|
37 | + add_action('customize_preview_init', array($this, 'customize_preview_js'), 20); |
|
38 | + add_action('customize_register', array($this, 'customizer'), 11); |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | /** |
42 | 42 | * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. |
43 | 43 | */ |
44 | 44 | public function customize_preview_js() { |
45 | - wp_enqueue_script( 'lsx_customizer', get_template_directory_uri() . '/assets/js/admin/customizer.js', array( 'customize-preview' ), LSX_VERSION, true ); |
|
45 | + wp_enqueue_script('lsx_customizer', get_template_directory_uri() . '/assets/js/admin/customizer.js', array('customize-preview'), LSX_VERSION, true); |
|
46 | 46 | |
47 | - wp_localize_script( 'lsx_customizer', 'lsx_customizer_params', array( |
|
47 | + wp_localize_script('lsx_customizer', 'lsx_customizer_params', array( |
|
48 | 48 | 'template_directory' => get_template_directory_uri(), |
49 | - ) ); |
|
49 | + )); |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | /** |
53 | 53 | * Create customiser controls. |
54 | 54 | */ |
55 | - public function customizer( $wp_customize ) { |
|
55 | + public function customizer($wp_customize) { |
|
56 | 56 | // Start panels |
57 | - if ( ! empty( $this->controls['panels'] ) ) { |
|
58 | - foreach ( $this->controls['panels'] as $panel_slug => $args ) { |
|
59 | - $this->add_panel( $panel_slug, $args, $wp_customize ); |
|
57 | + if ( ! empty($this->controls['panels'])) { |
|
58 | + foreach ($this->controls['panels'] as $panel_slug => $args) { |
|
59 | + $this->add_panel($panel_slug, $args, $wp_customize); |
|
60 | 60 | } |
61 | 61 | } |
62 | 62 | |
63 | 63 | // Start sections |
64 | - if ( ! empty( $this->controls['sections'] ) ) { |
|
65 | - foreach ( $this->controls['sections'] as $section_slug => $args ) { |
|
66 | - $this->add_section( $section_slug, $args, $wp_customize ); |
|
64 | + if ( ! empty($this->controls['sections'])) { |
|
65 | + foreach ($this->controls['sections'] as $section_slug => $args) { |
|
66 | + $this->add_section($section_slug, $args, $wp_customize); |
|
67 | 67 | } |
68 | 68 | } |
69 | 69 | |
70 | 70 | // Start settings |
71 | - if ( ! empty( $this->controls['settings'] ) ) { |
|
72 | - foreach ( $this->controls['settings'] as $settings_slug => $args ) { |
|
73 | - $this->add_setting( $settings_slug, $args, $wp_customize ); |
|
71 | + if ( ! empty($this->controls['settings'])) { |
|
72 | + foreach ($this->controls['settings'] as $settings_slug => $args) { |
|
73 | + $this->add_setting($settings_slug, $args, $wp_customize); |
|
74 | 74 | } |
75 | 75 | } |
76 | 76 | |
77 | 77 | // Start fields |
78 | - if ( ! empty( $this->controls['fields'] ) ) { |
|
79 | - foreach ( $this->controls['fields'] as $field_slug => $args ) { |
|
80 | - $this->add_control( $field_slug, $args, $wp_customize ); |
|
78 | + if ( ! empty($this->controls['fields'])) { |
|
79 | + foreach ($this->controls['fields'] as $field_slug => $args) { |
|
80 | + $this->add_control($field_slug, $args, $wp_customize); |
|
81 | 81 | } |
82 | 82 | } |
83 | 83 | |
84 | 84 | // Start selective refresh |
85 | - if ( ! empty( $this->controls['selective_refresh'] ) ) { |
|
86 | - foreach ( $this->controls['selective_refresh'] as $field_slug => $args ) { |
|
87 | - $this->add_selective_refresh( $field_slug, $args, $wp_customize ); |
|
85 | + if ( ! empty($this->controls['selective_refresh'])) { |
|
86 | + foreach ($this->controls['selective_refresh'] as $field_slug => $args) { |
|
87 | + $this->add_selective_refresh($field_slug, $args, $wp_customize); |
|
88 | 88 | } |
89 | 89 | } |
90 | 90 | |
91 | - $wp_customize->get_setting( 'blogname' )->transport = 'postMessage'; |
|
92 | - $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; |
|
93 | - $wp_customize->get_setting( 'background_color' )->transport = 'postMessage'; |
|
91 | + $wp_customize->get_setting('blogname')->transport = 'postMessage'; |
|
92 | + $wp_customize->get_setting('blogdescription')->transport = 'postMessage'; |
|
93 | + $wp_customize->get_setting('background_color')->transport = 'postMessage'; |
|
94 | 94 | |
95 | - $wp_customize->selective_refresh->add_partial( 'blogname', array( |
|
95 | + $wp_customize->selective_refresh->add_partial('blogname', array( |
|
96 | 96 | 'selector' => 'h1.site-title a', |
97 | 97 | 'render_callback' => function() { |
98 | - bloginfo( 'name' ); |
|
98 | + bloginfo('name'); |
|
99 | 99 | }, |
100 | - ) ); |
|
100 | + )); |
|
101 | 101 | |
102 | - $wp_customize->selective_refresh->add_partial( 'blogdescription', array( |
|
102 | + $wp_customize->selective_refresh->add_partial('blogdescription', array( |
|
103 | 103 | 'selector' => '.site-description', |
104 | 104 | 'render_callback' => function() { |
105 | - bloginfo( 'description' ); |
|
105 | + bloginfo('description'); |
|
106 | 106 | }, |
107 | - ) ); |
|
107 | + )); |
|
108 | 108 | } |
109 | 109 | |
110 | 110 | /** |
111 | 111 | * Create a panel. |
112 | 112 | */ |
113 | - private function add_panel( $slug, $args, $wp_customize ) { |
|
113 | + private function add_panel($slug, $args, $wp_customize) { |
|
114 | 114 | $default_args = array( |
115 | 115 | 'title' => null, |
116 | 116 | 'description' => null, |
@@ -118,57 +118,57 @@ discard block |
||
118 | 118 | |
119 | 119 | $wp_customize->add_panel( |
120 | 120 | $slug, |
121 | - array_merge( $default_args, $args ) |
|
121 | + array_merge($default_args, $args) |
|
122 | 122 | ); |
123 | 123 | } |
124 | 124 | |
125 | 125 | /** |
126 | 126 | * Create a section. |
127 | 127 | */ |
128 | - private function add_section( $slug, $args, $wp_customize ) { |
|
128 | + private function add_section($slug, $args, $wp_customize) { |
|
129 | 129 | $default_args = array( |
130 | 130 | 'capability' => 'edit_theme_options', |
131 | 131 | 'description' => null, |
132 | 132 | ); |
133 | 133 | |
134 | - $wp_customize->add_section( $slug, array_merge( $default_args, $args ) ); |
|
134 | + $wp_customize->add_section($slug, array_merge($default_args, $args)); |
|
135 | 135 | } |
136 | 136 | |
137 | 137 | /** |
138 | 138 | * Create a setting. |
139 | 139 | */ |
140 | - private function add_setting( $slug, $args, $wp_customize ) { |
|
141 | - $wp_customize->add_setting( $slug, |
|
142 | - array_merge( array( |
|
140 | + private function add_setting($slug, $args, $wp_customize) { |
|
141 | + $wp_customize->add_setting($slug, |
|
142 | + array_merge(array( |
|
143 | 143 | 'default' => null, |
144 | 144 | 'type' => 'theme_mod', |
145 | 145 | 'capability' => 'edit_theme_options', |
146 | 146 | 'transport' => 'postMessage', |
147 | 147 | 'sanitize_callback' => 'lsx_sanitize_choices', |
148 | - ), $args ) |
|
148 | + ), $args) |
|
149 | 149 | ); |
150 | 150 | } |
151 | 151 | |
152 | 152 | /** |
153 | 153 | * Create a control. |
154 | 154 | */ |
155 | - private function add_control( $slug, $args, $wp_customize ) { |
|
155 | + private function add_control($slug, $args, $wp_customize) { |
|
156 | 156 | $default_args = array(); |
157 | 157 | |
158 | - if ( isset( $args['control'] ) && class_exists( $args['control'] ) ) { |
|
158 | + if (isset($args['control']) && class_exists($args['control'])) { |
|
159 | 159 | $control_class = $args['control']; |
160 | - unset( $args['control'] ); |
|
160 | + unset($args['control']); |
|
161 | 161 | |
162 | - $control = new $control_class( $wp_customize, $slug, array_merge( $default_args, $args ) ); |
|
163 | - $wp_customize->add_control( $control ); |
|
162 | + $control = new $control_class($wp_customize, $slug, array_merge($default_args, $args)); |
|
163 | + $wp_customize->add_control($control); |
|
164 | 164 | } else { |
165 | - if ( isset( $args['control'] ) ) { |
|
166 | - unset( $args['control'] ); |
|
165 | + if (isset($args['control'])) { |
|
166 | + unset($args['control']); |
|
167 | 167 | } |
168 | 168 | |
169 | 169 | $wp_customize->add_control( |
170 | 170 | $slug, |
171 | - array_merge( $default_args, $args ) |
|
171 | + array_merge($default_args, $args) |
|
172 | 172 | ); |
173 | 173 | } |
174 | 174 | } |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | /** |
177 | 177 | * Create a selective refresh. |
178 | 178 | */ |
179 | - private function add_selective_refresh( $slug, $args, $wp_customize ) { |
|
179 | + private function add_selective_refresh($slug, $args, $wp_customize) { |
|
180 | 180 | $default_args = array( |
181 | 181 | 'selector' => null, |
182 | 182 | 'render_callback' => null, |
@@ -184,23 +184,23 @@ discard block |
||
184 | 184 | |
185 | 185 | $wp_customize->selective_refresh->add_partial( |
186 | 186 | $slug, |
187 | - array_merge( $default_args, $args ) |
|
187 | + array_merge($default_args, $args) |
|
188 | 188 | ); |
189 | 189 | } |
190 | 190 | |
191 | 191 | /** |
192 | 192 | * Returns a registered field. |
193 | 193 | */ |
194 | - public function get_control( $id ) { |
|
195 | - $field = $this->controls['fields'][ $id ]; |
|
194 | + public function get_control($id) { |
|
195 | + $field = $this->controls['fields'][$id]; |
|
196 | 196 | return $field; |
197 | 197 | } |
198 | 198 | |
199 | 199 | /** |
200 | 200 | * Returns a registered setting. |
201 | 201 | */ |
202 | - public function get_setting( $id ) { |
|
203 | - $setting = $this->controls['settings'][ $id ]; |
|
202 | + public function get_setting($id) { |
|
203 | + $setting = $this->controls['settings'][$id]; |
|
204 | 204 | return $setting; |
205 | 205 | } |
206 | 206 |
@@ -7,15 +7,15 @@ discard block |
||
7 | 7 | * @category core |
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_Core_Control' ) ) : |
|
18 | +if ( ! class_exists('LSX_Customize_Core_Control')) : |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * LSX_Customize_Core_Control Class |
@@ -34,13 +34,13 @@ discard block |
||
34 | 34 | public function render_content() { |
35 | 35 | ?> |
36 | 36 | <label> |
37 | - <?php if ( ! empty( $this->label ) ) { ?> |
|
38 | - <span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span> |
|
37 | + <?php if ( ! empty($this->label)) { ?> |
|
38 | + <span class="customize-control-title"><?php echo esc_html($this->label); ?></span> |
|
39 | 39 | <?php } |
40 | - if ( ! empty( $this->description ) ) { ?> |
|
41 | - <span class="description customize-control-description"><?php echo esc_html( $this->description ); ?></span> |
|
40 | + if ( ! empty($this->description)) { ?> |
|
41 | + <span class="description customize-control-description"><?php echo esc_html($this->description); ?></span> |
|
42 | 42 | <?php } ?> |
43 | - <input <?php $this->link(); ?> type="checkbox" value="<?php echo esc_attr( $this->value() ); ?>" <?php $this->input_attrs(); ?>> |
|
43 | + <input <?php $this->link(); ?> type="checkbox" value="<?php echo esc_attr($this->value()); ?>" <?php $this->input_attrs(); ?>> |
|
44 | 44 | </label> |
45 | 45 | <?php |
46 | 46 | } |
@@ -7,15 +7,15 @@ discard block |
||
7 | 7 | * @category font |
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_Font_Control' ) ) : |
|
18 | +if ( ! class_exists('LSX_Customize_Font_Control')) : |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * LSX_Customize_Font_Control Class |
@@ -31,37 +31,37 @@ discard block |
||
31 | 31 | /** |
32 | 32 | * Constructor. |
33 | 33 | */ |
34 | - public function __construct( $manager, $id, $args ) { |
|
35 | - parent::__construct( $manager, $id, $args ); |
|
34 | + public function __construct($manager, $id, $args) { |
|
35 | + parent::__construct($manager, $id, $args); |
|
36 | 36 | |
37 | - add_action( 'after_switch_theme', array( $this, 'set_theme_mod' ) ); |
|
38 | - add_action( 'customize_save_after', array( $this, 'set_theme_mod' ) ); |
|
37 | + add_action('after_switch_theme', array($this, 'set_theme_mod')); |
|
38 | + add_action('customize_save_after', array($this, 'set_theme_mod')); |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | /** |
42 | 42 | * Enqueue the styles and scripts. |
43 | 43 | */ |
44 | 44 | public function enqueue() { |
45 | - wp_enqueue_style( 'lsx-font-picker-custom-control', get_template_directory_uri() . '/assets/css/admin/customizer-font.css', array(), LSX_VERSION ); |
|
46 | - wp_style_add_data( 'lsx-font-picker-custom-control', 'rtl', 'replace' ); |
|
45 | + wp_enqueue_style('lsx-font-picker-custom-control', get_template_directory_uri() . '/assets/css/admin/customizer-font.css', array(), LSX_VERSION); |
|
46 | + wp_style_add_data('lsx-font-picker-custom-control', 'rtl', 'replace'); |
|
47 | 47 | |
48 | - wp_enqueue_script( 'lsx-font-picker-custom-control', get_template_directory_uri() . '/assets/js/admin/customizer-font.js', array(), LSX_VERSION ); |
|
48 | + wp_enqueue_script('lsx-font-picker-custom-control', get_template_directory_uri() . '/assets/js/admin/customizer-font.js', array(), LSX_VERSION); |
|
49 | 49 | } |
50 | 50 | |
51 | 51 | /** |
52 | 52 | * Render the content on the theme customizer page. |
53 | 53 | */ |
54 | 54 | public function render_content() { |
55 | - if ( empty( $this->choices ) ) { |
|
55 | + if (empty($this->choices)) { |
|
56 | 56 | return; |
57 | 57 | } |
58 | 58 | |
59 | 59 | $fonts = array(); |
60 | 60 | |
61 | - foreach ( $this->choices as $slug => $font ) { |
|
61 | + foreach ($this->choices as $slug => $font) { |
|
62 | 62 | $fonts[] = $font['header']; |
63 | 63 | $fonts[] = $font['body']; |
64 | - $this->choices[ $slug ] = $font; |
|
64 | + $this->choices[$slug] = $font; |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | $saved_value = $this->value(); |
@@ -69,25 +69,25 @@ discard block |
||
69 | 69 | <div class="fontPickerCustomControl"> |
70 | 70 | <select <?php $this->link(); ?>> |
71 | 71 | <?php |
72 | - foreach ( $this->choices as $value => $conf ) { |
|
73 | - echo '<option value="' . esc_attr( $value ) . '">' . esc_html( $value ) . '</option>'; |
|
72 | + foreach ($this->choices as $value => $conf) { |
|
73 | + echo '<option value="' . esc_attr($value) . '">' . esc_html($value) . '</option>'; |
|
74 | 74 | } |
75 | 75 | ?> |
76 | 76 | </select> |
77 | 77 | <div class="fancyDisplay"> |
78 | 78 | <ul> |
79 | 79 | <?php |
80 | - foreach ( $this->choices as $key => $font ) { |
|
80 | + foreach ($this->choices as $key => $font) { |
|
81 | 81 | $class = null; |
82 | 82 | |
83 | - if ( $key === $saved_value ) { |
|
83 | + if ($key === $saved_value) { |
|
84 | 84 | $class = ' selected'; |
85 | 85 | } |
86 | 86 | |
87 | 87 | ?> |
88 | - <li class="font-choice <?php echo esc_attr( $class ); ?>"> |
|
89 | - <div class="<?php echo esc_attr( $font['header']['cssClass'] ); ?>"><?php echo esc_html( $font['header']['title'] ); ?></div> |
|
90 | - <small class="<?php echo esc_attr( $font['body']['cssClass'] ); ?>"><?php echo esc_html( $font['body']['title'] ); ?></small> |
|
88 | + <li class="font-choice <?php echo esc_attr($class); ?>"> |
|
89 | + <div class="<?php echo esc_attr($font['header']['cssClass']); ?>"><?php echo esc_html($font['header']['title']); ?></div> |
|
90 | + <small class="<?php echo esc_attr($font['body']['cssClass']); ?>"><?php echo esc_html($font['body']['title']); ?></small> |
|
91 | 91 | </li> |
92 | 92 | <?php |
93 | 93 | } |
@@ -109,12 +109,12 @@ discard block |
||
109 | 109 | public function set_theme_mod() { |
110 | 110 | $saved_value = $this->value(); |
111 | 111 | |
112 | - foreach ( $this->choices as $key => $font ) { |
|
113 | - if ( $key === $saved_value ) { |
|
114 | - $font_styles = $this->get_css( $font['header']['cssDeclaration'], $font['body']['cssDeclaration'] ); |
|
112 | + foreach ($this->choices as $key => $font) { |
|
113 | + if ($key === $saved_value) { |
|
114 | + $font_styles = $this->get_css($font['header']['cssDeclaration'], $font['body']['cssDeclaration']); |
|
115 | 115 | |
116 | - if ( ! empty( $font_styles ) ) { |
|
117 | - set_transient( 'lsx_font_styles', $font_styles, ( 24 * 60 * 60 ) ); |
|
116 | + if ( ! empty($font_styles)) { |
|
117 | + set_transient('lsx_font_styles', $font_styles, (24 * 60 * 60)); |
|
118 | 118 | } |
119 | 119 | } |
120 | 120 | } |
@@ -123,15 +123,15 @@ discard block |
||
123 | 123 | /** |
124 | 124 | * Returns CSS. |
125 | 125 | */ |
126 | - public function get_css( $font_header, $font_body ) { |
|
126 | + public function get_css($font_header, $font_body) { |
|
127 | 127 | $css_fonts_file = get_template_directory() . '/assets/css/lsx-fonts.css'; |
128 | - $css_fonts = lsx_file_get_contents( $css_fonts_file ); |
|
129 | - $css_fonts = apply_filters( 'lsx_fonts_css', $css_fonts ); |
|
128 | + $css_fonts = lsx_file_get_contents($css_fonts_file); |
|
129 | + $css_fonts = apply_filters('lsx_fonts_css', $css_fonts); |
|
130 | 130 | |
131 | - if ( ! empty( $css_fonts ) ) { |
|
132 | - $css_fonts = str_replace( '[font-family-headings]', $font_header, $css_fonts ); |
|
133 | - $css_fonts = str_replace( '[font-family-body]', $font_body, $css_fonts ); |
|
134 | - $css_fonts = preg_replace( '/(\/\*# ).+( \*\/)/', '', $css_fonts ); |
|
131 | + if ( ! empty($css_fonts)) { |
|
132 | + $css_fonts = str_replace('[font-family-headings]', $font_header, $css_fonts); |
|
133 | + $css_fonts = str_replace('[font-family-body]', $font_body, $css_fonts); |
|
134 | + $css_fonts = preg_replace('/(\/\*# ).+( \*\/)/', '', $css_fonts); |
|
135 | 135 | return $css_fonts; |
136 | 136 | } |
137 | 137 |
@@ -7,15 +7,15 @@ discard block |
||
7 | 7 | * @category 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_Layout_Control' ) ) : |
|
18 | +if ( ! class_exists('LSX_Customize_Layout_Control')) : |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * LSX_Customize_Layout_Control Class. |
@@ -30,9 +30,9 @@ 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 ); |
|
35 | - if ( ! empty( $args['choices'] ) ) { |
|
33 | + public function __construct($manager, $id, $args = array()) { |
|
34 | + parent::__construct($manager, $id, $args); |
|
35 | + if ( ! empty($args['choices'])) { |
|
36 | 36 | $this->layouts = $args['choices']; |
37 | 37 | } |
38 | 38 | } |
@@ -41,35 +41,35 @@ discard block |
||
41 | 41 | * Enqueue scripts/styles for the color picker. |
42 | 42 | */ |
43 | 43 | public function enqueue() { |
44 | - wp_enqueue_script( 'lsx-layout-control', get_template_directory_uri() . '/assets/js/admin/customizer-layout.js', array( 'jquery' ), LSX_VERSION, true ); |
|
44 | + wp_enqueue_script('lsx-layout-control', get_template_directory_uri() . '/assets/js/admin/customizer-layout.js', array('jquery'), LSX_VERSION, true); |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | /** |
48 | 48 | * Render output. |
49 | 49 | */ |
50 | 50 | public function render_content() { |
51 | - $post_id = 'customize-control-' . str_replace( '[', '-', str_replace( ']', '', $this->id ) ); |
|
51 | + $post_id = 'customize-control-' . str_replace('[', '-', str_replace(']', '', $this->id)); |
|
52 | 52 | $class = 'customize-control customize-control-' . $this->type; |
53 | 53 | $value = $this->value(); |
54 | 54 | ?> |
55 | 55 | <label> |
56 | - <?php if ( ! empty( $this->label ) ) { ?> |
|
57 | - <span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span> |
|
56 | + <?php if ( ! empty($this->label)) { ?> |
|
57 | + <span class="customize-control-title"><?php echo esc_html($this->label); ?></span> |
|
58 | 58 | <?php } |
59 | - if ( ! empty( $this->description ) ) { ?> |
|
60 | - <span class="description customize-control-description"><?php echo esc_html( $this->description ); ?></span> |
|
59 | + if ( ! empty($this->description)) { ?> |
|
60 | + <span class="description customize-control-description"><?php echo esc_html($this->description); ?></span> |
|
61 | 61 | <?php } ?> |
62 | 62 | <div class="layouts-selector"> |
63 | 63 | <?php |
64 | - foreach ( $this->layouts as $layout ) { |
|
64 | + foreach ($this->layouts as $layout) { |
|
65 | 65 | $sel = 'border: 1px solid transparent;'; |
66 | - if ( $value === $layout ) { |
|
66 | + if ($value === $layout) { |
|
67 | 67 | $sel = 'border: 1px solid rgb(43, 166, 203);'; |
68 | 68 | } |
69 | - echo '<img class="layout-button" style="padding:2px;' . esc_attr( $sel ) . '" src="' . esc_attr( get_template_directory_uri() ) . '/assets/images/admin/' . esc_attr( $layout ) . '.png" data-option="' . esc_attr( $layout ) . '">'; |
|
69 | + echo '<img class="layout-button" style="padding:2px;' . esc_attr($sel) . '" src="' . esc_attr(get_template_directory_uri()) . '/assets/images/admin/' . esc_attr($layout) . '.png" data-option="' . esc_attr($layout) . '">'; |
|
70 | 70 | } |
71 | 71 | ?> |
72 | - <input <?php $this->link(); ?> class="selected-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(); ?>> |
|
72 | + <input <?php $this->link(); ?> class="selected-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(); ?>> |
|
73 | 73 | </div> |
74 | 74 | </label> |
75 | 75 | <?php |
@@ -7,15 +7,15 @@ discard block |
||
7 | 7 | * @category bootstrap-walker |
8 | 8 | */ |
9 | 9 | |
10 | -if ( ! defined( 'ABSPATH' ) ) { |
|
10 | +if ( ! defined('ABSPATH')) { |
|
11 | 11 | exit; |
12 | 12 | } |
13 | 13 | |
14 | -if ( ! class_exists( 'Walker_Nav_Menu' ) ) { |
|
14 | +if ( ! class_exists('Walker_Nav_Menu')) { |
|
15 | 15 | return; |
16 | 16 | } |
17 | 17 | |
18 | -if ( ! class_exists( 'LSX_Nav_Walker' ) ) : |
|
18 | +if ( ! class_exists('LSX_Nav_Walker')) : |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * Cleaner walker for wp_nav_menu() |
@@ -34,46 +34,46 @@ discard block |
||
34 | 34 | */ |
35 | 35 | class LSX_Nav_Walker extends Walker_Nav_Menu { |
36 | 36 | |
37 | - function check_current( $classes ) { |
|
38 | - return preg_match( '/(current[-_])|active|dropdown/', $classes ); |
|
37 | + function check_current($classes) { |
|
38 | + return preg_match('/(current[-_])|active|dropdown/', $classes); |
|
39 | 39 | } |
40 | 40 | |
41 | - function start_lvl( &$output, $depth = 0, $args = array() ) { |
|
41 | + function start_lvl(&$output, $depth = 0, $args = array()) { |
|
42 | 42 | $output .= "\n<ul class=\"dropdown-menu\">\n"; |
43 | 43 | } |
44 | 44 | |
45 | - function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) { |
|
45 | + function start_el(&$output, $item, $depth = 0, $args = array(), $id = 0) { |
|
46 | 46 | $item_html = ''; |
47 | 47 | |
48 | - if ( isset( $item->title ) ) { |
|
49 | - parent::start_el( $item_html, $item, $depth, $args ); |
|
48 | + if (isset($item->title)) { |
|
49 | + parent::start_el($item_html, $item, $depth, $args); |
|
50 | 50 | |
51 | - if ( $item->is_dropdown && ( 0 === $depth ) ) { |
|
52 | - $item_html = str_replace( '<a', '<a class="dropdown-toggle" data-target="#"', $item_html ); |
|
53 | - $item_html = str_replace( '</a>', ' <b class="caret"></b></a>', $item_html ); |
|
54 | - } elseif ( stristr( $item_html, 'li class="divider"' ) ) { |
|
55 | - $item_html = preg_replace( '/<a[^>]*>.*?<\/a>/iU', '', $item_html ); |
|
56 | - } elseif ( stristr( $item_html, 'li class="dropdown-header"' ) ) { |
|
57 | - $item_html = preg_replace( '/<a[^>]*>(.*)<\/a>/iU', '$1', $item_html ); |
|
51 | + if ($item->is_dropdown && (0 === $depth)) { |
|
52 | + $item_html = str_replace('<a', '<a class="dropdown-toggle" data-target="#"', $item_html); |
|
53 | + $item_html = str_replace('</a>', ' <b class="caret"></b></a>', $item_html); |
|
54 | + } elseif (stristr($item_html, 'li class="divider"')) { |
|
55 | + $item_html = preg_replace('/<a[^>]*>.*?<\/a>/iU', '', $item_html); |
|
56 | + } elseif (stristr($item_html, 'li class="dropdown-header"')) { |
|
57 | + $item_html = preg_replace('/<a[^>]*>(.*)<\/a>/iU', '$1', $item_html); |
|
58 | 58 | } |
59 | 59 | |
60 | - $item_html = apply_filters( 'lsx_wp_nav_menu_item', $item_html ); |
|
60 | + $item_html = apply_filters('lsx_wp_nav_menu_item', $item_html); |
|
61 | 61 | $output .= $item_html; |
62 | 62 | } |
63 | 63 | } |
64 | 64 | |
65 | - function display_element( $element, &$children_elements, $max_depth, $depth = 0, $args, &$output ) { |
|
66 | - $element->is_dropdown = ( ( ! empty( $children_elements[ $element->ID ] ) && ( ( $depth + 1 ) < $max_depth || ( 0 === $max_depth ) ) ) ); |
|
65 | + function display_element($element, &$children_elements, $max_depth, $depth = 0, $args, &$output) { |
|
66 | + $element->is_dropdown = (( ! empty($children_elements[$element->ID]) && (($depth + 1) < $max_depth || (0 === $max_depth)))); |
|
67 | 67 | |
68 | - if ( $element->is_dropdown ) { |
|
69 | - if ( $depth > 0 ) { |
|
68 | + if ($element->is_dropdown) { |
|
69 | + if ($depth > 0) { |
|
70 | 70 | $element->classes[] = 'dropdown-submenu'; |
71 | 71 | } else { |
72 | 72 | $element->classes[] = 'dropdown'; |
73 | 73 | } |
74 | 74 | } |
75 | 75 | |
76 | - parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output ); |
|
76 | + parent::display_element($element, $children_elements, $max_depth, $depth, $args, $output); |
|
77 | 77 | } |
78 | 78 | |
79 | 79 | } |
@@ -7,15 +7,15 @@ discard block |
||
7 | 7 | * @category 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_Header_Layout_Control' ) ) : |
|
18 | +if ( ! class_exists('LSX_Customize_Header_Layout_Control')) : |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * LSX_Customize_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,35 +42,35 @@ discard block |
||
42 | 42 | * Enqueue scripts/styles for the color picker. |
43 | 43 | */ |
44 | 44 | public function enqueue() { |
45 | - wp_enqueue_script( 'lsx-header-layout-control', get_template_directory_uri() . '/assets/js/admin/customizer-header-layout.js', array( 'jquery' ), LSX_VERSION, true ); |
|
45 | + wp_enqueue_script('lsx-header-layout-control', get_template_directory_uri() . '/assets/js/admin/customizer-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 | - <?php if ( ! empty( $this->label ) ) { ?> |
|
58 | - <span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span> |
|
57 | + <?php if ( ! empty($this->label)) { ?> |
|
58 | + <span class="customize-control-title"><?php echo esc_html($this->label); ?></span> |
|
59 | 59 | <?php } |
60 | - if ( ! empty( $this->description ) ) { ?> |
|
61 | - <span class="description customize-control-description"><?php echo esc_html( $this->description ); ?></span> |
|
60 | + if ( ! empty($this->description)) { ?> |
|
61 | + <span class="description customize-control-description"><?php echo esc_html($this->description); ?></span> |
|
62 | 62 | <?php } ?> |
63 | 63 | <div class="header-layouts-selector"> |
64 | 64 | <?php |
65 | - foreach ( $this->layouts as $layout ) { |
|
65 | + foreach ($this->layouts as $layout) { |
|
66 | 66 | $sel = 'border: 1px solid transparent;'; |
67 | - if ( $value === $layout ) { |
|
67 | + if ($value === $layout) { |
|
68 | 68 | $sel = 'border: 1px solid rgb(43, 166, 203);'; |
69 | 69 | } |
70 | - echo '<img class="header-layout-button" style="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 ) . '">'; |
|
70 | + echo '<img class="header-layout-button" style="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) . '">'; |
|
71 | 71 | } |
72 | 72 | ?> |
73 | - <input <?php $this->link(); ?> class="selected-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(); ?>> |
|
73 | + <input <?php $this->link(); ?> class="selected-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(); ?>> |
|
74 | 74 | </div> |
75 | 75 | </label> |
76 | 76 | <?php |
@@ -11,11 +11,11 @@ |
||
11 | 11 | <main id="main" class="site-main" role="main"> |
12 | 12 | <section class="error-404 not-found"> |
13 | 13 | <header class="page-header"> |
14 | - <h1 class="page-title"><?php esc_html_e( 'Whoops!', 'lsx' ); ?></h1> |
|
14 | + <h1 class="page-title"><?php esc_html_e('Whoops!', 'lsx'); ?></h1> |
|
15 | 15 | </header><!-- .page-header --> |
16 | 16 | |
17 | 17 | <div class="page-content"> |
18 | - <p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try a search?', 'lsx' ); ?></p> |
|
18 | + <p><?php esc_html_e('It looks like nothing was found at this location. Maybe try a search?', 'lsx'); ?></p> |
|
19 | 19 | <?php get_search_form(); ?> |
20 | 20 | </div><!-- .page-content --> |
21 | 21 | </section><!-- .error-404 --> |
@@ -20,11 +20,11 @@ discard block |
||
20 | 20 | |
21 | 21 | <?php lsx_content_top(); ?> |
22 | 22 | |
23 | - <?php if ( have_posts() ) : ?> |
|
23 | + <?php if (have_posts()) : ?> |
|
24 | 24 | |
25 | - <?php while ( have_posts() ) : the_post(); ?> |
|
25 | + <?php while (have_posts()) : the_post(); ?> |
|
26 | 26 | |
27 | - <?php get_template_part( 'partials/content', 'page' ); ?> |
|
27 | + <?php get_template_part('partials/content', 'page'); ?> |
|
28 | 28 | |
29 | 29 | <?php endwhile; ?> |
30 | 30 | |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | <?php lsx_content_bottom(); ?> |
34 | 34 | |
35 | 35 | <?php |
36 | - if ( comments_open() ) { |
|
36 | + if (comments_open()) { |
|
37 | 37 | comments_template(); |
38 | 38 | } |
39 | 39 | ?> |