Total Complexity | 208 |
Total Lines | 1118 |
Duplicated Lines | 0 % |
Changes | 5 | ||
Bugs | 1 | Features | 0 |
Complex classes like Frontend often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Frontend, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
10 | class Frontend { |
||
11 | |||
12 | /** |
||
13 | * Holds class instance |
||
14 | * |
||
15 | * @since 1.0.0 |
||
16 | * |
||
17 | * @var object \lsx\search\classes\Frontend() |
||
18 | */ |
||
19 | protected static $instance = null; |
||
20 | |||
21 | public $options = false; |
||
22 | |||
23 | public $tabs = false; |
||
24 | |||
25 | public $facet_data = false; |
||
26 | |||
27 | /** |
||
28 | * Determine weather or not search is enabled for this page. |
||
29 | * |
||
30 | * @var boolean |
||
31 | */ |
||
32 | public $search_enabled = false; |
||
33 | |||
34 | public $search_core_suffix = false; |
||
35 | |||
36 | public $search_prefix = false; |
||
37 | |||
38 | /** |
||
39 | * Holds the post types enabled |
||
40 | * |
||
41 | * @var array |
||
42 | */ |
||
43 | public $post_types = array(); |
||
44 | |||
45 | /** |
||
46 | * Holds the taxonomies enabled for search |
||
47 | * |
||
48 | * @var array |
||
49 | */ |
||
50 | public $taxonomies = array(); |
||
51 | |||
52 | /** |
||
53 | * If the current search page has posts or not |
||
54 | * |
||
55 | * @var boolean |
||
56 | */ |
||
57 | public $has_posts = false; |
||
58 | |||
59 | /** |
||
60 | * If we are using the CMB2 options or not. |
||
61 | * |
||
62 | * @var boolean |
||
63 | */ |
||
64 | public $new_options = false; |
||
65 | |||
66 | /** |
||
67 | * Construct method. |
||
68 | */ |
||
69 | public function __construct() { |
||
|
|||
70 | $this->options = \lsx\search\includes\get_options(); |
||
71 | $this->load_classes(); |
||
72 | |||
73 | add_filter( 'wpseo_json_ld_search_url', array( $this, 'change_json_ld_search_url' ), 10, 1 ); |
||
74 | add_action( 'wp', array( $this, 'set_vars' ), 21 ); |
||
75 | add_action( 'wp', array( $this, 'set_facetwp_vars' ), 22 ); |
||
76 | add_action( 'wp', array( $this, 'core' ), 23 ); |
||
77 | add_action( 'lsx_body_top', array( $this, 'check_for_results' ) ); |
||
78 | |||
79 | add_filter( 'pre_get_posts', array( $this, 'ignore_sticky_search' ) ); |
||
80 | add_action( 'pre_get_posts', array( $this, 'filter_post_types' ) ); |
||
81 | |||
82 | add_filter( 'lsx_search_post_types', array( $this, 'register_post_types' ) ); |
||
83 | add_filter( 'lsx_search_taxonomies', array( $this, 'register_taxonomies' ) ); |
||
84 | add_filter( 'lsx_search_post_types_plural', array( $this, 'register_post_type_tabs' ) ); |
||
85 | add_filter( 'facetwp_sort_options', array( $this, 'facetwp_sort_options' ), 10, 2 ); |
||
86 | add_filter( 'wp_kses_allowed_html', array( $this, 'kses_allowed_html' ), 20, 2 ); |
||
87 | add_filter( 'get_search_query', array( $this, 'get_search_query' ) ); |
||
88 | |||
89 | // Redirects. |
||
90 | add_action( 'template_redirect', array( $this, 'pretty_search_redirect' ) ); |
||
91 | add_filter( 'pre_get_posts', array( $this, 'pretty_search_parse_query' ) ); |
||
92 | |||
93 | add_action( 'lsx_search_sidebar_top', array( $this, 'search_sidebar_top' ) ); |
||
94 | add_filter( 'facetwp_facet_html', array( $this, 'search_facet_html' ), 10, 2 ); |
||
95 | } |
||
96 | |||
97 | /** |
||
98 | * Return an instance of this class. |
||
99 | * |
||
100 | * @since 1.0.0 |
||
101 | * |
||
102 | * @return object \lsx\member_directory\search\Frontend() A single instance of this class. |
||
103 | */ |
||
104 | public static function get_instance() { |
||
105 | // If the single instance hasn't been set, set it now. |
||
106 | if ( null === self::$instance ) { |
||
107 | self::$instance = new self(); |
||
108 | } |
||
109 | return self::$instance; |
||
110 | } |
||
111 | |||
112 | /** |
||
113 | * Loads the variable classes and the static classes. |
||
114 | */ |
||
115 | private function load_classes() { |
||
116 | require_once LSX_SEARCH_PATH . 'classes/frontend/class-layout.php'; |
||
117 | $this->layout = frontend\Layout::get_instance(); |
||
118 | } |
||
119 | |||
120 | /** |
||
121 | * Check all settings. |
||
122 | */ |
||
123 | public function set_vars() { |
||
124 | $post_type = ''; |
||
125 | |||
126 | $this->post_types = apply_filters( 'lsx_search_post_types', array() ); |
||
127 | $this->taxonomies = apply_filters( 'lsx_search_taxonomies', array() ); |
||
128 | $this->tabs = apply_filters( 'lsx_search_post_types_plural', array() ); |
||
129 | $this->options = apply_filters( 'lsx_search_options', $this->options ); |
||
130 | $this->post_types = get_post_types(); |
||
131 | $this->post_type_slugs = array( |
||
132 | 'post' => 'posts', |
||
133 | 'project' => 'projects', |
||
134 | 'service' => 'services', |
||
135 | 'team' => 'team', |
||
136 | 'testimonial' => 'testimonials', |
||
137 | 'video' => 'videos', |
||
138 | 'product' => 'products', |
||
139 | ); |
||
140 | $this->set_search_prefix(); |
||
141 | $this->get_cmb2_options(); |
||
142 | $this->search_enabled = apply_filters( 'lsx_search_enabled', $this->is_search_enabled(), $this ); |
||
143 | $this->search_prefix = apply_filters( 'lsx_search_prefix', $this->search_prefix, $this ); |
||
144 | } |
||
145 | |||
146 | private function get_cmb2_options() { |
||
147 | $cmb2_options = get_option( 'lsx-search-settings' ); |
||
148 | if ( false !== $cmb2_options && ! empty( $cmb2_options ) ) { |
||
149 | $this->set_search_prefix( true ); |
||
150 | $this->options['display'] = $cmb2_options; |
||
151 | foreach ( $this->options['display'] as $option_key => $option_value ) { |
||
152 | if ( is_array( $option_value ) && ! empty( $option_value ) ) { |
||
153 | $new_values = array(); |
||
154 | foreach ( $option_value as $empty_key => $key_value ) { |
||
155 | $new_values[ $key_value ] = 'on'; |
||
156 | } |
||
157 | $this->options['display'][ $option_key ] = $new_values; |
||
158 | } |
||
159 | } |
||
160 | $this->new_options = true; |
||
161 | $this->disable_to_search_actions(); |
||
162 | } |
||
163 | } |
||
164 | |||
165 | private function disable_to_search_actions() { |
||
207 | } |
||
208 | } |
||
209 | } |
||
210 | |||
211 | /** |
||
212 | * Returns if the search is enabled. |
||
213 | * |
||
214 | * @return boolean |
||
215 | */ |
||
216 | public function is_search_enabled() { |
||
217 | $search_enabled = false; |
||
218 | |||
219 | if ( false === $this->new_options ) { |
||
220 | if ( isset( $this->options['display'][ $this->search_prefix . '_enable_' . $this->search_core_suffix ] ) && ( ! empty( $this->options ) ) && 'on' == $this->options['display'][ $this->search_prefix . '_enable_' . $this->search_core_suffix ] ) { |
||
221 | $search_enabled = true; |
||
222 | } |
||
223 | } else { |
||
224 | $enable_prefix = $this->search_prefix; |
||
225 | if ( ! empty( $this->options ) && isset( $this->options['display'] ) && isset( $this->options['display'][ $enable_prefix . '_enable' ] ) && 'on' === $this->options['display'][ $enable_prefix . '_enable' ] ) { |
||
226 | $search_enabled = true; |
||
227 | } |
||
228 | } |
||
229 | |||
230 | // These are specific plugin exclusions. |
||
231 | if ( is_tax( array( 'wcpv_product_vendors' ) ) ) { |
||
232 | $search_enabled = false; |
||
233 | } |
||
234 | return $search_enabled; |
||
235 | } |
||
236 | |||
237 | /** |
||
238 | * Sets the search prefix. |
||
239 | * |
||
240 | * @return void |
||
241 | */ |
||
242 | private function set_search_prefix( $new_prefixes = false ) { |
||
280 | } |
||
281 | } |
||
282 | } |
||
283 | |||
284 | /** |
||
285 | * Sets the FacetWP variables. |
||
286 | */ |
||
287 | public function set_facetwp_vars() { |
||
288 | |||
289 | if ( class_exists( 'FacetWP' ) ) { |
||
290 | $facet_data = FWP()->helper->get_facets(); |
||
291 | } |
||
292 | |||
293 | $this->facet_data = array(); |
||
294 | |||
295 | $this->facet_data['search_form'] = array( |
||
296 | 'name' => 'search_form', |
||
297 | 'label' => esc_html__( 'Search Form', 'lsx-search' ), |
||
298 | ); |
||
299 | |||
300 | if ( ! empty( $facet_data ) && is_array( $facet_data ) ) { |
||
301 | foreach ( $facet_data as $facet ) { |
||
302 | $this->facet_data[ $facet['name'] ] = $facet; |
||
303 | } |
||
304 | } |
||
305 | } |
||
306 | |||
307 | /** |
||
308 | * Check all settings. |
||
309 | */ |
||
310 | public function core() { |
||
311 | |||
312 | if ( true === $this->search_enabled ) { |
||
313 | add_action( 'wp_enqueue_scripts', array( $this, 'assets' ), 999 ); |
||
314 | |||
315 | add_filter( 'lsx_layout', array( $this, 'lsx_layout' ), 20, 1 ); |
||
316 | add_filter( 'lsx_layout_selector', array( $this, 'lsx_layout_selector' ), 10, 4 ); |
||
317 | add_filter( 'lsx_slot_class', array( $this, 'change_slot_column_class' ) ); |
||
318 | add_action( 'lsx_entry_top', array( $this, 'add_label_to_title' ) ); |
||
319 | add_filter( 'body_class', array( $this, 'body_class' ), 10 ); |
||
320 | |||
321 | add_filter( 'lsx_blog_customizer_top_of_blog_action', array( $this, 'top_of_blog_action' ), 10, 1 ); |
||
322 | add_filter( 'lsx_blog_customizer_blog_description_class', array( $this, 'blog_description_class' ), 10, 1 ); |
||
323 | |||
324 | if ( class_exists( 'LSX_Videos' ) ) { |
||
325 | global $lsx_videos_frontend; |
||
326 | remove_action( 'lsx_content_top', array( $lsx_videos_frontend, 'categories_tabs' ), 15 ); |
||
327 | } |
||
328 | |||
329 | add_filter( 'lsx_paging_nav_disable', '__return_true' ); |
||
330 | add_action( 'lsx_content_top', array( $this, 'facet_top_bar' ) ); |
||
331 | add_action( 'lsx_content_top', array( $this, 'facetwp_tempate_open' ) ); |
||
332 | add_action( 'lsx_content_bottom', array( $this, 'facetwp_tempate_close' ) ); |
||
333 | add_action( 'lsx_content_bottom', array( $this, 'facet_bottom_bar' ) ); |
||
334 | |||
335 | if ( ! empty( $this->options['display'][ $this->search_prefix . '_layout' ] ) && '1c' !== $this->options['display'][ $this->search_prefix . '_layout' ] ) { |
||
336 | add_filter( 'lsx_sidebar_enable', array( $this, 'lsx_sidebar_enable' ), 10, 1 ); |
||
337 | } |
||
338 | |||
339 | add_action( 'lsx_content_wrap_before', array( $this, 'search_sidebar' ), 150 ); |
||
340 | |||
341 | if ( class_exists( 'WooCommerce' ) && ( is_shop() || is_product_category() || is_product_tag() ) ) { |
||
342 | remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description' ); |
||
343 | remove_action( 'woocommerce_archive_description', 'woocommerce_product_archive_description' ); |
||
344 | add_filter( 'woocommerce_show_page_title', '__return_false' ); |
||
345 | |||
346 | add_filter( 'loop_shop_columns', function() { |
||
347 | return 3; |
||
348 | } ); |
||
349 | |||
350 | // Actions added by LSX theme |
||
351 | remove_action( 'lsx_content_wrap_before', 'lsx_global_header' ); |
||
352 | add_action( 'lsx_content_wrap_before', array( $this, 'wc_archive_header' ), 140 ); |
||
353 | |||
354 | // Actions added be LSX theme / woocommerce.php file |
||
355 | remove_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9 ); |
||
356 | remove_action( 'woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10 ); |
||
357 | remove_action( 'woocommerce_after_shop_loop', 'woocommerce_result_count', 20 ); |
||
358 | remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 30 ); |
||
359 | remove_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 ); |
||
360 | |||
361 | // Actions added be LSX theme / woocommerce.php file |
||
362 | remove_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9 ); |
||
363 | remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10 ); |
||
364 | remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 ); |
||
365 | remove_action( 'woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30 ); |
||
366 | remove_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 ); |
||
367 | } |
||
368 | } |
||
369 | } |
||
370 | |||
371 | /** |
||
372 | * Adds a search class to the body to allow the styling of the sidebars etc. |
||
373 | * |
||
374 | * @param array $classes The classes. |
||
375 | * @return array $classes The classes. |
||
376 | */ |
||
377 | public function body_class( $classes ) { |
||
378 | $classes[] = 'lsx-search-enabled'; |
||
379 | return $classes; |
||
380 | } |
||
381 | |||
382 | /** |
||
383 | * Moves the blog description to above the content columns. |
||
384 | * |
||
385 | * @param string $action |
||
386 | * @return string $action |
||
387 | */ |
||
388 | public function top_of_blog_action( $action = '' ) { |
||
389 | $action = 'lsx_content_wrap_before'; |
||
390 | return $action; |
||
391 | } |
||
392 | |||
393 | /** |
||
394 | * Adds a class to the blog description. |
||
395 | * |
||
396 | * @param string $action |
||
397 | * @return string $action |
||
398 | */ |
||
399 | public function blog_description_class( $class = '' ) { |
||
400 | $class .= ' col-md-12 search-description'; |
||
401 | return $class; |
||
402 | } |
||
403 | |||
404 | /** |
||
405 | * Check the $wp_query global to see if there are posts in the current query. |
||
406 | * |
||
407 | * @return void |
||
408 | */ |
||
409 | public function check_for_results() { |
||
410 | if ( true === $this->search_enabled ) { |
||
411 | global $wp_query; |
||
412 | if ( empty( $wp_query->posts ) ) { |
||
413 | $this->has_posts = false; |
||
414 | remove_action( 'lsx_content_top', array( $this, 'facet_top_bar' ) ); |
||
415 | remove_action( 'lsx_content_bottom', array( $this, 'facet_bottom_bar' ) ); |
||
416 | remove_action( 'lsx_content_wrap_before', array( $this, 'search_sidebar' ), 150 ); |
||
417 | } else { |
||
418 | $this->has_posts = true; |
||
419 | } |
||
420 | } |
||
421 | } |
||
422 | |||
423 | /** |
||
424 | * Filter the post types. |
||
425 | */ |
||
426 | public function filter_post_types( $query ) { |
||
427 | if ( ! is_admin() && $query->is_main_query() && $query->is_search() ) { |
||
428 | if ( ! empty( $this->options ) && ! empty( $this->options['display']['search_enable_core'] ) ) { |
||
429 | if ( ! empty( $this->options['general']['search_post_types'] ) && is_array( $this->options['general']['search_post_types'] ) ) { |
||
430 | $post_types = array_keys( $this->options['general']['search_post_types'] ); |
||
431 | $query->set( 'post_type', $post_types ); |
||
432 | } |
||
433 | } |
||
434 | } |
||
435 | } |
||
436 | |||
437 | /** |
||
438 | * Sets post types with active search options. |
||
439 | */ |
||
440 | public function register_post_types( $post_types ) { |
||
441 | $post_types = array( 'post', 'project', 'service', 'team', 'testimonial', 'video', 'product' ); |
||
442 | return $post_types; |
||
443 | } |
||
444 | |||
445 | /** |
||
446 | * Sets taxonomies with active search options. |
||
447 | */ |
||
448 | public function register_taxonomies( $taxonomies ) { |
||
449 | $taxonomies = array( 'category', 'post_tag', 'project-group', 'service-group', 'team_role', 'video-category', 'product_cat', 'product_tag' ); |
||
450 | return $taxonomies; |
||
451 | } |
||
452 | |||
453 | /** |
||
454 | * Sets post types with active search options. |
||
455 | */ |
||
456 | public function register_post_type_tabs( $post_types_plural ) { |
||
457 | $post_types_plural = array( |
||
458 | 'post' => 'posts', |
||
459 | 'project' => 'projects', |
||
460 | 'service' => 'services', |
||
461 | 'team' => 'team', |
||
462 | 'testimonial' => 'testimonials', |
||
463 | 'video' => 'videos', |
||
464 | 'product' => 'products', // WooCommerce |
||
465 | ); |
||
466 | return $post_types_plural; |
||
467 | } |
||
468 | |||
469 | /** |
||
470 | * Enqueue styles and scripts. |
||
471 | */ |
||
472 | public function assets() { |
||
473 | add_filter( 'lsx_defer_parsing_of_js', array( $this, 'skip_js_defer' ), 10, 4 ); |
||
474 | wp_enqueue_script( 'touchSwipe', LSX_SEARCH_URL . 'assets/js/vendor/jquery.touchSwipe.min.js', array( 'jquery' ), LSX_SEARCH_VER, true ); |
||
475 | wp_enqueue_script( 'slideandswipe', LSX_SEARCH_URL . 'assets/js/vendor/jquery.slideandswipe.min.js', array( 'jquery', 'touchSwipe' ), LSX_SEARCH_VER, true ); |
||
476 | wp_enqueue_script( 'lsx-search', LSX_SEARCH_URL . 'assets/js/src/lsx-search.js', array( 'jquery', 'touchSwipe', 'slideandswipe', 'jquery-ui-datepicker' ), LSX_SEARCH_VER, true ); |
||
477 | |||
478 | $params = apply_filters( 'lsx_search_js_params', array( |
||
479 | 'ajax_url' => admin_url( 'admin-ajax.php' ), |
||
480 | )); |
||
481 | |||
482 | wp_localize_script( 'lsx-search', 'lsx_customizer_params', $params ); |
||
483 | |||
484 | wp_enqueue_style( 'lsx-search', LSX_SEARCH_URL . 'assets/css/lsx-search.css', array(), LSX_SEARCH_VER ); |
||
485 | wp_style_add_data( 'lsx-search', 'rtl', 'replace' ); |
||
486 | |||
487 | if ( true === $this->new_options ) { |
||
488 | wp_deregister_style( 'lsx_to_search' ); |
||
489 | wp_deregister_script( 'lsx_to_search' ); |
||
490 | } |
||
491 | } |
||
492 | |||
493 | /** |
||
494 | * Adds the to-search.min.js and the to-search.js |
||
495 | * |
||
496 | * @param boolean $should_skip |
||
497 | * @param string $tag |
||
498 | * @param string $handle |
||
499 | * @param string $href |
||
500 | * @return boolean |
||
501 | */ |
||
502 | public function skip_js_defer( $should_skip, $tag, $handle, $href ) { |
||
503 | if ( ! is_admin() && ( false !== stripos( $href, 'lsx-search.min.js' ) || false !== stripos( $href, 'lsx-search.js' ) ) ) { |
||
504 | $should_skip = true; |
||
505 | } |
||
506 | return $should_skip; |
||
507 | } |
||
508 | |||
509 | /** |
||
510 | * Redirect wordpress to the search template located in the plugin |
||
511 | * |
||
512 | * @param $template |
||
513 | * @return $template |
||
514 | */ |
||
515 | public function search_template_include( $template ) { |
||
523 | } |
||
524 | |||
525 | /** |
||
526 | * Ignore sticky posts on Blog search. |
||
527 | * |
||
528 | * @param [type] $query |
||
529 | * @return void |
||
530 | */ |
||
531 | public function ignore_sticky_search( $query ) { |
||
532 | if ( $query->is_main_query() && is_home() ) { |
||
534 | } |
||
535 | } |
||
536 | |||
537 | /** |
||
538 | * Rewrite the search URL |
||
539 | */ |
||
540 | public function pretty_search_redirect() { |
||
541 | global $wp_rewrite,$wp_query; |
||
542 | |||
543 | if ( ! isset( $wp_rewrite ) || ! is_object( $wp_rewrite ) || ! $wp_rewrite->using_permalinks() ) { |
||
544 | return; |
||
545 | } |
||
546 | |||
547 | $search_base = $wp_rewrite->search_base; |
||
548 | |||
549 | if ( is_search() && ! is_admin() && strpos( $_SERVER['REQUEST_URI'], "/{$search_base}/" ) === false ) { |
||
550 | $search_query = get_query_var( 's' ); |
||
551 | if ( empty( $search_query ) && isset( $_GET['s'] ) ) { |
||
552 | $search_query = $_GET['s']; |
||
553 | } |
||
554 | $engine = ''; |
||
555 | |||
556 | // If the search was triggered by a supplemental engine. |
||
557 | if ( isset( $_GET['engine'] ) && 'default' !== $_GET['engine'] ) { |
||
558 | $engine = sanitize_text_field( wp_unslash( $_GET['engine'] ) ); |
||
559 | $index = array_search( $engine, $this->post_type_slugs, true ); |
||
560 | if ( false !== $index ) { |
||
561 | $engine = $index; |
||
562 | } |
||
563 | $engine = $engine . '/'; |
||
564 | } |
||
565 | |||
566 | $get_array = $_GET; |
||
567 | |||
568 | if ( is_array( $get_array ) && ! empty( $get_array ) ) { |
||
569 | $vars_to_maintain = array(); |
||
570 | |||
571 | foreach ( $get_array as $ga_key => $ga_value ) { |
||
572 | if ( false !== strpos( $ga_key, 'fwp_' ) ) { |
||
573 | $vars_to_maintain[] = $ga_key . '=' . $ga_value; |
||
574 | } |
||
575 | } |
||
576 | } |
||
577 | |||
578 | $redirect_url = home_url( "/{$search_base}/" . $engine . urlencode( $search_query ) ); |
||
579 | |||
580 | if ( ! empty( $vars_to_maintain ) ) { |
||
581 | $redirect_url .= '?' . implode( '&', $vars_to_maintain ); |
||
582 | } |
||
583 | wp_redirect( $redirect_url ); |
||
584 | exit(); |
||
585 | } |
||
586 | } |
||
587 | |||
588 | /** |
||
589 | * Parse the Query and trigger a search |
||
590 | */ |
||
591 | public function pretty_search_parse_query( $query ) { |
||
592 | $this->post_type_slugs = array( |
||
593 | 'post' => 'posts', |
||
594 | 'project' => 'projects', |
||
595 | 'service' => 'services', |
||
596 | 'team' => 'team', |
||
597 | 'testimonial' => 'testimonials', |
||
598 | 'video' => 'videos', |
||
599 | 'product' => 'products', // WooCommerce |
||
600 | ); |
||
601 | if ( $query->is_search() && ! is_admin() && $query->is_main_query() ) { |
||
602 | $search_query = $query->get( 's' ); |
||
603 | $keyword_test = explode( '/', $search_query ); |
||
604 | |||
605 | $index = array_search( $keyword_test[0], $this->post_type_slugs, true ); |
||
606 | if ( false !== $index ) { |
||
607 | $engine = $this->post_type_slugs[ $index ]; |
||
608 | |||
609 | $query->set( 'post_type', $engine ); |
||
610 | $query->set( 'engine', $engine ); |
||
611 | |||
612 | if ( count( $keyword_test ) > 1 ) { |
||
613 | $query->set( 's', $keyword_test[1] ); |
||
614 | } elseif ( post_type_exists( $engine ) ) { |
||
615 | $query->set( 's', '' ); |
||
616 | } |
||
617 | } else { |
||
618 | if ( isset( $this->options['general']['search_post_types'] ) && is_array( $this->options['general']['search_post_types'] ) ) { |
||
619 | $post_types = array_keys( $this->options['general']['search_post_types'] ); |
||
620 | $query->set( 'post_type', $post_types ); |
||
621 | } |
||
622 | } |
||
623 | } |
||
624 | return $query; |
||
625 | } |
||
626 | |||
627 | /** |
||
628 | * Change the search slug to /search/ for the JSON+LD output in Yoast SEO |
||
629 | * |
||
630 | * @return url |
||
631 | */ |
||
632 | public function change_json_ld_search_url() { |
||
633 | return trailingslashit( home_url() ) . 'search/{search_term_string}'; |
||
634 | } |
||
635 | |||
636 | /** |
||
637 | * A filter to set the layout to 2 column. |
||
638 | */ |
||
639 | public function lsx_layout( $layout ) { |
||
640 | if ( ! empty( $this->options['display'][ $this->search_prefix . '_layout' ] ) ) { |
||
641 | if ( false === $this->has_posts ) { |
||
642 | $layout = '1c'; |
||
643 | } else { |
||
644 | $layout = $this->options['display'][ $this->search_prefix . '_layout' ]; |
||
645 | } |
||
646 | } |
||
647 | return $layout; |
||
648 | } |
||
649 | |||
650 | /** |
||
651 | * Outputs the Search Title Facet |
||
652 | */ |
||
653 | public function search_sidebar_top() { |
||
654 | if ( ! empty( $this->options['display'][ $this->search_prefix . '_facets' ] ) && is_array( $this->options['display'][ $this->search_prefix . '_facets' ] ) && true !== apply_filters( 'lsx_search_hide_search_box', false ) ) { |
||
655 | |||
656 | if ( ! is_search() ) { |
||
657 | |||
658 | foreach ( $this->options['display'][ $this->search_prefix . '_facets' ] as $facet => $facet_useless ) { |
||
659 | |||
660 | if ( isset( $this->facet_data[ $facet ] ) && 'search' === $this->facet_data[ $facet ]['type'] ) { |
||
661 | echo wp_kses_post( '<div class="row">' ); |
||
662 | $this->display_facet_default( $facet ); |
||
663 | echo wp_kses_post( '</div>' ); |
||
664 | unset( $this->options['display'][ $this->search_prefix . '_facets' ][ $facet ] ); |
||
665 | } |
||
666 | } |
||
667 | } else { |
||
668 | echo wp_kses_post( '<div class="row">' ); |
||
669 | $this->display_facet_search(); |
||
670 | echo wp_kses_post( '</div>' ); |
||
671 | } |
||
672 | } |
||
673 | } |
||
674 | |||
675 | /** |
||
676 | * Overrides the search facet HTML |
||
677 | * @param $output |
||
678 | * @param $params |
||
679 | * |
||
680 | * @return string |
||
681 | */ |
||
682 | public function search_facet_html( $output, $params ) { |
||
709 | } |
||
710 | |||
711 | /** |
||
712 | * Change the primary and secondary column classes. |
||
713 | */ |
||
714 | public function lsx_layout_selector( $return_class, $class, $layout, $size ) { |
||
715 | if ( ! empty( $this->options['display'][ $this->search_prefix . '_layout' ] ) ) { |
||
716 | |||
717 | if ( '2cl' === $layout || '2cr' === $layout ) { |
||
718 | $main_class = 'col-sm-8 col-md-9'; |
||
719 | $sidebar_class = 'col-sm-4 col-md-3'; |
||
720 | |||
721 | if ( '2cl' === $layout ) { |
||
722 | $main_class .= ' col-sm-pull-4 col-md-pull-3 search-sidebar-left'; |
||
723 | $sidebar_class .= ' col-sm-push-8 col-md-push-9'; |
||
724 | } |
||
725 | |||
726 | if ( 'main' === $class ) { |
||
727 | return $main_class; |
||
728 | } |
||
729 | |||
730 | if ( 'sidebar' === $class ) { |
||
731 | return $sidebar_class; |
||
732 | } |
||
733 | } |
||
734 | } |
||
735 | |||
736 | return $return_class; |
||
737 | } |
||
738 | |||
739 | /** |
||
740 | * Displays the Alphabet sorter above the facets. |
||
741 | * |
||
742 | * @return void |
||
743 | */ |
||
744 | public function display_alphabet_facet() { |
||
745 | if ( isset( $this->options['display'][ $this->search_prefix . '_az_pagination' ] ) ) { |
||
746 | $az_pagination = $this->options['display'][ $this->search_prefix . '_az_pagination' ]; |
||
747 | } else { |
||
748 | $az_pagination = false; |
||
749 | } |
||
750 | $az_pagination = apply_filters( 'lsx_search_top_az_pagination', $az_pagination ); |
||
751 | if ( false !== $az_pagination && '' !== $az_pagination ) { |
||
752 | echo do_shortcode( '[facetwp facet="' . $az_pagination . '"]' ); |
||
753 | } |
||
754 | } |
||
755 | |||
756 | /** |
||
757 | * Outputs top. |
||
758 | */ |
||
759 | public function facet_top_bar() { |
||
804 | <?php |
||
805 | } |
||
806 | |||
807 | /** |
||
808 | * Outputs bottom. |
||
809 | */ |
||
810 | public function facet_bottom_bar() { |
||
811 | if ( true === apply_filters( 'lsx_search_hide_bottom_bar', false ) ) { |
||
812 | return; |
||
813 | } |
||
814 | $show_pagination = true; |
||
815 | $pagination_visible = false; |
||
816 | if ( isset( $this->options['display'][ $this->search_prefix . '_az_pagination' ] ) ) { |
||
817 | $az_pagination = $this->options['display'][ $this->search_prefix . '_az_pagination' ]; |
||
818 | } else { |
||
819 | $az_pagination = false; |
||
820 | } |
||
821 | |||
822 | $show_per_page_combo = empty( $this->options['display'][ $this->search_prefix . '_disable_per_page' ] ); |
||
823 | $show_sort_combo = empty( $this->options['display'][ $this->search_prefix . '_search_disable_sorting' ] ); |
||
824 | |||
825 | $show_pagination = apply_filters( 'lsx_search_bottom_show_pagination', $show_pagination ); |
||
826 | $pagination_visible = apply_filters( 'lsx_search_bottom_pagination_visible', $pagination_visible ); |
||
827 | $show_per_page_combo = apply_filters( 'lsx_search_bottom_show_per_page_combo', $show_per_page_combo ); |
||
828 | $show_sort_combo = apply_filters( 'lsx_search_bottom_show_sort_combo', $show_sort_combo ); |
||
829 | |||
830 | if ( $show_pagination || ! empty( $az_pagination ) ) { ?> |
||
831 | <div id="facetwp-bottom"> |
||
832 | <div class="row facetwp-bottom-row-1"> |
||
833 | <div class="col-xs-12"> |
||
834 | <?php do_action( 'lsx_search_facetwp_bottom_row' ); ?> |
||
835 | |||
836 | <?php //if ( $show_sort_combo ) { ?> |
||
837 | <?php //echo do_shortcode( '[facetwp sort="true"]' ); ?> |
||
838 | <?php //} ?> |
||
839 | |||
840 | <?php //if ( ( $show_pagination && $show_per_page_combo ) || $show_per_page_combo ) { ?> |
||
841 | <?php //echo do_shortcode( '[facetwp per_page="true"]' ); ?> |
||
842 | <?php //} ?> |
||
843 | |||
844 | <?php |
||
845 | if ( $show_pagination ) { |
||
846 | $output_pagination = do_shortcode( '[facetwp pager="true"]' ); |
||
847 | if ( ! empty( $this->options['display'][ $this->search_prefix . '_facets' ] ) && is_array( $this->options['display'][ $this->search_prefix . '_facets' ] ) ) { |
||
848 | foreach ( $this->options['display'][ $this->search_prefix . '_facets' ] as $facet => $facet_useless ) { |
||
849 | if ( isset( $this->facet_data[ $facet ] ) && in_array( $this->facet_data[ $facet ]['type'], array( 'pager' ) ) ) { |
||
850 | $output_pagination = do_shortcode( '[facetwp facet="pager_"]' ); |
||
851 | } |
||
852 | } |
||
853 | } |
||
854 | echo wp_kses_post( $output_pagination ); |
||
855 | ?> |
||
856 | <?php } ?> |
||
857 | </div> |
||
858 | </div> |
||
859 | </div> |
||
860 | <?php } |
||
861 | } |
||
862 | |||
863 | /** |
||
864 | * Adds in the closing facetwp div |
||
865 | * |
||
866 | * @return void |
||
867 | */ |
||
868 | public function facetwp_tempate_open() { |
||
869 | ?> |
||
870 | <div class="facetwp-template"> |
||
871 | <?php |
||
872 | } |
||
873 | |||
874 | /** |
||
875 | * Adds in the closing facetwp div |
||
876 | * |
||
877 | * @return void |
||
878 | */ |
||
879 | public function facetwp_tempate_close() { |
||
880 | ?> |
||
881 | </div> |
||
882 | <?php |
||
883 | } |
||
884 | |||
885 | /** |
||
886 | * Disables default sidebar. |
||
887 | */ |
||
888 | public function lsx_sidebar_enable( $sidebar_enabled ) { |
||
891 | } |
||
892 | |||
893 | /** |
||
894 | * Outputs custom sidebar. |
||
895 | */ |
||
896 | public function search_sidebar() { |
||
947 | } |
||
948 | |||
949 | /** |
||
950 | * Check if the pager facet is on |
||
951 | * |
||
952 | * @return void |
||
953 | */ |
||
954 | public function pager_facet_enabled() { |
||
955 | |||
956 | $pager_facet_off = false; |
||
957 | |||
958 | if ( ! empty( $this->options['display'][ $this->search_prefix . '_facets' ] ) && is_array( $this->options['display'][ $this->search_prefix . '_facets' ] ) ) { |
||
959 | foreach ( $this->options['display'][ $this->search_prefix . '_facets' ] as $facet => $facet_useless ) { |
||
960 | if ( isset( $this->facet_data[ $facet ] ) && ! in_array( $this->facet_data[ $facet ]['type'], array( 'pager' ) ) ) { |
||
961 | $pager_facet_off = true; |
||
962 | } |
||
963 | } |
||
964 | } |
||
965 | |||
966 | return $pager_facet_off; |
||
967 | } |
||
968 | |||
969 | /** |
||
970 | * Display WooCommerce archive title. |
||
971 | */ |
||
972 | public function wc_archive_header() { |
||
973 | $default_size = 'sm'; |
||
974 | $size = apply_filters( 'lsx_bootstrap_column_size', $default_size ); |
||
975 | ?> |
||
976 | <div class="archive-header-wrapper banner-woocommerce col-<?php echo esc_attr( $size ); ?>-12"> |
||
977 | <?php lsx_global_header_inner_bottom(); ?> |
||
978 | <header class="archive-header"> |
||
979 | <h1 class="archive-title"><?php woocommerce_page_title(); ?></h1> |
||
980 | </header> |
||
981 | </div> |
||
982 | <?php |
||
983 | } |
||
984 | |||
985 | /** |
||
986 | * Display facet search. |
||
987 | */ |
||
988 | public function display_facet_search() { |
||
989 | ?> |
||
990 | <div class="col-xs-12 facetwp-item facetwp-form"> |
||
991 | <form class="search-form lsx-search-form" action="<?php echo esc_attr( home_url() ); ?>" method="get"> |
||
992 | <div class="input-group"> |
||
993 | <div class="field"> |
||
994 | <input class="facetwp-search search-field form-control" name="s" type="search" placeholder="<?php esc_html_e( 'Search', 'lsx-search' ); ?>..." autocomplete="off" value="<?php echo get_search_query() ?>"> |
||
995 | </div> |
||
996 | |||
997 | <div class="field submit-button"> |
||
998 | <button class="search-submit btn" type="submit"><?php esc_html_e( 'Search', 'lsx-search' ); ?></button> |
||
999 | </div> |
||
1000 | </div> |
||
1001 | </form> |
||
1002 | </div> |
||
1003 | <?php |
||
1004 | } |
||
1005 | |||
1006 | /** |
||
1007 | * Display facet default. |
||
1008 | */ |
||
1009 | public function display_facet_default( $facet ) { |
||
1031 | <?php |
||
1032 | endif; |
||
1033 | } |
||
1034 | |||
1035 | /** |
||
1036 | * Changes slot column class. |
||
1037 | */ |
||
1038 | public function change_slot_column_class( $class ) { |
||
1039 | if ( is_post_type_archive( 'video' ) || is_tax( 'video-category' ) ) { |
||
1040 | $column_class = 'col-xs-12 col-sm-4'; |
||
1041 | } |
||
1042 | |||
1043 | return $column_class; |
||
1044 | } |
||
1045 | |||
1046 | /** |
||
1047 | * Add post type label to the title. |
||
1048 | */ |
||
1049 | public function add_label_to_title() { |
||
1050 | if ( is_search() ) { |
||
1051 | if ( ! empty( $this->options['display']['engine_search_enable_pt_label'] ) ) { |
||
1052 | $post_type = get_post_type(); |
||
1053 | $post_type = str_replace( '_', ' ', $post_type ); |
||
1054 | $post_type = str_replace( '-', ' ', $post_type ); |
||
1055 | if ( 'tribe events' === $post_type ) { |
||
1056 | $post_type = 'Events'; |
||
1057 | } |
||
1058 | echo wp_kses_post( ' <span class="label label-default lsx-label-post-type">' . $post_type . '</span>' ); |
||
1059 | } |
||
1060 | } |
||
1061 | } |
||
1062 | |||
1063 | /** |
||
1064 | * Changes the sort options. |
||
1065 | */ |
||
1066 | public function facetwp_sort_options( $options, $params ) { |
||
1067 | $this->set_vars(); |
||
1068 | |||
1069 | if ( true === $this->search_enabled ) { |
||
1070 | if ( 'default' !== $params['template_name'] && 'wp' !== $params['template_name'] ) { |
||
1071 | return $options; |
||
1072 | } |
||
1073 | |||
1074 | if ( ! empty( $this->options['display'][ $this->search_prefix . '_disable_date' ] ) ) { |
||
1075 | unset( $options['date_desc'] ); |
||
1076 | unset( $options['date_asc'] ); |
||
1077 | } |
||
1078 | |||
1079 | if ( ! empty( $this->options['display'][ $this->search_prefix . '_disable_az_sorting' ] ) ) { |
||
1080 | unset( $options['title_desc'] ); |
||
1081 | unset( $options['title_asc'] ); |
||
1082 | } |
||
1083 | } |
||
1084 | |||
1085 | return $options; |
||
1086 | } |
||
1087 | |||
1088 | /** |
||
1089 | * @param $allowedtags |
||
1090 | * @param $context |
||
1091 | * |
||
1092 | * @return mixed |
||
1093 | */ |
||
1094 | public function kses_allowed_html( $allowedtags, $context ) { |
||
1099 | } |
||
1100 | |||
1101 | /** |
||
1102 | * Change FaceWP result count HTML |
||
1103 | */ |
||
1104 | public function get_search_query( $keyword ) { |
||
1105 | global $wp_rewrite,$wp_query; |
||
1106 | |||
1107 | if ( empty( $keyword ) ) { |
||
1108 | if ( ! isset( $wp_rewrite ) || ! is_object( $wp_rewrite ) || ! $wp_rewrite->using_permalinks() ) { |
||
1109 | return; |
||
1110 | } |
||
1111 | $search_base = $wp_rewrite->search_base; |
||
1112 | if ( strpos( $_SERVER['REQUEST_URI'], "/{$search_base}/" ) !== false ) { |
||
1130 |