@@ -23,36 +23,36 @@ discard block |
||
23 | 23 | |
24 | 24 | $this->options = team_get_options(); |
25 | 25 | |
26 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 5 ); |
|
27 | - add_filter( 'wp_kses_allowed_html', array( $this, 'wp_kses_allowed_html' ), 10, 2 ); |
|
28 | - add_filter( 'template_include', array( $this, 'single_template_include' ), 99 ); |
|
29 | - add_filter( 'template_include', array( $this, 'archive_template_include' ), 99 ); |
|
26 | + add_action('wp_enqueue_scripts', array($this, 'enqueue_scripts'), 5); |
|
27 | + add_filter('wp_kses_allowed_html', array($this, 'wp_kses_allowed_html'), 10, 2); |
|
28 | + add_filter('template_include', array($this, 'single_template_include'), 99); |
|
29 | + add_filter('template_include', array($this, 'archive_template_include'), 99); |
|
30 | 30 | |
31 | - if ( ! empty( $this->options['display']['team_disable_single'] ) ) { |
|
32 | - add_action( 'template_redirect', array( $this, 'disable_single' ) ); |
|
31 | + if (!empty($this->options['display']['team_disable_single'])) { |
|
32 | + add_action('template_redirect', array($this, 'disable_single')); |
|
33 | 33 | } |
34 | 34 | |
35 | - if ( ! empty( $this->options['display']['group_by_role'] ) ) { |
|
36 | - add_action( 'pre_get_posts', array( $this, 'pre_get_posts_order_by_role' ) ); |
|
37 | - add_action( 'lsx_entry_before', array( $this, 'entry_before' ) ); |
|
35 | + if (!empty($this->options['display']['group_by_role'])) { |
|
36 | + add_action('pre_get_posts', array($this, 'pre_get_posts_order_by_role')); |
|
37 | + add_action('lsx_entry_before', array($this, 'entry_before')); |
|
38 | 38 | } |
39 | 39 | |
40 | - add_action( 'pre_get_posts', array( $this, 'disable_pagination_on_archive' ) ); |
|
40 | + add_action('pre_get_posts', array($this, 'disable_pagination_on_archive')); |
|
41 | 41 | |
42 | - if ( is_admin() ) { |
|
43 | - add_filter( 'lsx_customizer_colour_selectors_body', array( $this, 'customizer_body_colours_handler' ), 15, 2 ); |
|
42 | + if (is_admin()) { |
|
43 | + add_filter('lsx_customizer_colour_selectors_body', array($this, 'customizer_body_colours_handler'), 15, 2); |
|
44 | 44 | } |
45 | 45 | |
46 | - add_filter( 'lsx_fonts_css', array( $this, 'customizer_fonts_handler' ), 15 ); |
|
47 | - add_filter( 'lsx_banner_title', array( $this, 'lsx_banner_archive_title' ), 15 ); |
|
48 | - add_filter( 'lsx_banner_title', array( $this, 'lsx_banner_single_title' ), 15 ); |
|
49 | - add_filter( 'get_the_archive_title', array( $this, 'get_the_archive_title' ), 100 ); |
|
46 | + add_filter('lsx_fonts_css', array($this, 'customizer_fonts_handler'), 15); |
|
47 | + add_filter('lsx_banner_title', array($this, 'lsx_banner_archive_title'), 15); |
|
48 | + add_filter('lsx_banner_title', array($this, 'lsx_banner_single_title'), 15); |
|
49 | + add_filter('get_the_archive_title', array($this, 'get_the_archive_title'), 100); |
|
50 | 50 | |
51 | - add_filter( 'excerpt_more_p', array( $this, 'change_excerpt_more' ) ); |
|
52 | - add_filter( 'excerpt_length', array( $this, 'change_excerpt_length' ) ); |
|
53 | - add_filter( 'excerpt_strip_tags', array( $this, 'change_excerpt_strip_tags' ) ); |
|
51 | + add_filter('excerpt_more_p', array($this, 'change_excerpt_more')); |
|
52 | + add_filter('excerpt_length', array($this, 'change_excerpt_length')); |
|
53 | + add_filter('excerpt_strip_tags', array($this, 'change_excerpt_strip_tags')); |
|
54 | 54 | |
55 | - add_filter( 'wpseo_schema_graph_pieces', array( $this, 'add_graph_pieces' ), 11, 2 ); |
|
55 | + add_filter('wpseo_schema_graph_pieces', array($this, 'add_graph_pieces'), 11, 2); |
|
56 | 56 | } |
57 | 57 | |
58 | 58 | /** |
@@ -64,36 +64,36 @@ discard block |
||
64 | 64 | */ |
65 | 65 | public static function get_instance() { |
66 | 66 | // If the single instance hasn't been set, set it now. |
67 | - if ( null === self::$instance ) { |
|
67 | + if (null === self::$instance) { |
|
68 | 68 | self::$instance = new self(); |
69 | 69 | } |
70 | 70 | return self::$instance; |
71 | 71 | } |
72 | 72 | |
73 | - public function enqueue_scripts( $plugins ) { |
|
74 | - $has_slick = wp_script_is( 'slick', 'queue' ); |
|
73 | + public function enqueue_scripts($plugins) { |
|
74 | + $has_slick = wp_script_is('slick', 'queue'); |
|
75 | 75 | |
76 | - if ( ! $has_slick ) { |
|
77 | - wp_enqueue_style( 'slick', LSX_TEAM_URL . 'assets/css/vendor/slick.css', array(), LSX_TEAM_VER, null ); |
|
78 | - wp_enqueue_script( 'slick', LSX_TEAM_URL . 'assets/js/vendor/slick.min.js', array( 'jquery' ), null, LSX_TEAM_VER, true ); |
|
76 | + if (!$has_slick) { |
|
77 | + wp_enqueue_style('slick', LSX_TEAM_URL.'assets/css/vendor/slick.css', array(), LSX_TEAM_VER, null); |
|
78 | + wp_enqueue_script('slick', LSX_TEAM_URL.'assets/js/vendor/slick.min.js', array('jquery'), null, LSX_TEAM_VER, true); |
|
79 | 79 | } |
80 | 80 | |
81 | - wp_enqueue_script( 'lsx-team', LSX_TEAM_URL . 'assets/js/lsx-team.min.js', array( 'jquery', 'slick' ), LSX_TEAM_VER, true ); |
|
81 | + wp_enqueue_script('lsx-team', LSX_TEAM_URL.'assets/js/lsx-team.min.js', array('jquery', 'slick'), LSX_TEAM_VER, true); |
|
82 | 82 | |
83 | - $params = apply_filters( 'lsx_team_js_params', array( |
|
84 | - 'ajax_url' => admin_url( 'admin-ajax.php' ), |
|
83 | + $params = apply_filters('lsx_team_js_params', array( |
|
84 | + 'ajax_url' => admin_url('admin-ajax.php'), |
|
85 | 85 | )); |
86 | 86 | |
87 | - wp_localize_script( 'lsx-team', 'lsx_team_params', $params ); |
|
87 | + wp_localize_script('lsx-team', 'lsx_team_params', $params); |
|
88 | 88 | |
89 | - wp_enqueue_style( 'lsx-team', LSX_TEAM_URL . 'assets/css/lsx-team.css', array(), LSX_TEAM_VER ); |
|
90 | - wp_style_add_data( 'lsx-team', 'rtl', 'replace' ); |
|
89 | + wp_enqueue_style('lsx-team', LSX_TEAM_URL.'assets/css/lsx-team.css', array(), LSX_TEAM_VER); |
|
90 | + wp_style_add_data('lsx-team', 'rtl', 'replace'); |
|
91 | 91 | } |
92 | 92 | |
93 | 93 | /** |
94 | 94 | * Allow data params for Slick slider addon. |
95 | 95 | */ |
96 | - public function wp_kses_allowed_html( $allowedtags, $context ) { |
|
96 | + public function wp_kses_allowed_html($allowedtags, $context) { |
|
97 | 97 | $allowedtags['div']['data-slick'] = true; |
98 | 98 | return $allowedtags; |
99 | 99 | } |
@@ -101,10 +101,10 @@ discard block |
||
101 | 101 | /** |
102 | 102 | * Single template. |
103 | 103 | */ |
104 | - public function single_template_include( $template ) { |
|
105 | - if ( is_main_query() && is_singular( 'team' ) ) { |
|
106 | - if ( empty( locate_template( array( 'single-team.php' ) ) ) && file_exists( LSX_TEAM_PATH . 'templates/single-team.php' ) ) { |
|
107 | - $template = LSX_TEAM_PATH . 'templates/single-team.php'; |
|
104 | + public function single_template_include($template) { |
|
105 | + if (is_main_query() && is_singular('team')) { |
|
106 | + if (empty(locate_template(array('single-team.php'))) && file_exists(LSX_TEAM_PATH.'templates/single-team.php')) { |
|
107 | + $template = LSX_TEAM_PATH.'templates/single-team.php'; |
|
108 | 108 | } |
109 | 109 | } |
110 | 110 | |
@@ -114,10 +114,10 @@ discard block |
||
114 | 114 | /** |
115 | 115 | * Archive template. |
116 | 116 | */ |
117 | - public function archive_template_include( $template ) { |
|
118 | - if ( is_main_query() && is_post_type_archive( 'team' ) ) { |
|
119 | - if ( empty( locate_template( array( 'archive-team.php' ) ) ) && file_exists( LSX_TEAM_PATH . 'templates/archive-team.php' ) ) { |
|
120 | - $template = LSX_TEAM_PATH . 'templates/archive-team.php'; |
|
117 | + public function archive_template_include($template) { |
|
118 | + if (is_main_query() && is_post_type_archive('team')) { |
|
119 | + if (empty(locate_template(array('archive-team.php'))) && file_exists(LSX_TEAM_PATH.'templates/archive-team.php')) { |
|
120 | + $template = LSX_TEAM_PATH.'templates/archive-team.php'; |
|
121 | 121 | } |
122 | 122 | } |
123 | 123 | |
@@ -128,10 +128,10 @@ discard block |
||
128 | 128 | * Removes access to single team member posts. |
129 | 129 | */ |
130 | 130 | public function disable_single() { |
131 | - $queried_post_type = get_query_var( 'post_type' ); |
|
131 | + $queried_post_type = get_query_var('post_type'); |
|
132 | 132 | |
133 | - if ( is_single() && 'team' === $queried_post_type ) { |
|
134 | - wp_redirect( home_url(), 301 ); |
|
133 | + if (is_single() && 'team' === $queried_post_type) { |
|
134 | + wp_redirect(home_url(), 301); |
|
135 | 135 | exit; |
136 | 136 | } |
137 | 137 | } |
@@ -139,29 +139,29 @@ discard block |
||
139 | 139 | /** |
140 | 140 | * Disable pagination. |
141 | 141 | */ |
142 | - public function disable_pagination_on_archive( $query ) { |
|
143 | - if ( $query->is_main_query() && $query->is_post_type_archive( 'team' ) ) { |
|
144 | - $query->set( 'posts_per_page', -1 ); |
|
145 | - $query->set( 'no_found_rows', true ); |
|
142 | + public function disable_pagination_on_archive($query) { |
|
143 | + if ($query->is_main_query() && $query->is_post_type_archive('team')) { |
|
144 | + $query->set('posts_per_page', -1); |
|
145 | + $query->set('no_found_rows', true); |
|
146 | 146 | } |
147 | 147 | } |
148 | 148 | |
149 | 149 | /** |
150 | 150 | * Handle fonts that might be change by LSX Customiser. |
151 | 151 | */ |
152 | - public function customizer_fonts_handler( $css_fonts ) { |
|
152 | + public function customizer_fonts_handler($css_fonts) { |
|
153 | 153 | global $wp_filesystem; |
154 | 154 | |
155 | - $css_fonts_file = LSX_TEAM_PATH . '/assets/css/lsx-team-fonts.css'; |
|
155 | + $css_fonts_file = LSX_TEAM_PATH.'/assets/css/lsx-team-fonts.css'; |
|
156 | 156 | |
157 | - if ( file_exists( $css_fonts_file ) ) { |
|
158 | - if ( empty( $wp_filesystem ) ) { |
|
159 | - require_once( ABSPATH . 'wp-admin/includes/file.php' ); |
|
157 | + if (file_exists($css_fonts_file)) { |
|
158 | + if (empty($wp_filesystem)) { |
|
159 | + require_once(ABSPATH.'wp-admin/includes/file.php'); |
|
160 | 160 | WP_Filesystem(); |
161 | 161 | } |
162 | 162 | |
163 | - if ( $wp_filesystem ) { |
|
164 | - $css_fonts .= $wp_filesystem->get_contents( $css_fonts_file ); |
|
163 | + if ($wp_filesystem) { |
|
164 | + $css_fonts .= $wp_filesystem->get_contents($css_fonts_file); |
|
165 | 165 | } |
166 | 166 | } |
167 | 167 | |
@@ -171,20 +171,20 @@ discard block |
||
171 | 171 | /** |
172 | 172 | * Handle body colours that might be change by LSX Customiser. |
173 | 173 | */ |
174 | - public function customizer_body_colours_handler( $css, $colors ) { |
|
174 | + public function customizer_body_colours_handler($css, $colors) { |
|
175 | 175 | $css .= ' |
176 | - @import "' . LSX_TEAM_PATH . '/assets/css/scss/customizer-team-body-colours"; |
|
176 | + @import "' . LSX_TEAM_PATH.'/assets/css/scss/customizer-team-body-colours"; |
|
177 | 177 | |
178 | 178 | /** |
179 | 179 | * LSX Customizer - Body (LSX Team) |
180 | 180 | */ |
181 | 181 | @include customizer-team-body-colours ( |
182 | - $bg: ' . $colors['background_color'] . ', |
|
183 | - $breaker: ' . $colors['body_line_color'] . ', |
|
184 | - $color: ' . $colors['body_text_color'] . ', |
|
185 | - $link: ' . $colors['body_link_color'] . ', |
|
186 | - $hover: ' . $colors['body_link_hover_color'] . ', |
|
187 | - $small: ' . $colors['body_text_small_color'] . ' |
|
182 | + $bg: ' . $colors['background_color'].', |
|
183 | + $breaker: ' . $colors['body_line_color'].', |
|
184 | + $color: ' . $colors['body_text_color'].', |
|
185 | + $link: ' . $colors['body_link_color'].', |
|
186 | + $hover: ' . $colors['body_link_hover_color'].', |
|
187 | + $small: ' . $colors['body_text_small_color'].' |
|
188 | 188 | ); |
189 | 189 | '; |
190 | 190 | |
@@ -194,9 +194,9 @@ discard block |
||
194 | 194 | /** |
195 | 195 | * Change the LSX Banners title for team archive. |
196 | 196 | */ |
197 | - public function lsx_banner_archive_title( $title ) { |
|
198 | - if ( is_main_query() && is_post_type_archive( 'team' ) ) { |
|
199 | - $title = '<h1 class="page-title">' . esc_html__( 'Team', 'lsx-team' ) . '</h1>'; |
|
197 | + public function lsx_banner_archive_title($title) { |
|
198 | + if (is_main_query() && is_post_type_archive('team')) { |
|
199 | + $title = '<h1 class="page-title">'.esc_html__('Team', 'lsx-team').'</h1>'; |
|
200 | 200 | } |
201 | 201 | |
202 | 202 | return $title; |
@@ -205,9 +205,9 @@ discard block |
||
205 | 205 | /** |
206 | 206 | * Change the LSX Banners title for team single. |
207 | 207 | */ |
208 | - public function lsx_banner_single_title( $title ) { |
|
209 | - if ( is_main_query() && is_singular( 'team' ) ) { |
|
210 | - $title = '<h1 class="page-title">' . esc_html__( 'Team', 'lsx-team' ) . '</h1>'; |
|
208 | + public function lsx_banner_single_title($title) { |
|
209 | + if (is_main_query() && is_singular('team')) { |
|
210 | + $title = '<h1 class="page-title">'.esc_html__('Team', 'lsx-team').'</h1>'; |
|
211 | 211 | } |
212 | 212 | |
213 | 213 | return $title; |
@@ -219,9 +219,9 @@ discard block |
||
219 | 219 | * @param string $title the term title. |
220 | 220 | * @return string |
221 | 221 | */ |
222 | - public function get_the_archive_title( $title ) { |
|
223 | - if ( is_post_type_archive( 'team' ) ) { |
|
224 | - $title = __( 'Team', 'lsx-health-plan' ); |
|
222 | + public function get_the_archive_title($title) { |
|
223 | + if (is_post_type_archive('team')) { |
|
224 | + $title = __('Team', 'lsx-health-plan'); |
|
225 | 225 | } |
226 | 226 | return $title; |
227 | 227 | } |
@@ -229,11 +229,11 @@ discard block |
||
229 | 229 | /** |
230 | 230 | * Remove the "continue reading" when the single is disabled. |
231 | 231 | */ |
232 | - public function change_excerpt_more( $excerpt_more ) { |
|
232 | + public function change_excerpt_more($excerpt_more) { |
|
233 | 233 | global $post; |
234 | 234 | |
235 | - if ( 'team' === $post->post_type ) { |
|
236 | - if ( ! empty( team_get_option( 'team_disable_single' ) ) ) { |
|
235 | + if ('team' === $post->post_type) { |
|
236 | + if (!empty(team_get_option('team_disable_single'))) { |
|
237 | 237 | $excerpt_more = ''; |
238 | 238 | } |
239 | 239 | } |
@@ -244,10 +244,10 @@ discard block |
||
244 | 244 | /** |
245 | 245 | * Change the word count when crop the content to excerpt (single team relations). |
246 | 246 | */ |
247 | - public function change_excerpt_length( $excerpt_word_count ) { |
|
247 | + public function change_excerpt_length($excerpt_word_count) { |
|
248 | 248 | global $post; |
249 | 249 | |
250 | - if ( is_singular( 'team' ) && ( 'project' === $post->post_type || 'testimonial' === $post->post_type ) ) { |
|
250 | + if (is_singular('team') && ('project' === $post->post_type || 'testimonial' === $post->post_type)) { |
|
251 | 251 | $excerpt_word_count = 20; |
252 | 252 | } |
253 | 253 | |
@@ -257,10 +257,10 @@ discard block |
||
257 | 257 | /** |
258 | 258 | * Change the allowed tags crop the content to excerpt (single team relations). |
259 | 259 | */ |
260 | - public function change_excerpt_strip_tags( $allowed_tags ) { |
|
260 | + public function change_excerpt_strip_tags($allowed_tags) { |
|
261 | 261 | global $post; |
262 | 262 | |
263 | - if ( is_singular( 'team' ) && ( 'project' === $post->post_type || 'testimonial' === $post->post_type ) ) { |
|
263 | + if (is_singular('team') && ('project' === $post->post_type || 'testimonial' === $post->post_type)) { |
|
264 | 264 | $allowed_tags = '<p>,<br>,<b>,<strong>,<i>,<u>,<ul>,<ol>,<li>,<span>'; |
265 | 265 | } |
266 | 266 | |
@@ -272,12 +272,12 @@ discard block |
||
272 | 272 | * |
273 | 273 | * @return mixed |
274 | 274 | */ |
275 | - public function pre_get_posts_order_by_role( $query ) { |
|
276 | - if ( ! is_admin() && $query->is_main_query() && $query->is_post_type_archive( 'team' ) ) { |
|
275 | + public function pre_get_posts_order_by_role($query) { |
|
276 | + if (!is_admin() && $query->is_main_query() && $query->is_post_type_archive('team')) { |
|
277 | 277 | $post_ids = $this->order_by_role_query(); |
278 | - if ( ! empty( $post_ids ) ) { |
|
279 | - $query->set( 'post__in', $post_ids ); |
|
280 | - $query->set( 'orderby', 'post__in' ); |
|
278 | + if (!empty($post_ids)) { |
|
279 | + $query->set('post__in', $post_ids); |
|
280 | + $query->set('orderby', 'post__in'); |
|
281 | 281 | } |
282 | 282 | } |
283 | 283 | return $query; |
@@ -290,7 +290,7 @@ discard block |
||
290 | 290 | global $wpdb; |
291 | 291 | $post_ids = array(); |
292 | 292 | |
293 | - $results = $wpdb->get_results( $wpdb->prepare(" |
|
293 | + $results = $wpdb->get_results($wpdb->prepare(" |
|
294 | 294 | SELECT posts.ID, posts.post_title, terms.slug |
295 | 295 | FROM {$wpdb->posts} AS posts |
296 | 296 | INNER JOIN {$wpdb->term_relationships} as rels |
@@ -303,10 +303,10 @@ discard block |
||
303 | 303 | AND tax.taxonomy = '%s' |
304 | 304 | AND tax.term_id = terms.term_id |
305 | 305 | ORDER BY terms.lsx_team_term_order, posts.post_name |
306 | - ", 'team', 'publish', 'team_role' ) ); |
|
306 | + ", 'team', 'publish', 'team_role')); |
|
307 | 307 | |
308 | - if ( ! empty( $results ) ) { |
|
309 | - $post_ids = wp_list_pluck( $results, 'ID' ); |
|
308 | + if (!empty($results)) { |
|
309 | + $post_ids = wp_list_pluck($results, 'ID'); |
|
310 | 310 | } |
311 | 311 | return $post_ids; |
312 | 312 | } |
@@ -316,17 +316,17 @@ discard block |
||
316 | 316 | * Outputs the Role Title if its found |
317 | 317 | */ |
318 | 318 | public function entry_before() { |
319 | - if ( is_post_type_archive( 'team' ) ) { |
|
320 | - $all_roles = wc_get_object_terms( get_the_ID(), 'team_role' ); |
|
319 | + if (is_post_type_archive('team')) { |
|
320 | + $all_roles = wc_get_object_terms(get_the_ID(), 'team_role'); |
|
321 | 321 | $this_role = ''; |
322 | 322 | $this_role_id = ''; |
323 | - if ( ! empty( $all_roles ) ) { |
|
323 | + if (!empty($all_roles)) { |
|
324 | 324 | $this_role = $all_roles[0]; |
325 | 325 | $this_role_id = $this_role->term_id; |
326 | 326 | } |
327 | 327 | |
328 | - if ( '' === $this->previous_role || $this->previous_role !== $this_role_id ) { |
|
329 | - echo '<h2 class="role-title text-center col-xs-12 col-sm-12 col-md-12">' . wp_kses_post( $this_role->name ) . '</h2>'; |
|
328 | + if ('' === $this->previous_role || $this->previous_role !== $this_role_id) { |
|
329 | + echo '<h2 class="role-title text-center col-xs-12 col-sm-12 col-md-12">'.wp_kses_post($this_role->name).'</h2>'; |
|
330 | 330 | $this->previous_role = $this_role_id; |
331 | 331 | } |
332 | 332 | } |
@@ -334,11 +334,11 @@ discard block |
||
334 | 334 | /** |
335 | 335 | * Adds Pieces |
336 | 336 | */ |
337 | - public function add_graph_pieces( $pieces, $context ) { |
|
337 | + public function add_graph_pieces($pieces, $context) { |
|
338 | 338 | // Scheme Class. |
339 | - if ( class_exists( 'LSX_Schema_Graph_Piece' ) ) { |
|
340 | - require_once LSX_TEAM_PATH . '/classes/class-lsx-team-schema.php'; |
|
341 | - $pieces[] = new \LSX_Team_Schema( $context ); |
|
339 | + if (class_exists('LSX_Schema_Graph_Piece')) { |
|
340 | + require_once LSX_TEAM_PATH.'/classes/class-lsx-team-schema.php'; |
|
341 | + $pieces[] = new \LSX_Team_Schema($context); |
|
342 | 342 | } |
343 | 343 | return $pieces; |
344 | 344 | } |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | * Contructor |
30 | 30 | */ |
31 | 31 | public function __construct() { |
32 | - add_action( 'init', array( $this, 'cmb2_post_search_ajax' ) ); |
|
32 | + add_action('init', array($this, 'cmb2_post_search_ajax')); |
|
33 | 33 | $this->load_vendors(); |
34 | 34 | } |
35 | 35 | |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | public static function get_instance() { |
44 | 44 | |
45 | 45 | // If the single instance hasn't been set, set it now. |
46 | - if ( null === self::$instance ) { |
|
46 | + if (null === self::$instance) { |
|
47 | 47 | self::$instance = new self(); |
48 | 48 | } |
49 | 49 | |
@@ -56,8 +56,8 @@ discard block |
||
56 | 56 | */ |
57 | 57 | private function load_vendors() { |
58 | 58 | // Configure custom fields. |
59 | - if ( ! class_exists( 'CMB2' ) ) { |
|
60 | - require_once LSX_TEAM_PATH . 'vendor/CMB2/init.php'; |
|
59 | + if (!class_exists('CMB2')) { |
|
60 | + require_once LSX_TEAM_PATH.'vendor/CMB2/init.php'; |
|
61 | 61 | } |
62 | 62 | } |
63 | 63 | |
@@ -67,11 +67,11 @@ discard block |
||
67 | 67 | * @return void |
68 | 68 | */ |
69 | 69 | public function get_post_types() { |
70 | - $post_types = apply_filters( 'lsx_team_post_types', isset( $this->post_types ) ); |
|
71 | - foreach ( $post_types as $index => $post_type ) { |
|
72 | - $is_disabled = \cmb2_get_option( 'lsx_team_options', $post_type . '_disabled', false ); |
|
73 | - if ( true === $is_disabled || 1 === $is_disabled || 'on' === $is_disabled ) { |
|
74 | - unset( $post_types[ $index ] ); |
|
70 | + $post_types = apply_filters('lsx_team_post_types', isset($this->post_types)); |
|
71 | + foreach ($post_types as $index => $post_type) { |
|
72 | + $is_disabled = \cmb2_get_option('lsx_team_options', $post_type.'_disabled', false); |
|
73 | + if (true === $is_disabled || 1 === $is_disabled || 'on' === $is_disabled) { |
|
74 | + unset($post_types[$index]); |
|
75 | 75 | } |
76 | 76 | } |
77 | 77 | return $post_types; |
@@ -83,8 +83,8 @@ discard block |
||
83 | 83 | * @return void |
84 | 84 | */ |
85 | 85 | public function cmb2_post_search_ajax() { |
86 | - require_once LSX_TEAM_PATH . 'vendor/lsx-field-post-search-ajax/cmb-field-post-search-ajax.php'; |
|
87 | - if ( method_exists( 'MAG_CMB2_Field_Post_Search_Ajax', 'get_instance' ) ) { |
|
86 | + require_once LSX_TEAM_PATH.'vendor/lsx-field-post-search-ajax/cmb-field-post-search-ajax.php'; |
|
87 | + if (method_exists('MAG_CMB2_Field_Post_Search_Ajax', 'get_instance')) { |
|
88 | 88 | $this->cmb2_post_search_ajax = \MAG_CMB2_Field_Post_Search_Ajax::get_instance(); |
89 | 89 | } |
90 | 90 | } |
@@ -36,14 +36,14 @@ discard block |
||
36 | 36 | * Contructor |
37 | 37 | */ |
38 | 38 | public function __construct() { |
39 | - add_filter( 'cmb2_enqueue_css', array( $this, 'disable_cmb2_styles' ), 1, 1 ); |
|
40 | - add_action( 'cmb2_before_form', array( $this, 'generate_navigation' ), 10, 4 ); |
|
41 | - add_action( 'cmb2_before_title_field_row', array( $this, 'output_tab_open_div' ), 10, 1 ); |
|
42 | - add_action( 'cmb2_after_tab_closing_field_row', array( $this, 'output_tab_closing_div' ), 10, 1 ); |
|
43 | - add_action( 'cmb2_render_tab_closing', array( $this, 'cmb2_render_callback_for_tab_closing' ), 10, 5 ); |
|
44 | - add_filter( 'cmb2_sanitize_tab_closing', array( $this, 'cmb2_sanitize_tab_closing_callback' ), 10, 2 ); |
|
45 | - add_action( 'cmb2_after_form', array( $this, 'navigation_js' ), 10, 4 ); |
|
46 | - add_filter( 'cmb2_options_page_redirect_url', array( $this, 'add_tab_argument' ), 10, 1 ); |
|
39 | + add_filter('cmb2_enqueue_css', array($this, 'disable_cmb2_styles'), 1, 1); |
|
40 | + add_action('cmb2_before_form', array($this, 'generate_navigation'), 10, 4); |
|
41 | + add_action('cmb2_before_title_field_row', array($this, 'output_tab_open_div'), 10, 1); |
|
42 | + add_action('cmb2_after_tab_closing_field_row', array($this, 'output_tab_closing_div'), 10, 1); |
|
43 | + add_action('cmb2_render_tab_closing', array($this, 'cmb2_render_callback_for_tab_closing'), 10, 5); |
|
44 | + add_filter('cmb2_sanitize_tab_closing', array($this, 'cmb2_sanitize_tab_closing_callback'), 10, 2); |
|
45 | + add_action('cmb2_after_form', array($this, 'navigation_js'), 10, 4); |
|
46 | + add_filter('cmb2_options_page_redirect_url', array($this, 'add_tab_argument'), 10, 1); |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | /** |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | */ |
56 | 56 | public static function get_instance() { |
57 | 57 | // If the single instance hasn't been set, set it now. |
58 | - if ( null == self::$instance ) { |
|
58 | + if (null == self::$instance) { |
|
59 | 59 | self::$instance = new self(); |
60 | 60 | } |
61 | 61 | return self::$instance; |
@@ -66,10 +66,10 @@ discard block |
||
66 | 66 | * |
67 | 67 | * @return bool $enabled Whether to enable (enqueue) styles. |
68 | 68 | */ |
69 | - public function disable_cmb2_styles( $enabled ) { |
|
70 | - if ( is_admin() ) { |
|
69 | + public function disable_cmb2_styles($enabled) { |
|
70 | + if (is_admin()) { |
|
71 | 71 | $current_screen = get_current_screen(); |
72 | - if ( is_object( $current_screen ) && 'team_page_lsx_team_options' === $current_screen->id ) { |
|
72 | + if (is_object($current_screen) && 'team_page_lsx_team_options' === $current_screen->id) { |
|
73 | 73 | $enabled = false; |
74 | 74 | } |
75 | 75 | } |
@@ -85,14 +85,14 @@ discard block |
||
85 | 85 | * @param object $cmb2_obj |
86 | 86 | * @return void |
87 | 87 | */ |
88 | - public function generate_navigation( $cmb_id, $object_id, $object_type, $cmb2_obj ) { |
|
89 | - if ( 'lsx_team_settings' === $cmb_id && 'lsx_team_options' === $object_id && 'options-page' === $object_type ) { |
|
88 | + public function generate_navigation($cmb_id, $object_id, $object_type, $cmb2_obj) { |
|
89 | + if ('lsx_team_settings' === $cmb_id && 'lsx_team_options' === $object_id && 'options-page' === $object_type) { |
|
90 | 90 | $this->navigation = array(); |
91 | 91 | $this->is_options_page = true; |
92 | - if ( isset( $cmb2_obj->meta_box['fields'] ) && ! empty( $cmb2_obj->meta_box['fields'] ) ) { |
|
93 | - foreach ( $cmb2_obj->meta_box['fields'] as $field_index => $field ) { |
|
94 | - if ( 'title' === $field['type'] ) { |
|
95 | - $this->navigation[ $field_index ] = $field['name']; |
|
92 | + if (isset($cmb2_obj->meta_box['fields']) && !empty($cmb2_obj->meta_box['fields'])) { |
|
93 | + foreach ($cmb2_obj->meta_box['fields'] as $field_index => $field) { |
|
94 | + if ('title' === $field['type']) { |
|
95 | + $this->navigation[$field_index] = $field['name']; |
|
96 | 96 | } |
97 | 97 | } |
98 | 98 | } |
@@ -106,32 +106,32 @@ discard block |
||
106 | 106 | * @return void |
107 | 107 | */ |
108 | 108 | public function output_navigation() { |
109 | - if ( ! empty( $this->navigation ) ) { |
|
109 | + if (!empty($this->navigation)) { |
|
110 | 110 | ?> |
111 | 111 | <div class="wp-filter hide-if-no-js"> |
112 | 112 | <ul class="filter-links"> |
113 | 113 | <?php |
114 | 114 | $first_tab = true; |
115 | - $total = count( $this->navigation ); |
|
115 | + $total = count($this->navigation); |
|
116 | 116 | $count = 0; |
117 | 117 | $separator = ' |'; |
118 | 118 | $selected_tab = ''; |
119 | - if ( isset( $_GET['cmb_tab'] ) && '' !== $_GET['cmb_tab'] ) { |
|
120 | - $selected_tab = sanitize_text_field( wp_unslash( $_GET['cmb_tab'] ) ); |
|
121 | - $selected_tab = 'settings_' . $selected_tab; |
|
119 | + if (isset($_GET['cmb_tab']) && '' !== $_GET['cmb_tab']) { |
|
120 | + $selected_tab = sanitize_text_field(wp_unslash($_GET['cmb_tab'])); |
|
121 | + $selected_tab = 'settings_'.$selected_tab; |
|
122 | 122 | } |
123 | - foreach ( $this->navigation as $key => $label ) { |
|
123 | + foreach ($this->navigation as $key => $label) { |
|
124 | 124 | $count++; |
125 | 125 | $current_css = ''; |
126 | - if ( ( true === $first_tab && '' === $selected_tab ) || $key === $selected_tab ) { |
|
126 | + if ((true === $first_tab && '' === $selected_tab) || $key === $selected_tab) { |
|
127 | 127 | $first_tab = false; |
128 | 128 | $current_css = 'current'; |
129 | 129 | } |
130 | - if ( $count === $total ) { |
|
130 | + if ($count === $total) { |
|
131 | 131 | $separator = ''; |
132 | 132 | } |
133 | 133 | ?> |
134 | - <li><a href="#" class="<?php echo esc_attr( $current_css ); ?>" data-sort="<?php echo esc_attr( $key ); ?>_tab"><?php echo esc_attr( $label ); ?></a><?php echo esc_attr( $separator ); ?></li> |
|
134 | + <li><a href="#" class="<?php echo esc_attr($current_css); ?>" data-sort="<?php echo esc_attr($key); ?>_tab"><?php echo esc_attr($label); ?></a><?php echo esc_attr($separator); ?></li> |
|
135 | 135 | <?php |
136 | 136 | } |
137 | 137 | ?> |
@@ -147,10 +147,10 @@ discard block |
||
147 | 147 | * @param object $field CMB2_Field(); |
148 | 148 | * @return void |
149 | 149 | */ |
150 | - public function output_tab_open_div( $field ) { |
|
151 | - if ( true === $this->is_options_page && isset( $field->args['type'] ) && 'title' === $field->args['type'] ) { |
|
150 | + public function output_tab_open_div($field) { |
|
151 | + if (true === $this->is_options_page && isset($field->args['type']) && 'title' === $field->args['type']) { |
|
152 | 152 | ?> |
153 | - <div id="<?php echo esc_attr( $field->args['id'] ); ?>_tab" class="tab tab-nav hidden"> |
|
153 | + <div id="<?php echo esc_attr($field->args['id']); ?>_tab" class="tab tab-nav hidden"> |
|
154 | 154 | <?php |
155 | 155 | } |
156 | 156 | } |
@@ -161,19 +161,19 @@ discard block |
||
161 | 161 | * @param object $field CMB2_Field(); |
162 | 162 | * @return void |
163 | 163 | */ |
164 | - public function output_tab_closing_div( $field ) { |
|
165 | - if ( true === $this->is_options_page && isset( $field->args['type'] ) && 'tab_closing' === $field->args['type'] ) { |
|
164 | + public function output_tab_closing_div($field) { |
|
165 | + if (true === $this->is_options_page && isset($field->args['type']) && 'tab_closing' === $field->args['type']) { |
|
166 | 166 | ?> |
167 | 167 | </div> |
168 | 168 | <?php |
169 | 169 | } |
170 | 170 | } |
171 | 171 | |
172 | - public function cmb2_render_callback_for_tab_closing( $field, $escaped_value, $object_id, $object_type, $field_type_object ) { |
|
172 | + public function cmb2_render_callback_for_tab_closing($field, $escaped_value, $object_id, $object_type, $field_type_object) { |
|
173 | 173 | return; |
174 | 174 | } |
175 | 175 | |
176 | - public function cmb2_sanitize_tab_closing_callback( $override_value, $value ) { |
|
176 | + public function cmb2_sanitize_tab_closing_callback($override_value, $value) { |
|
177 | 177 | return ''; |
178 | 178 | } |
179 | 179 | |
@@ -186,8 +186,8 @@ discard block |
||
186 | 186 | * @param object $cmb2_obj |
187 | 187 | * @return void |
188 | 188 | */ |
189 | - public function navigation_js( $cmb_id, $object_id, $object_type, $cmb2_obj ) { |
|
190 | - if ( 'lsx_team_settings' === $cmb_id && 'lsx_team_options' === $object_id && 'options-page' === $object_type ) { |
|
189 | + public function navigation_js($cmb_id, $object_id, $object_type, $cmb2_obj) { |
|
190 | + if ('lsx_team_settings' === $cmb_id && 'lsx_team_options' === $object_id && 'options-page' === $object_type) { |
|
191 | 191 | ?> |
192 | 192 | <script> |
193 | 193 | var LSX_TEAM_CMB2 = Object.create( null ); |
@@ -270,14 +270,14 @@ discard block |
||
270 | 270 | * @param string $url |
271 | 271 | * @return void |
272 | 272 | */ |
273 | - public function add_tab_argument( $url ) { |
|
274 | - if ( isset( $_POST['cmb_tab'] ) && '' !== $_POST['cmb_tab'] ) { // @codingStandardsIgnoreLine |
|
275 | - $tab_selection = sanitize_text_field( $_POST['cmb_tab'] ); // @codingStandardsIgnoreLine |
|
276 | - $tab_selection = str_replace( array( 'settings_', '_tab' ), '', $tab_selection ); // @codingStandardsIgnoreLine |
|
277 | - if ( 'single' !== $tab_selection ) { |
|
278 | - $url = add_query_arg( 'cmb_tab', $tab_selection, $url ); |
|
273 | + public function add_tab_argument($url) { |
|
274 | + if (isset($_POST['cmb_tab']) && '' !== $_POST['cmb_tab']) { // @codingStandardsIgnoreLine |
|
275 | + $tab_selection = sanitize_text_field($_POST['cmb_tab']); // @codingStandardsIgnoreLine |
|
276 | + $tab_selection = str_replace(array('settings_', '_tab'), '', $tab_selection); // @codingStandardsIgnoreLine |
|
277 | + if ('single' !== $tab_selection) { |
|
278 | + $url = add_query_arg('cmb_tab', $tab_selection, $url); |
|
279 | 279 | } else { |
280 | - $url = remove_query_arg( 'cmb_tab', $url ); |
|
280 | + $url = remove_query_arg('cmb_tab', $url); |
|
281 | 281 | } |
282 | 282 | } |
283 | 283 | return $url; |
@@ -13,35 +13,35 @@ |
||
13 | 13 | */ |
14 | 14 | |
15 | 15 | // If this file is called directly, abort. |
16 | -if ( ! defined( 'WPINC' ) ) { |
|
16 | +if (!defined('WPINC')) { |
|
17 | 17 | die; |
18 | 18 | } |
19 | 19 | |
20 | -define( 'LSX_TEAM_PATH', plugin_dir_path( __FILE__ ) ); |
|
21 | -define( 'LSX_TEAM_CORE', __FILE__ ); |
|
22 | -define( 'LSX_TEAM_URL', plugin_dir_url( __FILE__ ) ); |
|
23 | -define( 'LSX_TEAM_VER', '1.3.0' ); |
|
20 | +define('LSX_TEAM_PATH', plugin_dir_path(__FILE__)); |
|
21 | +define('LSX_TEAM_CORE', __FILE__); |
|
22 | +define('LSX_TEAM_URL', plugin_dir_url(__FILE__)); |
|
23 | +define('LSX_TEAM_VER', '1.3.0'); |
|
24 | 24 | |
25 | 25 | |
26 | 26 | /* ======================= Below is the Plugin Class init ========================= */ |
27 | 27 | |
28 | 28 | // Template Tag and functions. |
29 | -require_once LSX_TEAM_PATH . '/includes/functions.php'; |
|
29 | +require_once LSX_TEAM_PATH.'/includes/functions.php'; |
|
30 | 30 | |
31 | 31 | // Core Class. |
32 | -require_once LSX_TEAM_PATH . '/classes/class-lsx-team-core.php'; |
|
32 | +require_once LSX_TEAM_PATH.'/classes/class-lsx-team-core.php'; |
|
33 | 33 | |
34 | 34 | // Post Type and Custom Fields. |
35 | -require_once LSX_TEAM_PATH . '/classes/class-lsx-team-admin.php'; |
|
35 | +require_once LSX_TEAM_PATH.'/classes/class-lsx-team-admin.php'; |
|
36 | 36 | |
37 | 37 | // Frontend resources. |
38 | -require_once LSX_TEAM_PATH . '/classes/class-lsx-team-frontend.php'; |
|
38 | +require_once LSX_TEAM_PATH.'/classes/class-lsx-team-frontend.php'; |
|
39 | 39 | |
40 | 40 | // Shortcode. |
41 | -require_once LSX_TEAM_PATH . '/classes/class-lsx-team.php'; |
|
41 | +require_once LSX_TEAM_PATH.'/classes/class-lsx-team.php'; |
|
42 | 42 | |
43 | 43 | // Widget. |
44 | -require_once LSX_TEAM_PATH . '/classes/class-lsx-team-widget.php'; |
|
44 | +require_once LSX_TEAM_PATH.'/classes/class-lsx-team-widget.php'; |
|
45 | 45 | |
46 | 46 | // Post reorder. |
47 | -require_once LSX_TEAM_PATH . '/includes/class-lsx-team-scpo-engine.php'; |
|
47 | +require_once LSX_TEAM_PATH.'/includes/class-lsx-team-scpo-engine.php'; |
@@ -7,34 +7,34 @@ discard block |
||
7 | 7 | <?php |
8 | 8 | global $lsx_team; |
9 | 9 | |
10 | - $thumbnail = $lsx_team->get_thumbnail( get_the_ID(), 'lsx-team-single' ); |
|
10 | + $thumbnail = $lsx_team->get_thumbnail(get_the_ID(), 'lsx-team-single'); |
|
11 | 11 | |
12 | - $job_title = get_post_meta( get_the_ID(), 'lsx_job_title', true ); |
|
12 | + $job_title = get_post_meta(get_the_ID(), 'lsx_job_title', true); |
|
13 | 13 | |
14 | 14 | $links = array( |
15 | - 'facebook' => get_post_meta( get_the_ID(), 'lsx_facebook', true ), |
|
16 | - 'twitter' => get_post_meta( get_the_ID(), 'lsx_twitter', true ), |
|
17 | - 'linkedin' => get_post_meta( get_the_ID(), 'lsx_linkedin', true ), |
|
18 | - 'github' => get_post_meta( get_the_ID(), 'lsx_github', true ), |
|
19 | - 'wordpress' => get_post_meta( get_the_ID(), 'lsx_wordpress', true ), |
|
15 | + 'facebook' => get_post_meta(get_the_ID(), 'lsx_facebook', true), |
|
16 | + 'twitter' => get_post_meta(get_the_ID(), 'lsx_twitter', true), |
|
17 | + 'linkedin' => get_post_meta(get_the_ID(), 'lsx_linkedin', true), |
|
18 | + 'github' => get_post_meta(get_the_ID(), 'lsx_github', true), |
|
19 | + 'wordpress' => get_post_meta(get_the_ID(), 'lsx_wordpress', true), |
|
20 | 20 | ); |
21 | 21 | |
22 | - foreach ( $links as $service => $link ) { |
|
23 | - if ( empty( $link ) ) { |
|
24 | - unset( $links[ $service ] ); |
|
22 | + foreach ($links as $service => $link) { |
|
23 | + if (empty($link)) { |
|
24 | + unset($links[$service]); |
|
25 | 25 | } |
26 | 26 | } |
27 | 27 | |
28 | - $email = get_post_meta( get_the_ID(), 'lsx_email_contact', true ); |
|
29 | - $phone = get_post_meta( get_the_ID(), 'lsx_tel', true ); |
|
30 | - $skype = get_post_meta( get_the_ID(), 'lsx_skype', true ); |
|
28 | + $email = get_post_meta(get_the_ID(), 'lsx_email_contact', true); |
|
29 | + $phone = get_post_meta(get_the_ID(), 'lsx_tel', true); |
|
30 | + $skype = get_post_meta(get_the_ID(), 'lsx_skype', true); |
|
31 | 31 | |
32 | 32 | $phone_attr = $phone; |
33 | - $phone_attr = str_replace( ' ', '', $phone_attr ); |
|
34 | - $phone_attr = str_replace( '+', '', $phone_attr ); |
|
35 | - $phone_attr = str_replace( '(', '', $phone_attr ); |
|
36 | - $phone_attr = str_replace( ')', '', $phone_attr ); |
|
37 | - $phone_attr = str_replace( '.', '', $phone_attr ); |
|
33 | + $phone_attr = str_replace(' ', '', $phone_attr); |
|
34 | + $phone_attr = str_replace('+', '', $phone_attr); |
|
35 | + $phone_attr = str_replace('(', '', $phone_attr); |
|
36 | + $phone_attr = str_replace(')', '', $phone_attr); |
|
37 | + $phone_attr = str_replace('.', '', $phone_attr); |
|
38 | 38 | |
39 | 39 | // Tabs |
40 | 40 | |
@@ -42,13 +42,13 @@ discard block |
||
42 | 42 | |
43 | 43 | // Tab Posts |
44 | 44 | |
45 | - $site_user = get_post_meta( get_the_ID(), 'lsx_site_user', true ); |
|
45 | + $site_user = get_post_meta(get_the_ID(), 'lsx_site_user', true); |
|
46 | 46 | |
47 | - if ( ! empty( $site_user ) ) { |
|
48 | - if ( is_user_member_of_blog( $site_user ) ) { |
|
49 | - $user_posts = count_user_posts( $site_user, 'post' ); |
|
47 | + if (!empty($site_user)) { |
|
48 | + if (is_user_member_of_blog($site_user)) { |
|
49 | + $user_posts = count_user_posts($site_user, 'post'); |
|
50 | 50 | |
51 | - if ( $user_posts > 0 ) { |
|
51 | + if ($user_posts > 0) { |
|
52 | 52 | $params = array( |
53 | 53 | 'post_type' => 'post', |
54 | 54 | 'author' => $site_user, |
@@ -76,16 +76,16 @@ discard block |
||
76 | 76 | ), |
77 | 77 | ); |
78 | 78 | |
79 | - $posts_query = new \WP_Query( $params ); |
|
79 | + $posts_query = new \WP_Query($params); |
|
80 | 80 | |
81 | - if ( $posts_query->have_posts() ) { |
|
81 | + if ($posts_query->have_posts()) { |
|
82 | 82 | $tab_post['post_type'] = 'post'; |
83 | - $tab_post['title'] = esc_html__( 'Posts', 'lsx-team' ); |
|
83 | + $tab_post['title'] = esc_html__('Posts', 'lsx-team'); |
|
84 | 84 | $tab_post['posts'] = $posts_query->posts; |
85 | 85 | |
86 | - if ( ! empty( $tab_post['posts'] ) ) { |
|
87 | - $post_ids = join( ',', $tab_post['posts'] ); |
|
88 | - $tab_post['shortcode'] = '[lsx_posts columns="3" include="' . $post_ids . '"]'; |
|
86 | + if (!empty($tab_post['posts'])) { |
|
87 | + $post_ids = join(',', $tab_post['posts']); |
|
88 | + $tab_post['shortcode'] = '[lsx_posts columns="3" include="'.$post_ids.'"]'; |
|
89 | 89 | $tabs[] = $tab_post; |
90 | 90 | } |
91 | 91 | } |
@@ -96,25 +96,25 @@ discard block |
||
96 | 96 | // Tab Projects |
97 | 97 | |
98 | 98 | $tab_project['post_type'] = 'project'; |
99 | - $tab_project['title'] = esc_html__( 'Projects', 'lsx-team' ); |
|
100 | - $tab_project['posts'] = get_post_meta( get_the_ID(), 'project_to_team', true ); |
|
99 | + $tab_project['title'] = esc_html__('Projects', 'lsx-team'); |
|
100 | + $tab_project['posts'] = get_post_meta(get_the_ID(), 'project_to_team', true); |
|
101 | 101 | |
102 | - if ( is_plugin_active( 'lsx-projects/lsx-projects.php' ) && ( ! empty( $tab_project['posts'] ) ) ) { |
|
103 | - $post_ids = join( ',', $tab_project['posts'] ); |
|
104 | - $tab_project['shortcode'] = '[lsx_projects columns="3" include="' . $post_ids . '"]'; |
|
102 | + if (is_plugin_active('lsx-projects/lsx-projects.php') && (!empty($tab_project['posts']))) { |
|
103 | + $post_ids = join(',', $tab_project['posts']); |
|
104 | + $tab_project['shortcode'] = '[lsx_projects columns="3" include="'.$post_ids.'"]'; |
|
105 | 105 | $tabs[] = $tab_project; |
106 | 106 | } |
107 | 107 | |
108 | 108 | // Tab Services |
109 | 109 | |
110 | - if ( is_plugin_active( 'lsx-services/lsx-services.php' ) ) { |
|
110 | + if (is_plugin_active('lsx-services/lsx-services.php')) { |
|
111 | 111 | $tab_service['post_type'] = 'service'; |
112 | - $tab_service['title'] = esc_html__( 'Services', 'lsx-team' ); |
|
113 | - $tab_service['posts'] = get_post_meta( get_the_ID(), 'service_to_team', true ); |
|
112 | + $tab_service['title'] = esc_html__('Services', 'lsx-team'); |
|
113 | + $tab_service['posts'] = get_post_meta(get_the_ID(), 'service_to_team', true); |
|
114 | 114 | |
115 | - if ( ! empty( $tab_service['posts'] ) ) { |
|
116 | - $post_ids = join( ',', $tab_service['posts'] ); |
|
117 | - $tab_service['shortcode'] = '[lsx_services columns="3" include="' . $post_ids . '"]'; |
|
115 | + if (!empty($tab_service['posts'])) { |
|
116 | + $post_ids = join(',', $tab_service['posts']); |
|
117 | + $tab_service['shortcode'] = '[lsx_services columns="3" include="'.$post_ids.'"]'; |
|
118 | 118 | $tabs[] = $tab_service; |
119 | 119 | } |
120 | 120 | } |
@@ -122,18 +122,18 @@ discard block |
||
122 | 122 | // Tab Testimonials |
123 | 123 | |
124 | 124 | $tab_testimonial['post_type'] = 'testimonial'; |
125 | - $tab_testimonial['title'] = esc_html__( 'Testimonials', 'lsx-team' ); |
|
126 | - $tab_testimonial['posts'] = get_post_meta( get_the_ID(), 'testimonial_to_team', true ); |
|
125 | + $tab_testimonial['title'] = esc_html__('Testimonials', 'lsx-team'); |
|
126 | + $tab_testimonial['posts'] = get_post_meta(get_the_ID(), 'testimonial_to_team', true); |
|
127 | 127 | |
128 | - if ( is_plugin_active( 'lsx-testimonials/lsx-testimonials.php' ) && ( ! empty( $tab_testimonial['posts'] ) ) ) { |
|
129 | - if ( count( $tab_testimonial['posts'] ) <= 2 ) { |
|
130 | - $columns = count( $tab_testimonial['posts'] ); |
|
128 | + if (is_plugin_active('lsx-testimonials/lsx-testimonials.php') && (!empty($tab_testimonial['posts']))) { |
|
129 | + if (count($tab_testimonial['posts']) <= 2) { |
|
130 | + $columns = count($tab_testimonial['posts']); |
|
131 | 131 | } else { |
132 | 132 | $columns = 2; |
133 | 133 | } |
134 | 134 | |
135 | - $post_ids = join( ',', $tab_testimonial['posts'] ); |
|
136 | - $tab_testimonial['shortcode'] = '[lsx_testimonials columns="' . $columns . '" include="' . $post_ids . '" orderby="date" order="DESC" display="excerpt"]'; |
|
135 | + $post_ids = join(',', $tab_testimonial['posts']); |
|
136 | + $tab_testimonial['shortcode'] = '[lsx_testimonials columns="'.$columns.'" include="'.$post_ids.'" orderby="date" order="DESC" display="excerpt"]'; |
|
137 | 137 | $tabs[] = $tab_testimonial; |
138 | 138 | } |
139 | 139 | ?> |
@@ -147,15 +147,15 @@ discard block |
||
147 | 147 | <div class="row"> |
148 | 148 | <div class="col-xs-12 col-sm-6 col-md-4"> |
149 | 149 | <figure class="lsx-team-avatar"> |
150 | - <?php echo wp_kses_post( $thumbnail ); ?> |
|
150 | + <?php echo wp_kses_post($thumbnail); ?> |
|
151 | 151 | </figure> |
152 | 152 | |
153 | - <?php if ( count( $links ) > 0 ) : ?> |
|
154 | - <span class="lsx-team-socials-header"><?php echo esc_html__( 'Follow', 'lsx-team' ) . ':'; ?></span> |
|
153 | + <?php if (count($links) > 0) : ?> |
|
154 | + <span class="lsx-team-socials-header"><?php echo esc_html__('Follow', 'lsx-team').':'; ?></span> |
|
155 | 155 | |
156 | 156 | <ul class="lsx-team-socials list-inline"> |
157 | - <?php foreach ( $links as $service => $link ) : ?> |
|
158 | - <li><a href="<?php echo esc_html( $link ); ?>" target="_blank" rel="nofollow noreferrer noopener"><i class="fa fa-<?php echo esc_html( $service ); ?>" aria-hidden="true"></i></a></li> |
|
157 | + <?php foreach ($links as $service => $link) : ?> |
|
158 | + <li><a href="<?php echo esc_html($link); ?>" target="_blank" rel="nofollow noreferrer noopener"><i class="fa fa-<?php echo esc_html($service); ?>" aria-hidden="true"></i></a></li> |
|
159 | 159 | <?php endforeach; ?> |
160 | 160 | </ul> |
161 | 161 | <?php endif; ?> |
@@ -163,39 +163,39 @@ discard block |
||
163 | 163 | |
164 | 164 | <div class="col-xs-12 col-sm-6 col-md-8"> |
165 | 165 | <h2 class="lsx-team-name"><?php the_title(); ?></h2> |
166 | - <h5 class="lsx-team-job-title"><?php echo esc_html( $job_title ); ?></h5> |
|
166 | + <h5 class="lsx-team-job-title"><?php echo esc_html($job_title); ?></h5> |
|
167 | 167 | <div class="lsx-team-content"><?php the_content(); ?></div> |
168 | 168 | |
169 | - <?php if ( ! empty( $email ) || ! empty( $phone ) || ! empty( $skype ) ) : ?> |
|
169 | + <?php if (!empty($email) || !empty($phone) || !empty($skype)) : ?> |
|
170 | 170 | <ul class="lsx-team-contact list-inline"> |
171 | - <?php if ( ! empty( $email ) ) : ?> |
|
172 | - <li><a href="mailto:<?php echo esc_attr( $email ); ?>"><i class="fa fa-envelope-o" aria-hidden="true"></i> <?php echo esc_attr( $email ); ?></a></li> |
|
171 | + <?php if (!empty($email)) : ?> |
|
172 | + <li><a href="mailto:<?php echo esc_attr($email); ?>"><i class="fa fa-envelope-o" aria-hidden="true"></i> <?php echo esc_attr($email); ?></a></li> |
|
173 | 173 | <?php endif; ?> |
174 | 174 | |
175 | - <?php if ( ! empty( $phone ) ) : ?> |
|
176 | - <li><a href="tel:<?php echo esc_attr( $phone_attr ); ?>"><i class="fa fa-phone" aria-hidden="true"></i> <?php echo esc_attr( $phone ); ?></a></li> |
|
175 | + <?php if (!empty($phone)) : ?> |
|
176 | + <li><a href="tel:<?php echo esc_attr($phone_attr); ?>"><i class="fa fa-phone" aria-hidden="true"></i> <?php echo esc_attr($phone); ?></a></li> |
|
177 | 177 | <?php endif; ?> |
178 | 178 | |
179 | - <?php if ( ! empty( $skype ) ) : ?> |
|
180 | - <li><i class="fa fa-skype" aria-hidden="true"></i> <?php echo esc_attr( $skype ); ?></li> |
|
179 | + <?php if (!empty($skype)) : ?> |
|
180 | + <li><i class="fa fa-skype" aria-hidden="true"></i> <?php echo esc_attr($skype); ?></li> |
|
181 | 181 | <?php endif; ?> |
182 | 182 | </ul> |
183 | 183 | <?php endif; ?> |
184 | 184 | </div> |
185 | 185 | </div> |
186 | 186 | |
187 | - <?php if ( count( $tabs ) > 0 ) : ?> |
|
187 | + <?php if (count($tabs) > 0) : ?> |
|
188 | 188 | <div class="entry-tabs"> |
189 | 189 | <ul class="nav nav-tabs"> |
190 | - <?php foreach ( $tabs as $i => $tab ) : ?> |
|
191 | - <li<?php if ( 0 === $i ) echo ' class="active"'; ?>><a data-toggle="tab" href="#<?php echo esc_attr( sanitize_title( $tab['title'] ) ); ?>"><?php echo esc_html( $tab['title'] ); ?></a></li> |
|
190 | + <?php foreach ($tabs as $i => $tab) : ?> |
|
191 | + <li<?php if (0 === $i) echo ' class="active"'; ?>><a data-toggle="tab" href="#<?php echo esc_attr(sanitize_title($tab['title'])); ?>"><?php echo esc_html($tab['title']); ?></a></li> |
|
192 | 192 | <?php endforeach; ?> |
193 | 193 | </ul> |
194 | 194 | |
195 | 195 | <div class="tab-content"> |
196 | - <?php foreach ( $tabs as $i => $tab ) : ?> |
|
197 | - <div id="<?php echo esc_attr( sanitize_title( $tab['title'] ) ); ?>" class="tab-pane fade<?php if ( 0 === $i ) echo ' in active'; ?>"> |
|
198 | - <?php echo do_shortcode( $tab['shortcode'] ); ?> |
|
196 | + <?php foreach ($tabs as $i => $tab) : ?> |
|
197 | + <div id="<?php echo esc_attr(sanitize_title($tab['title'])); ?>" class="tab-pane fade<?php if (0 === $i) echo ' in active'; ?>"> |
|
198 | + <?php echo do_shortcode($tab['shortcode']); ?> |
|
199 | 199 | </div> |
200 | 200 | <?php endforeach; ?> |
201 | 201 | </div> |
@@ -14,46 +14,46 @@ discard block |
||
14 | 14 | public function __construct() { |
15 | 15 | $this->load_classes(); |
16 | 16 | |
17 | - add_action( 'init', array( $this, 'post_type_setup' ) ); |
|
18 | - add_action( 'init', array( $this, 'taxonomy_setup' ) ); |
|
17 | + add_action('init', array($this, 'post_type_setup')); |
|
18 | + add_action('init', array($this, 'taxonomy_setup')); |
|
19 | 19 | |
20 | - add_action( 'cmb2_admin_init', array( $this, 'details_metabox' ) ); |
|
21 | - add_action( 'cmb2_admin_init', array( $this, 'projects_details_metabox' ) ); |
|
22 | - add_action( 'cmb2_admin_init', array( $this, 'services_details_metabox' ) ); |
|
23 | - add_action( 'cmb2_admin_init', array( $this, 'testimonials_details_metabox' ) ); |
|
20 | + add_action('cmb2_admin_init', array($this, 'details_metabox')); |
|
21 | + add_action('cmb2_admin_init', array($this, 'projects_details_metabox')); |
|
22 | + add_action('cmb2_admin_init', array($this, 'services_details_metabox')); |
|
23 | + add_action('cmb2_admin_init', array($this, 'testimonials_details_metabox')); |
|
24 | 24 | |
25 | - add_action( 'admin_enqueue_scripts', array( $this, 'assets' ) ); |
|
25 | + add_action('admin_enqueue_scripts', array($this, 'assets')); |
|
26 | 26 | |
27 | - add_filter( 'type_url_form_media', array( $this, 'change_attachment_field_button' ), 20, 1 ); |
|
28 | - add_filter( 'enter_title_here', array( $this, 'change_title_text' ) ); |
|
27 | + add_filter('type_url_form_media', array($this, 'change_attachment_field_button'), 20, 1); |
|
28 | + add_filter('enter_title_here', array($this, 'change_title_text')); |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
32 | 32 | * Loads the admin subclasses |
33 | 33 | */ |
34 | 34 | private function load_classes() { |
35 | - require_once LSX_TEAM_PATH . 'classes/admin/class-settings.php'; |
|
35 | + require_once LSX_TEAM_PATH.'classes/admin/class-settings.php'; |
|
36 | 36 | $this->settings = \lsx\team\classes\admin\Settings::get_instance(); |
37 | 37 | |
38 | - require_once LSX_TEAM_PATH . 'classes/admin/class-settings-theme.php'; |
|
38 | + require_once LSX_TEAM_PATH.'classes/admin/class-settings-theme.php'; |
|
39 | 39 | $this->settings_theme = \lsx\team\classes\admin\Settings_Theme::get_instance(); |
40 | 40 | } |
41 | 41 | |
42 | 42 | public function post_type_setup() { |
43 | 43 | $labels = array( |
44 | - 'name' => esc_html_x( 'Team Members', 'post type general name', 'lsx-team' ), |
|
45 | - 'singular_name' => esc_html_x( 'Team Member', 'post type singular name', 'lsx-team' ), |
|
46 | - 'add_new' => esc_html_x( 'Add New', 'post type general name', 'lsx-team' ), |
|
47 | - 'add_new_item' => esc_html__( 'Add New Team Member', 'lsx-team' ), |
|
48 | - 'edit_item' => esc_html__( 'Edit Team Member', 'lsx-team' ), |
|
49 | - 'new_item' => esc_html__( 'New Team Member', 'lsx-team' ), |
|
50 | - 'all_items' => esc_html__( 'All Team Members', 'lsx-team' ), |
|
51 | - 'view_item' => esc_html__( 'View Team Member', 'lsx-team' ), |
|
52 | - 'search_items' => esc_html__( 'Search Team Members', 'lsx-team' ), |
|
53 | - 'not_found' => esc_html__( 'No team members found', 'lsx-team' ), |
|
54 | - 'not_found_in_trash' => esc_html__( 'No team members found in Trash', 'lsx-team' ), |
|
44 | + 'name' => esc_html_x('Team Members', 'post type general name', 'lsx-team'), |
|
45 | + 'singular_name' => esc_html_x('Team Member', 'post type singular name', 'lsx-team'), |
|
46 | + 'add_new' => esc_html_x('Add New', 'post type general name', 'lsx-team'), |
|
47 | + 'add_new_item' => esc_html__('Add New Team Member', 'lsx-team'), |
|
48 | + 'edit_item' => esc_html__('Edit Team Member', 'lsx-team'), |
|
49 | + 'new_item' => esc_html__('New Team Member', 'lsx-team'), |
|
50 | + 'all_items' => esc_html__('All Team Members', 'lsx-team'), |
|
51 | + 'view_item' => esc_html__('View Team Member', 'lsx-team'), |
|
52 | + 'search_items' => esc_html__('Search Team Members', 'lsx-team'), |
|
53 | + 'not_found' => esc_html__('No team members found', 'lsx-team'), |
|
54 | + 'not_found_in_trash' => esc_html__('No team members found in Trash', 'lsx-team'), |
|
55 | 55 | 'parent_item_colon' => '', |
56 | - 'menu_name' => esc_html_x( 'Team Members', 'admin menu', 'lsx-team' ), |
|
56 | + 'menu_name' => esc_html_x('Team Members', 'admin menu', 'lsx-team'), |
|
57 | 57 | ); |
58 | 58 | |
59 | 59 | $args = array( |
@@ -82,22 +82,22 @@ discard block |
||
82 | 82 | 'rest_controller_class' => 'WP_REST_Posts_Controller', |
83 | 83 | ); |
84 | 84 | |
85 | - register_post_type( 'team', $args ); |
|
85 | + register_post_type('team', $args); |
|
86 | 86 | } |
87 | 87 | |
88 | 88 | public function taxonomy_setup() { |
89 | 89 | $labels = array( |
90 | - 'name' => esc_html_x( 'Roles', 'taxonomy general name', 'lsx-team' ), |
|
91 | - 'singular_name' => esc_html_x( 'Role', 'taxonomy singular name', 'lsx-team' ), |
|
92 | - 'search_items' => esc_html__( 'Search Roles', 'lsx-team' ), |
|
93 | - 'all_items' => esc_html__( 'All Roles', 'lsx-team' ), |
|
94 | - 'parent_item' => esc_html__( 'Parent Role', 'lsx-team' ), |
|
95 | - 'parent_item_colon' => esc_html__( 'Parent Role:', 'lsx-team' ), |
|
96 | - 'edit_item' => esc_html__( 'Edit Role', 'lsx-team' ), |
|
97 | - 'update_item' => esc_html__( 'Update Role', 'lsx-team' ), |
|
98 | - 'add_new_item' => esc_html__( 'Add New Role', 'lsx-team' ), |
|
99 | - 'new_item_name' => esc_html__( 'New Role Name', 'lsx-team' ), |
|
100 | - 'menu_name' => esc_html__( 'Roles', 'lsx-team' ), |
|
90 | + 'name' => esc_html_x('Roles', 'taxonomy general name', 'lsx-team'), |
|
91 | + 'singular_name' => esc_html_x('Role', 'taxonomy singular name', 'lsx-team'), |
|
92 | + 'search_items' => esc_html__('Search Roles', 'lsx-team'), |
|
93 | + 'all_items' => esc_html__('All Roles', 'lsx-team'), |
|
94 | + 'parent_item' => esc_html__('Parent Role', 'lsx-team'), |
|
95 | + 'parent_item_colon' => esc_html__('Parent Role:', 'lsx-team'), |
|
96 | + 'edit_item' => esc_html__('Edit Role', 'lsx-team'), |
|
97 | + 'update_item' => esc_html__('Update Role', 'lsx-team'), |
|
98 | + 'add_new_item' => esc_html__('Add New Role', 'lsx-team'), |
|
99 | + 'new_item_name' => esc_html__('New Role Name', 'lsx-team'), |
|
100 | + 'menu_name' => esc_html__('Roles', 'lsx-team'), |
|
101 | 101 | ); |
102 | 102 | |
103 | 103 | $args = array( |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | 'rest_controller_class' => 'WP_REST_Terms_Controller', |
115 | 115 | ); |
116 | 116 | |
117 | - register_taxonomy( 'team_role', array( 'team' ), $args ); |
|
117 | + register_taxonomy('team_role', array('team'), $args); |
|
118 | 118 | } |
119 | 119 | |
120 | 120 | /** |
@@ -124,16 +124,16 @@ discard block |
||
124 | 124 | |
125 | 125 | $prefix = 'lsx_'; |
126 | 126 | |
127 | - $users = get_transient( 'lsx_team_users' ); |
|
127 | + $users = get_transient('lsx_team_users'); |
|
128 | 128 | |
129 | - if ( false === $users || '' === $users ) { |
|
130 | - $users = get_users( array( |
|
131 | - 'role__in' => array( 'administrator', 'editor', 'author' ), |
|
132 | - ) ); |
|
133 | - set_transient( 'lsx_team_users', $users, 5 * 60 ); |
|
129 | + if (false === $users || '' === $users) { |
|
130 | + $users = get_users(array( |
|
131 | + 'role__in' => array('administrator', 'editor', 'author'), |
|
132 | + )); |
|
133 | + set_transient('lsx_team_users', $users, 5 * 60); |
|
134 | 134 | } |
135 | 135 | |
136 | - foreach ( $users as $user ) { |
|
136 | + foreach ($users as $user) { |
|
137 | 137 | $user_array[] = array( |
138 | 138 | 'name' => $user->nice_name, |
139 | 139 | 'value' => $user->ID, |
@@ -142,8 +142,8 @@ discard block |
||
142 | 142 | |
143 | 143 | $cmb = new_cmb2_box( |
144 | 144 | array( |
145 | - 'id' => $prefix . '_team', |
|
146 | - 'title' => esc_html__( 'Team Member Details', 'lsx-team' ), |
|
145 | + 'id' => $prefix.'_team', |
|
146 | + 'title' => esc_html__('Team Member Details', 'lsx-team'), |
|
147 | 147 | 'object_types' => 'team', |
148 | 148 | 'context' => 'normal', |
149 | 149 | 'priority' => 'low', |
@@ -153,8 +153,8 @@ discard block |
||
153 | 153 | |
154 | 154 | $cmb->add_field( |
155 | 155 | array( |
156 | - 'name' => esc_html__( 'Featured:', 'lsx-team' ), |
|
157 | - 'id' => $prefix . 'featured', |
|
156 | + 'name' => esc_html__('Featured:', 'lsx-team'), |
|
157 | + 'id' => $prefix.'featured', |
|
158 | 158 | 'type' => 'checkbox', |
159 | 159 | 'value' => 1, |
160 | 160 | 'default' => 0, |
@@ -164,8 +164,8 @@ discard block |
||
164 | 164 | |
165 | 165 | $cmb->add_field( |
166 | 166 | array( |
167 | - 'name' => esc_html__( 'Site User', 'lsx-team' ), |
|
168 | - 'id' => $prefix . 'site_user', |
|
167 | + 'name' => esc_html__('Site User', 'lsx-team'), |
|
168 | + 'id' => $prefix.'site_user', |
|
169 | 169 | 'allow_none' => true, |
170 | 170 | 'type' => 'select', |
171 | 171 | 'options' => $user_array, |
@@ -175,8 +175,8 @@ discard block |
||
175 | 175 | |
176 | 176 | $cmb->add_field( |
177 | 177 | array( |
178 | - 'name' => esc_html__( 'Job Title:', 'lsx-team' ), |
|
179 | - 'id' => $prefix . 'job_title', |
|
178 | + 'name' => esc_html__('Job Title:', 'lsx-team'), |
|
179 | + 'id' => $prefix.'job_title', |
|
180 | 180 | 'type' => 'text', |
181 | 181 | 'show_in_rest' => true, |
182 | 182 | ) |
@@ -184,8 +184,8 @@ discard block |
||
184 | 184 | |
185 | 185 | $cmb->add_field( |
186 | 186 | array( |
187 | - 'name' => esc_html__( 'Location:', 'lsx-team' ), |
|
188 | - 'id' => $prefix . 'location', |
|
187 | + 'name' => esc_html__('Location:', 'lsx-team'), |
|
188 | + 'id' => $prefix.'location', |
|
189 | 189 | 'type' => 'text', |
190 | 190 | 'show_in_rest' => true, |
191 | 191 | ) |
@@ -193,8 +193,8 @@ discard block |
||
193 | 193 | |
194 | 194 | $cmb->add_field( |
195 | 195 | array( |
196 | - 'name' => esc_html__( 'Contact Email Address:', 'lsx-team' ), |
|
197 | - 'id' => $prefix . 'email_contact', |
|
196 | + 'name' => esc_html__('Contact Email Address:', 'lsx-team'), |
|
197 | + 'id' => $prefix.'email_contact', |
|
198 | 198 | 'type' => 'text', |
199 | 199 | 'show_in_rest' => true, |
200 | 200 | ) |
@@ -202,9 +202,9 @@ discard block |
||
202 | 202 | |
203 | 203 | $cmb->add_field( |
204 | 204 | array( |
205 | - 'name' => esc_html__( 'Gravatar Email Address:', 'lsx-team' ), |
|
206 | - 'desc' => esc_html__( 'Used for Gravatar if a featured image is not set', 'lsx-team' ), |
|
207 | - 'id' => $prefix . 'email_gravatar', |
|
205 | + 'name' => esc_html__('Gravatar Email Address:', 'lsx-team'), |
|
206 | + 'desc' => esc_html__('Used for Gravatar if a featured image is not set', 'lsx-team'), |
|
207 | + 'id' => $prefix.'email_gravatar', |
|
208 | 208 | 'type' => 'text', |
209 | 209 | 'show_in_rest' => true, |
210 | 210 | ) |
@@ -212,8 +212,8 @@ discard block |
||
212 | 212 | |
213 | 213 | $cmb->add_field( |
214 | 214 | array( |
215 | - 'name' => esc_html__( 'Telephone Number:', 'lsx-team' ), |
|
216 | - 'id' => $prefix . 'tel', |
|
215 | + 'name' => esc_html__('Telephone Number:', 'lsx-team'), |
|
216 | + 'id' => $prefix.'tel', |
|
217 | 217 | 'type' => 'text', |
218 | 218 | 'show_in_rest' => true, |
219 | 219 | ) |
@@ -221,8 +221,8 @@ discard block |
||
221 | 221 | |
222 | 222 | $cmb->add_field( |
223 | 223 | array( |
224 | - 'name' => esc_html__( 'Skype Name:', 'lsx-team' ), |
|
225 | - 'id' => $prefix . 'skype', |
|
224 | + 'name' => esc_html__('Skype Name:', 'lsx-team'), |
|
225 | + 'id' => $prefix.'skype', |
|
226 | 226 | 'type' => 'text', |
227 | 227 | 'show_in_rest' => true, |
228 | 228 | ) |
@@ -230,8 +230,8 @@ discard block |
||
230 | 230 | |
231 | 231 | $cmb->add_field( |
232 | 232 | array( |
233 | - 'name' => esc_html__( 'Facebook URL', 'lsx-team' ), |
|
234 | - 'id' => $prefix . 'facebook', |
|
233 | + 'name' => esc_html__('Facebook URL', 'lsx-team'), |
|
234 | + 'id' => $prefix.'facebook', |
|
235 | 235 | 'type' => 'text_url', |
236 | 236 | 'show_in_rest' => true, |
237 | 237 | ) |
@@ -239,8 +239,8 @@ discard block |
||
239 | 239 | |
240 | 240 | $cmb->add_field( |
241 | 241 | array( |
242 | - 'name' => esc_html__( 'Twitter URL', 'lsx-team' ), |
|
243 | - 'id' => $prefix . 'twitter', |
|
242 | + 'name' => esc_html__('Twitter URL', 'lsx-team'), |
|
243 | + 'id' => $prefix.'twitter', |
|
244 | 244 | 'type' => 'text_url', |
245 | 245 | 'show_in_rest' => true, |
246 | 246 | ) |
@@ -248,8 +248,8 @@ discard block |
||
248 | 248 | |
249 | 249 | $cmb->add_field( |
250 | 250 | array( |
251 | - 'name' => esc_html__( 'LinkedIn URL', 'lsx-team' ), |
|
252 | - 'id' => $prefix . 'linkedin', |
|
251 | + 'name' => esc_html__('LinkedIn URL', 'lsx-team'), |
|
252 | + 'id' => $prefix.'linkedin', |
|
253 | 253 | 'type' => 'text_url', |
254 | 254 | 'show_in_rest' => true, |
255 | 255 | ) |
@@ -257,8 +257,8 @@ discard block |
||
257 | 257 | |
258 | 258 | $cmb->add_field( |
259 | 259 | array( |
260 | - 'name' => esc_html__( 'Github URL', 'lsx-team' ), |
|
261 | - 'id' => $prefix . 'github', |
|
260 | + 'name' => esc_html__('Github URL', 'lsx-team'), |
|
261 | + 'id' => $prefix.'github', |
|
262 | 262 | 'type' => 'text_url', |
263 | 263 | 'show_in_rest' => true, |
264 | 264 | ) |
@@ -266,8 +266,8 @@ discard block |
||
266 | 266 | |
267 | 267 | $cmb->add_field( |
268 | 268 | array( |
269 | - 'name' => esc_html__( 'WordPress URL', 'lsx-team' ), |
|
270 | - 'id' => $prefix . 'wordpress', |
|
269 | + 'name' => esc_html__('WordPress URL', 'lsx-team'), |
|
270 | + 'id' => $prefix.'wordpress', |
|
271 | 271 | 'type' => 'text_url', |
272 | 272 | 'show_in_rest' => true, |
273 | 273 | ) |
@@ -279,29 +279,29 @@ discard block |
||
279 | 279 | */ |
280 | 280 | public function projects_details_metabox() { |
281 | 281 | |
282 | - if ( class_exists( 'LSX_Projects' ) ) { |
|
282 | + if (class_exists('LSX_Projects')) { |
|
283 | 283 | |
284 | 284 | $prefix = 'lsx_'; |
285 | 285 | |
286 | 286 | $cmb = new_cmb2_box( |
287 | 287 | array( |
288 | - 'id' => $prefix . '_team', |
|
288 | + 'id' => $prefix.'_team', |
|
289 | 289 | 'context' => 'normal', |
290 | 290 | 'priority' => 'low', |
291 | 291 | 'show_names' => true, |
292 | - 'object_types' => array( 'team' ), |
|
292 | + 'object_types' => array('team'), |
|
293 | 293 | ) |
294 | 294 | ); |
295 | 295 | $cmb->add_field( |
296 | 296 | array( |
297 | - 'name' => __( 'Projects:', 'lsx-team' ), |
|
297 | + 'name' => __('Projects:', 'lsx-team'), |
|
298 | 298 | 'id' => 'project_to_team', |
299 | 299 | 'type' => 'post_search_ajax', |
300 | 300 | 'limit' => 15, |
301 | 301 | 'sortable' => true, |
302 | 302 | 'query_args' => array( |
303 | - 'post_type' => array( 'project' ), |
|
304 | - 'post_status' => array( 'publish' ), |
|
303 | + 'post_type' => array('project'), |
|
304 | + 'post_status' => array('publish'), |
|
305 | 305 | 'posts_per_page' => -1, |
306 | 306 | ), |
307 | 307 | ) |
@@ -314,29 +314,29 @@ discard block |
||
314 | 314 | */ |
315 | 315 | public function services_details_metabox() { |
316 | 316 | |
317 | - if ( class_exists( 'LSX_Services' ) ) { |
|
317 | + if (class_exists('LSX_Services')) { |
|
318 | 318 | |
319 | 319 | $prefix = 'lsx_'; |
320 | 320 | |
321 | 321 | $cmb = new_cmb2_box( |
322 | 322 | array( |
323 | - 'id' => $prefix . '_team', |
|
323 | + 'id' => $prefix.'_team', |
|
324 | 324 | 'context' => 'normal', |
325 | 325 | 'priority' => 'low', |
326 | 326 | 'show_names' => true, |
327 | - 'object_types' => array( 'team' ), |
|
327 | + 'object_types' => array('team'), |
|
328 | 328 | ) |
329 | 329 | ); |
330 | 330 | $cmb->add_field( |
331 | 331 | array( |
332 | - 'name' => __( 'Services:', 'lsx-team' ), |
|
332 | + 'name' => __('Services:', 'lsx-team'), |
|
333 | 333 | 'id' => 'service_to_team', |
334 | 334 | 'type' => 'post_search_ajax', |
335 | 335 | 'limit' => 15, |
336 | 336 | 'sortable' => true, |
337 | 337 | 'query_args' => array( |
338 | - 'post_type' => array( 'service' ), |
|
339 | - 'post_status' => array( 'publish' ), |
|
338 | + 'post_type' => array('service'), |
|
339 | + 'post_status' => array('publish'), |
|
340 | 340 | 'posts_per_page' => -1, |
341 | 341 | ), |
342 | 342 | ) |
@@ -349,29 +349,29 @@ discard block |
||
349 | 349 | */ |
350 | 350 | public function testimonials_details_metabox() { |
351 | 351 | |
352 | - if ( class_exists( 'LSX_Testimonials' ) ) { |
|
352 | + if (class_exists('LSX_Testimonials')) { |
|
353 | 353 | |
354 | 354 | $prefix = 'lsx_'; |
355 | 355 | |
356 | 356 | $cmb = new_cmb2_box( |
357 | 357 | array( |
358 | - 'id' => $prefix . '_team', |
|
358 | + 'id' => $prefix.'_team', |
|
359 | 359 | 'context' => 'normal', |
360 | 360 | 'priority' => 'low', |
361 | 361 | 'show_names' => true, |
362 | - 'object_types' => array( 'team' ), |
|
362 | + 'object_types' => array('team'), |
|
363 | 363 | ) |
364 | 364 | ); |
365 | 365 | $cmb->add_field( |
366 | 366 | array( |
367 | - 'name' => __( 'Testimonials:', 'lsx-team' ), |
|
367 | + 'name' => __('Testimonials:', 'lsx-team'), |
|
368 | 368 | 'id' => 'testimonial_to_team', |
369 | 369 | 'type' => 'post_search_ajax', |
370 | 370 | 'limit' => 15, |
371 | 371 | 'sortable' => true, |
372 | 372 | 'query_args' => array( |
373 | - 'post_type' => array( 'testimonial' ), |
|
374 | - 'post_status' => array( 'publish' ), |
|
373 | + 'post_type' => array('testimonial'), |
|
374 | + 'post_status' => array('publish'), |
|
375 | 375 | 'posts_per_page' => -1, |
376 | 376 | ), |
377 | 377 | ) |
@@ -383,7 +383,7 @@ discard block |
||
383 | 383 | /** |
384 | 384 | * Sets up the "post relations". |
385 | 385 | */ |
386 | - public function post_relations( $post_id, $field, $value ) { |
|
386 | + public function post_relations($post_id, $field, $value) { |
|
387 | 387 | $connections = array( |
388 | 388 | 'team_to_testimonial', |
389 | 389 | 'testimonial_to_team', |
@@ -395,31 +395,31 @@ discard block |
||
395 | 395 | 'service_to_team', |
396 | 396 | ); |
397 | 397 | |
398 | - if ( in_array( $field['id'], $connections ) ) { |
|
399 | - $this->save_related_post( $connections, $post_id, $field, $value ); |
|
398 | + if (in_array($field['id'], $connections)) { |
|
399 | + $this->save_related_post($connections, $post_id, $field, $value); |
|
400 | 400 | } |
401 | 401 | } |
402 | 402 | |
403 | 403 | /** |
404 | 404 | * Save the reverse post relation. |
405 | 405 | */ |
406 | - public function save_related_post( $connections, $post_id, $field, $value ) { |
|
407 | - $ids = explode( '_to_', $field['id'] ); |
|
408 | - $relation = $ids[1] . '_to_' . $ids[0]; |
|
406 | + public function save_related_post($connections, $post_id, $field, $value) { |
|
407 | + $ids = explode('_to_', $field['id']); |
|
408 | + $relation = $ids[1].'_to_'.$ids[0]; |
|
409 | 409 | |
410 | - if ( in_array( $relation, $connections ) ) { |
|
411 | - $previous_values = get_post_meta( $post_id, $field['id'], false ); |
|
410 | + if (in_array($relation, $connections)) { |
|
411 | + $previous_values = get_post_meta($post_id, $field['id'], false); |
|
412 | 412 | |
413 | - if ( ! empty( $previous_values ) ) { |
|
414 | - foreach ( $previous_values as $v ) { |
|
415 | - delete_post_meta( $v, $relation, $post_id ); |
|
413 | + if (!empty($previous_values)) { |
|
414 | + foreach ($previous_values as $v) { |
|
415 | + delete_post_meta($v, $relation, $post_id); |
|
416 | 416 | } |
417 | 417 | } |
418 | 418 | |
419 | - if ( is_array( $value ) ) { |
|
420 | - foreach ( $value as $v ) { |
|
421 | - if ( ! empty( $v ) ) { |
|
422 | - add_post_meta( $v, $relation, $post_id ); |
|
419 | + if (is_array($value)) { |
|
420 | + foreach ($value as $v) { |
|
421 | + if (!empty($v)) { |
|
422 | + add_post_meta($v, $relation, $post_id); |
|
423 | 423 | } |
424 | 424 | } |
425 | 425 | } |
@@ -428,30 +428,30 @@ discard block |
||
428 | 428 | |
429 | 429 | public function assets() { |
430 | 430 | //wp_enqueue_media(); |
431 | - wp_enqueue_script( 'media-upload' ); |
|
432 | - wp_enqueue_script( 'thickbox' ); |
|
433 | - wp_enqueue_style( 'thickbox' ); |
|
431 | + wp_enqueue_script('media-upload'); |
|
432 | + wp_enqueue_script('thickbox'); |
|
433 | + wp_enqueue_style('thickbox'); |
|
434 | 434 | |
435 | - wp_enqueue_script( 'lsx-team-admin', LSX_TEAM_URL . 'assets/js/lsx-team-admin.min.js', array( 'jquery' ), LSX_TEAM_VER ); |
|
436 | - wp_enqueue_style( 'lsx-team-admin', LSX_TEAM_URL . 'assets/css/lsx-team-admin.css', array(), LSX_TEAM_VER ); |
|
435 | + wp_enqueue_script('lsx-team-admin', LSX_TEAM_URL.'assets/js/lsx-team-admin.min.js', array('jquery'), LSX_TEAM_VER); |
|
436 | + wp_enqueue_style('lsx-team-admin', LSX_TEAM_URL.'assets/css/lsx-team-admin.css', array(), LSX_TEAM_VER); |
|
437 | 437 | } |
438 | 438 | |
439 | 439 | /** |
440 | 440 | * Change the "Insert into Post" button text when media modal is used for feature images |
441 | 441 | */ |
442 | - public function change_attachment_field_button( $html ) { |
|
443 | - if ( isset( $_GET['feature_image_text_button'] ) ) { |
|
444 | - $html = str_replace( 'value="Insert into Post"', sprintf( 'value="%s"', esc_html__( 'Select featured image', 'lsx-team' ) ), $html ); |
|
442 | + public function change_attachment_field_button($html) { |
|
443 | + if (isset($_GET['feature_image_text_button'])) { |
|
444 | + $html = str_replace('value="Insert into Post"', sprintf('value="%s"', esc_html__('Select featured image', 'lsx-team')), $html); |
|
445 | 445 | } |
446 | 446 | |
447 | 447 | return $html; |
448 | 448 | } |
449 | 449 | |
450 | - public function change_title_text( $title ) { |
|
450 | + public function change_title_text($title) { |
|
451 | 451 | $screen = get_current_screen(); |
452 | 452 | |
453 | - if ( 'team' === $screen->post_type ) { |
|
454 | - $title = esc_attr__( 'Enter team member name', 'lsx-team' ); |
|
453 | + if ('team' === $screen->post_type) { |
|
454 | + $title = esc_attr__('Enter team member name', 'lsx-team'); |
|
455 | 455 | } |
456 | 456 | |
457 | 457 | return $title; |