Passed
Push — master ( e061ec...899851 )
by Warwick
02:54
created
includes/template-tags.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,6 +9,6 @@
 block discarded – undo
9 9
  * Adds text domain.
10 10
  */
11 11
 function lsx_search_load_plugin_textdomain() {
12
-	load_plugin_textdomain( 'lsx-search', false, basename( LSX_SEARCH_PATH ) . '/languages' );
12
+	load_plugin_textdomain('lsx-search', false, basename(LSX_SEARCH_PATH).'/languages');
13 13
 }
14
-add_action( 'init', 'lsx_search_load_plugin_textdomain' );
14
+add_action('init', 'lsx_search_load_plugin_textdomain');
Please login to merge, or discard this patch.
includes/functions.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -14,13 +14,13 @@  discard block
 block discarded – undo
14 14
  */
15 15
 function get_options() {
16 16
 	$options = array();
17
-	if ( function_exists( 'tour_operator' ) ) {
18
-		$options = get_option( '_lsx-to_settings', false );
17
+	if (function_exists('tour_operator')) {
18
+		$options = get_option('_lsx-to_settings', false);
19 19
 	} else {
20
-		$options = get_option( '_lsx_settings', false );
20
+		$options = get_option('_lsx_settings', false);
21 21
 
22
-		if ( false === $options ) {
23
-			$options = get_option( '_lsx_lsx-settings', false );
22
+		if (false === $options) {
23
+			$options = get_option('_lsx_lsx-settings', false);
24 24
 		}
25 25
 	}
26 26
 	return $options;
@@ -52,6 +52,6 @@  discard block
 block discarded – undo
52 52
 		'quiz',
53 53
 		'forum',
54 54
 	);
55
-	$post_types = apply_filters( 'lsx_search_restricted_post_types', $post_types );
55
+	$post_types = apply_filters('lsx_search_restricted_post_types', $post_types);
56 56
 	return $post_types;
57 57
 }
Please login to merge, or discard this patch.
classes/admin/class-settings-theme.php 1 patch
Spacing   +43 added lines, -43 removed lines patch added patch discarded remove patch
@@ -37,14 +37,14 @@  discard block
 block discarded – undo
37 37
 	 * Contructor
38 38
 	 */
39 39
 	public function __construct() {
40
-		add_filter( 'cmb2_enqueue_css', array( $this, 'disable_cmb2_styles' ), 1, 1 );
41
-		add_action( 'cmb2_before_form', array( $this, 'generate_navigation' ), 10, 4 );
42
-		add_action( 'cmb2_before_title_field_row', array( $this, 'output_tab_open_div' ), 10, 1 );
43
-		add_action( 'cmb2_after_tab_closing_field_row', array( $this, 'output_tab_closing_div' ), 10, 1 );
44
-		add_action( 'cmb2_render_tab_closing', array( $this, 'cmb2_render_callback_for_tab_closing' ), 10, 5 );
45
-		add_filter( 'cmb2_sanitize_tab_closing', array( $this, 'cmb2_sanitize_tab_closing_callback' ), 10, 2 );
46
-		add_action( 'cmb2_after_form', array( $this, 'navigation_js' ), 10, 4 );
47
-		add_filter( 'cmb2_options_page_redirect_url', array( $this, 'add_tab_argument' ), 10, 1 );
40
+		add_filter('cmb2_enqueue_css', array($this, 'disable_cmb2_styles'), 1, 1);
41
+		add_action('cmb2_before_form', array($this, 'generate_navigation'), 10, 4);
42
+		add_action('cmb2_before_title_field_row', array($this, 'output_tab_open_div'), 10, 1);
43
+		add_action('cmb2_after_tab_closing_field_row', array($this, 'output_tab_closing_div'), 10, 1);
44
+		add_action('cmb2_render_tab_closing', array($this, 'cmb2_render_callback_for_tab_closing'), 10, 5);
45
+		add_filter('cmb2_sanitize_tab_closing', array($this, 'cmb2_sanitize_tab_closing_callback'), 10, 2);
46
+		add_action('cmb2_after_form', array($this, 'navigation_js'), 10, 4);
47
+		add_filter('cmb2_options_page_redirect_url', array($this, 'add_tab_argument'), 10, 1);
48 48
 	}
49 49
 
50 50
 	/**
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 	 */
57 57
 	public static function get_instance() {
58 58
 		// If the single instance hasn't been set, set it now.
59
-		if ( null == self::$instance ) {
59
+		if (null == self::$instance) {
60 60
 			self::$instance = new self();
61 61
 		}
62 62
 		return self::$instance;
@@ -67,10 +67,10 @@  discard block
 block discarded – undo
67 67
 	 *
68 68
 	 * @return bool $enabled Whether to enable (enqueue) styles.
69 69
 	 */
70
-	public function disable_cmb2_styles( $enabled ) {
71
-		if ( is_admin() ) {
70
+	public function disable_cmb2_styles($enabled) {
71
+		if (is_admin()) {
72 72
 			$current_screen = get_current_screen();
73
-			if ( is_object( $current_screen ) && 'settings_page_lsx-search-settings' === $current_screen->id ) {
73
+			if (is_object($current_screen) && 'settings_page_lsx-search-settings' === $current_screen->id) {
74 74
 				$enabled = false;
75 75
 			}
76 76
 		}
@@ -86,14 +86,14 @@  discard block
 block discarded – undo
86 86
 	 * @param object $cmb2_obj
87 87
 	 * @return void
88 88
 	 */
89
-	public function generate_navigation( $cmb_id, $object_id, $object_type, $cmb2_obj ) {
90
-		if ( 'lsx_search_settings' === $cmb_id && 'lsx-search-settings' === $object_id && 'options-page' === $object_type ) {
89
+	public function generate_navigation($cmb_id, $object_id, $object_type, $cmb2_obj) {
90
+		if ('lsx_search_settings' === $cmb_id && 'lsx-search-settings' === $object_id && 'options-page' === $object_type) {
91 91
 			$this->navigation      = array();
92 92
 			$this->is_options_page = true;
93
-			if ( isset( $cmb2_obj->meta_box['fields'] ) && ! empty( $cmb2_obj->meta_box['fields'] ) ) {
94
-				foreach ( $cmb2_obj->meta_box['fields'] as $field_index => $field ) {
95
-					if ( 'title' === $field['type'] ) {
96
-						$this->navigation[ $field_index ] = $field['name'];
93
+			if (isset($cmb2_obj->meta_box['fields']) && !empty($cmb2_obj->meta_box['fields'])) {
94
+				foreach ($cmb2_obj->meta_box['fields'] as $field_index => $field) {
95
+					if ('title' === $field['type']) {
96
+						$this->navigation[$field_index] = $field['name'];
97 97
 					}
98 98
 				}
99 99
 			}
@@ -107,32 +107,32 @@  discard block
 block discarded – undo
107 107
 	 * @return void
108 108
 	 */
109 109
 	public function output_navigation() {
110
-		if ( ! empty( $this->navigation ) ) {
110
+		if (!empty($this->navigation)) {
111 111
 			?>
112 112
 			<div class="wp-filter hide-if-no-js">
113 113
 				<ul class="filter-links">
114 114
 					<?php
115 115
 					$first_tab    = true;
116
-					$total        = count( $this->navigation );
116
+					$total        = count($this->navigation);
117 117
 					$count        = 0;
118 118
 					$separator    = ' |';
119 119
 					$selected_tab = '';
120
-					if ( isset( $_GET['cmb_tab'] ) && '' !== $_GET['cmb_tab'] ) {
121
-						$selected_tab  = sanitize_text_field( $_GET['cmb_tab'] );
122
-						$selected_tab  = 'settings_' . $selected_tab;
120
+					if (isset($_GET['cmb_tab']) && '' !== $_GET['cmb_tab']) {
121
+						$selected_tab  = sanitize_text_field($_GET['cmb_tab']);
122
+						$selected_tab  = 'settings_'.$selected_tab;
123 123
 					}
124
-					foreach ( $this->navigation as $key => $label ) {
124
+					foreach ($this->navigation as $key => $label) {
125 125
 						$count++;
126 126
 						$current_css = '';
127
-						if ( ( true === $first_tab && '' === $selected_tab ) || $key === $selected_tab ) {
127
+						if ((true === $first_tab && '' === $selected_tab) || $key === $selected_tab) {
128 128
 							$first_tab   = false;
129 129
 							$current_css = 'current';
130 130
 						}
131
-						if ( $count === $total ) {
131
+						if ($count === $total) {
132 132
 							$separator = '';
133 133
 						}
134 134
 						?>
135
-							<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
+							<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>
136 136
 						<?php
137 137
 					}
138 138
 					?>
@@ -148,10 +148,10 @@  discard block
 block discarded – undo
148 148
 	 * @param object $field CMB2_Field();
149 149
 	 * @return void
150 150
 	 */
151
-	public function output_tab_open_div( $field ) {
152
-		if ( true === $this->is_options_page && isset( $field->args['type'] ) && 'title' === $field->args['type'] ) {
151
+	public function output_tab_open_div($field) {
152
+		if (true === $this->is_options_page && isset($field->args['type']) && 'title' === $field->args['type']) {
153 153
 			?>
154
-			<div id="<?php echo esc_attr( $field->args['id'] ); ?>_tab" class="tab tab-nav hidden">
154
+			<div id="<?php echo esc_attr($field->args['id']); ?>_tab" class="tab tab-nav hidden">
155 155
 			<?php
156 156
 		}
157 157
 	}
@@ -162,19 +162,19 @@  discard block
 block discarded – undo
162 162
 	 * @param object $field CMB2_Field();
163 163
 	 * @return void
164 164
 	 */
165
-	public function output_tab_closing_div( $field ) {
166
-		if ( true === $this->is_options_page && isset( $field->args['type'] ) && 'tab_closing' === $field->args['type'] ) {
165
+	public function output_tab_closing_div($field) {
166
+		if (true === $this->is_options_page && isset($field->args['type']) && 'tab_closing' === $field->args['type']) {
167 167
 			?>
168 168
 			</div>
169 169
 			<?php
170 170
 		}
171 171
 	}
172 172
 
173
-	public function cmb2_render_callback_for_tab_closing( $field, $escaped_value, $object_id, $object_type, $field_type_object ) {
173
+	public function cmb2_render_callback_for_tab_closing($field, $escaped_value, $object_id, $object_type, $field_type_object) {
174 174
 		return;
175 175
 	}
176 176
 
177
-	public function cmb2_sanitize_tab_closing_callback( $override_value, $value ) {
177
+	public function cmb2_sanitize_tab_closing_callback($override_value, $value) {
178 178
 		return '';
179 179
 	}
180 180
 
@@ -187,8 +187,8 @@  discard block
 block discarded – undo
187 187
 	 * @param object $cmb2_obj
188 188
 	 * @return void
189 189
 	 */
190
-	public function navigation_js( $cmb_id, $object_id, $object_type, $cmb2_obj ) {
191
-		if ( 'lsx_search_settings' === $cmb_id && 'lsx-search-settings' === $object_id && 'options-page' === $object_type ) {
190
+	public function navigation_js($cmb_id, $object_id, $object_type, $cmb2_obj) {
191
+		if ('lsx_search_settings' === $cmb_id && 'lsx-search-settings' === $object_id && 'options-page' === $object_type) {
192 192
 			?>
193 193
 			<script>
194 194
 				var LSX_SEARCH_CMB2 = Object.create( null );
@@ -270,14 +270,14 @@  discard block
 block discarded – undo
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;
Please login to merge, or discard this patch.
classes/class-lsx-search.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -41,10 +41,10 @@  discard block
 block discarded – undo
41 41
 	public function __construct() {
42 42
 		$this->load_vendors();
43 43
 
44
-		require_once LSX_SEARCH_PATH . '/classes/class-admin.php';
45
-		require_once LSX_SEARCH_PATH . '/classes/class-frontend.php';
46
-		require_once LSX_SEARCH_PATH . '/classes/class-lsx-search-facetwp.php';
47
-		require_once LSX_SEARCH_PATH . '/classes/class-lsx-search-shortcode.php';
44
+		require_once LSX_SEARCH_PATH.'/classes/class-admin.php';
45
+		require_once LSX_SEARCH_PATH.'/classes/class-frontend.php';
46
+		require_once LSX_SEARCH_PATH.'/classes/class-lsx-search-facetwp.php';
47
+		require_once LSX_SEARCH_PATH.'/classes/class-lsx-search-shortcode.php';
48 48
 
49 49
 		$this->admin     = \lsx\search\classes\Admin::get_instance();
50 50
 		$this->frontend  = \lsx\search\classes\Frontend::get_instance();
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 	 */
62 62
 	public static function get_instance() {
63 63
 		// If the single instance hasn't been set, set it now.
64
-		if ( null === self::$instance ) {
64
+		if (null === self::$instance) {
65 65
 			self::$instance = new self();
66 66
 		}
67 67
 		return self::$instance;
@@ -72,8 +72,8 @@  discard block
 block discarded – undo
72 72
 	 */
73 73
 	private function load_vendors() {
74 74
 		// Configure custom fields.
75
-		if ( ! class_exists( 'CMB2' ) ) {
76
-			require_once LSX_SEARCH_PATH . 'vendor/CMB2/init.php';
75
+		if (!class_exists('CMB2')) {
76
+			require_once LSX_SEARCH_PATH.'vendor/CMB2/init.php';
77 77
 		}
78 78
 	}
79 79
 }
Please login to merge, or discard this patch.
classes/facetwp/class-hierarchy.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 	 * Constructor
21 21
 	 */
22 22
 	public function __construct() {
23
-		add_filter( 'facetwp_facet_html', array( $this, 'checkbox_facet_html' ), 100, 2 );
23
+		add_filter('facetwp_facet_html', array($this, 'checkbox_facet_html'), 100, 2);
24 24
 	}
25 25
 
26 26
 	/**
@@ -32,15 +32,15 @@  discard block
 block discarded – undo
32 32
 	 */
33 33
 	public static function get_instance() {
34 34
 		// If the single instance hasn't been set, set it now.
35
-		if ( null === self::$instance ) {
35
+		if (null === self::$instance) {
36 36
 			self::$instance = new self();
37 37
 		}
38 38
 		return self::$instance;
39 39
 	}
40 40
 
41
-	public function checkbox_facet_html( $output, $params ) {
42
-		if ( 'checkboxes' === $params['facet']['type'] && 'yes' === $params['facet']['hierarchical'] ) {
43
-			$output = $this->render_hierarchy( $params );
41
+	public function checkbox_facet_html($output, $params) {
42
+		if ('checkboxes' === $params['facet']['type'] && 'yes' === $params['facet']['hierarchical']) {
43
+			$output = $this->render_hierarchy($params);
44 44
 		}
45 45
 		return $output;
46 46
 	}
@@ -48,17 +48,17 @@  discard block
 block discarded – undo
48 48
 	/**
49 49
 	 * Generate the facet HTML (hierarchical taxonomies)
50 50
 	 */
51
-	function render_hierarchy( $params ) {
51
+	function render_hierarchy($params) {
52 52
 
53 53
 		$output = '';
54 54
 		$facet = $params['facet'];
55 55
 		$selected_values = (array) $params['selected_values'];
56
-		$values = FWP()->helper->sort_taxonomy_values( $params['values'], $facet['orderby'] );
56
+		$values = FWP()->helper->sort_taxonomy_values($params['values'], $facet['orderby']);
57 57
 
58 58
 		$init_depth = -1;
59 59
 		$last_depth = -1;
60 60
 
61
-		foreach ( $values as $result ) {
61
+		foreach ($values as $result) {
62 62
 			$depth = (int) $result['depth'];
63 63
 
64 64
 			/*if ( -1 == $last_depth ) {
@@ -73,20 +73,20 @@  discard block
 block discarded – undo
73 73
 				}
74 74
 			}*/
75 75
 
76
-			$selected = in_array( $result['facet_value'], $selected_values ) ? ' checked' : '';
77
-			$selected .= ( 0 == $result['counter'] && '' == $selected ) ? ' disabled' : '';
76
+			$selected = in_array($result['facet_value'], $selected_values) ? ' checked' : '';
77
+			$selected .= (0 == $result['counter'] && '' == $selected) ? ' disabled' : '';
78 78
 
79
-			$is_child = ( 0 == $result['parent_id'] && '0' == $result['parent_id'] ) ? ' is-child' : '';
80
-			$depth_css = ' depth-' . $result['depth'];
79
+			$is_child = (0 == $result['parent_id'] && '0' == $result['parent_id']) ? ' is-child' : '';
80
+			$depth_css = ' depth-'.$result['depth'];
81 81
 
82
-			$output .= '<div class="facetwp-checkbox' . $selected . $is_child . $depth_css . '" data-parent-id="' . esc_attr( $result['parent_id'] ) . '" data-value="' . esc_attr( $result['facet_value'] ) . '">';
83
-			$output .= esc_html( $result['facet_display_value'] ) . ' <span class="facetwp-counter">(' . $result['counter'] . ')</span>';
82
+			$output .= '<div class="facetwp-checkbox'.$selected.$is_child.$depth_css.'" data-parent-id="'.esc_attr($result['parent_id']).'" data-value="'.esc_attr($result['facet_value']).'">';
83
+			$output .= esc_html($result['facet_display_value']).' <span class="facetwp-counter">('.$result['counter'].')</span>';
84 84
 			$output .= '</div>';
85 85
 
86 86
 			$last_depth = $depth;
87 87
 		}
88 88
 
89
-		for ( $i = $last_depth; $i > $init_depth; $i-- ) {
89
+		for ($i = $last_depth; $i > $init_depth; $i--) {
90 90
 			$output .= '</div>';
91 91
 		}
92 92
 
Please login to merge, or discard this patch.
classes/facetwp/class-post-connections.php 1 patch
Spacing   +105 added lines, -105 removed lines patch added patch discarded remove patch
@@ -28,9 +28,9 @@  discard block
 block discarded – undo
28 28
 	 */
29 29
 	public function __construct() {
30 30
 		$this->get_cmb2_options();
31
-		add_filter( 'facetwp_indexer_row_data', array( $this, 'facetwp_index_row_data' ), 10, 2 );
32
-		add_filter( 'facetwp_index_row', array( $this, 'facetwp_index_row' ), 10, 2 );
33
-		add_filter( 'facetwp_facet_html', array( $this, 'destination_facet_html' ), 10, 2 );
31
+		add_filter('facetwp_indexer_row_data', array($this, 'facetwp_index_row_data'), 10, 2);
32
+		add_filter('facetwp_index_row', array($this, 'facetwp_index_row'), 10, 2);
33
+		add_filter('facetwp_facet_html', array($this, 'destination_facet_html'), 10, 2);
34 34
 	}
35 35
 
36 36
 	/**
@@ -39,16 +39,16 @@  discard block
 block discarded – undo
39 39
 	 * @return void
40 40
 	 */
41 41
 	private function get_cmb2_options() {
42
-		$cmb2_options = get_option( 'lsx-search-settings' );
43
-		if ( false !== $cmb2_options && ! empty( $cmb2_options ) ) {
42
+		$cmb2_options = get_option('lsx-search-settings');
43
+		if (false !== $cmb2_options && !empty($cmb2_options)) {
44 44
 			$this->options['display'] = $cmb2_options;
45
-			foreach ( $this->options['display'] as $option_key => $option_value ) {
46
-				if ( is_array( $option_value ) && ! empty( $option_value ) ) {
45
+			foreach ($this->options['display'] as $option_key => $option_value) {
46
+				if (is_array($option_value) && !empty($option_value)) {
47 47
 					$new_values = array();
48
-					foreach ( $option_value as $empty_key => $key_value ) {
49
-						$new_values[ $key_value ] = 'on';
48
+					foreach ($option_value as $empty_key => $key_value) {
49
+						$new_values[$key_value] = 'on';
50 50
 					}
51
-					$this->options['display'][ $option_key ] = $new_values;
51
+					$this->options['display'][$option_key] = $new_values;
52 52
 				}
53 53
 			}
54 54
 		}
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 	 */
69 69
 	public static function get_instance() {
70 70
 		// If the single instance hasn't been set, set it now.
71
-		if ( null === self::$instance ) {
71
+		if (null === self::$instance) {
72 72
 			self::$instance = new self();
73 73
 		}
74 74
 		return self::$instance;
@@ -77,54 +77,54 @@  discard block
 block discarded – undo
77 77
 	/**
78 78
 	 *	Alter the rows and include extra facets rows for the continents
79 79
 	 */
80
-	public function facetwp_index_row_data( $rows, $params ) {
81
-		switch ( $params['facet']['source'] ) {
80
+	public function facetwp_index_row_data($rows, $params) {
81
+		switch ($params['facet']['source']) {
82 82
 			case 'cf/destination_to_tour':
83 83
 			case 'cf/destination_to_accommodation':
84 84
 				$countries = array();
85 85
 
86
-				foreach ( $rows as $r_index => $row ) {
87
-					$parent                        = wp_get_post_parent_id( $row['facet_value'] );
88
-					$rows[ $r_index ]['parent_id'] = $parent;
86
+				foreach ($rows as $r_index => $row) {
87
+					$parent                        = wp_get_post_parent_id($row['facet_value']);
88
+					$rows[$r_index]['parent_id'] = $parent;
89 89
 
90
-					if ( 0 === $parent || '0' === $parent ) {
91
-						if ( ! isset( $countries[ $r_index ] ) ) {
92
-							$countries[ $r_index ] = $row['facet_value'];
90
+					if (0 === $parent || '0' === $parent) {
91
+						if (!isset($countries[$r_index])) {
92
+							$countries[$r_index] = $row['facet_value'];
93 93
 						}
94 94
 
95
-						if ( ! empty( $this->options['display']['engine_search_continent_filter'] ) ) {
96
-							$rows[ $r_index ]['depth'] = 1;
95
+						if (!empty($this->options['display']['engine_search_continent_filter'])) {
96
+							$rows[$r_index]['depth'] = 1;
97 97
 						} else {
98
-							$rows[ $r_index ]['depth'] = 0;
98
+							$rows[$r_index]['depth'] = 0;
99 99
 						}
100 100
 					} else {
101
-						if ( ! empty( $this->options['display']['engine_search_continent_filter'] ) ) {
102
-							$rows[ $r_index ]['depth'] = 2;
101
+						if (!empty($this->options['display']['engine_search_continent_filter'])) {
102
+							$rows[$r_index]['depth'] = 2;
103 103
 						} else {
104
-							$rows[ $r_index ]['depth'] = 1;
104
+							$rows[$r_index]['depth'] = 1;
105 105
 						}
106 106
 					}
107 107
 				}
108
-				if ( ! empty( $this->options['display']['enable_search_continent_filter'] ) ) {
109
-					if ( ! empty( $countries ) ) {
110
-						foreach ( $countries as $row_index => $country ) {
111
-							$continents   = wp_get_object_terms( $country, 'continent' );
108
+				if (!empty($this->options['display']['enable_search_continent_filter'])) {
109
+					if (!empty($countries)) {
110
+						foreach ($countries as $row_index => $country) {
111
+							$continents   = wp_get_object_terms($country, 'continent');
112 112
 							$continent_id = 0;
113 113
 
114
-							if ( ! is_wp_error( $continents ) ) {
114
+							if (!is_wp_error($continents)) {
115 115
 								$new_row = $params['defaults'];
116
-								if ( ! is_array( $continents ) ) {
117
-									$continents = array( $continents );
116
+								if (!is_array($continents)) {
117
+									$continents = array($continents);
118 118
 								}
119 119
 
120
-								foreach ( $continents as $continent ) {
120
+								foreach ($continents as $continent) {
121 121
 									$new_row['facet_value'] = $continent->slug;
122 122
 									$new_row['facet_display_value'] = $continent->name;
123 123
 									$continent_id = $continent->term_id;
124 124
 									$new_row['depth'] = 0;
125 125
 								}
126 126
 								$rows[] = $new_row;
127
-								$rows[ $row_index ]['parent_id'] = $continent_id;
127
+								$rows[$row_index]['parent_id'] = $continent_id;
128 128
 							}
129 129
 						}
130 130
 					}
@@ -142,41 +142,41 @@  discard block
 block discarded – undo
142 142
 	/**
143 143
 	 * Displays the destination specific settings
144 144
 	 */
145
-	public function facetwp_index_row( $params, $class ) {
145
+	public function facetwp_index_row($params, $class) {
146 146
 		$custom_field = false;
147 147
 		$meta_key = false;
148 148
 
149
-		preg_match( '/cf\//', $class->facet['source'], $custom_field );
150
-		preg_match( '/_to_/', $class->facet['source'], $meta_key );
149
+		preg_match('/cf\//', $class->facet['source'], $custom_field);
150
+		preg_match('/_to_/', $class->facet['source'], $meta_key);
151 151
 
152
-		if ( ! empty( $custom_field ) && ! empty( $meta_key ) ) {
152
+		if (!empty($custom_field) && !empty($meta_key)) {
153 153
 
154
-			if ( ( 'cf/destination_to_accommodation' === $class->facet['source'] || 'cf/destination_to_tour' === $class->facet['source'] ) && ! empty( $this->options['display']['engine_search_continent_filter'] ) && ( '0' === (string) $params['depth'] ) ) {
154
+			if (('cf/destination_to_accommodation' === $class->facet['source'] || 'cf/destination_to_tour' === $class->facet['source']) && !empty($this->options['display']['engine_search_continent_filter']) && ('0' === (string) $params['depth'])) {
155 155
 				$title = '';
156 156
 			} else {
157
-				$title = get_the_title( $params['facet_value'] );
158
-				if ( '' !== $title ) {
157
+				$title = get_the_title($params['facet_value']);
158
+				if ('' !== $title) {
159 159
 					$params['facet_display_value'] = $title;
160 160
 				}
161
-				if ( '' === $title && ! empty( $meta_key ) ) {
161
+				if ('' === $title && !empty($meta_key)) {
162 162
 					$params['facet_value'] = '';
163 163
 				}
164 164
 			}
165 165
 		}
166 166
 
167 167
 		// If its a price, save the value as a standard number.
168
-		if ( 'cf/price' === $class->facet['source'] ) {
169
-			$params['facet_value'] = preg_replace( '/[^0-9.]/', '', $params['facet_value'] );
170
-			$params['facet_value'] = ltrim( $params['facet_value'], '.' );
168
+		if ('cf/price' === $class->facet['source']) {
169
+			$params['facet_value'] = preg_replace('/[^0-9.]/', '', $params['facet_value']);
170
+			$params['facet_value'] = ltrim($params['facet_value'], '.');
171 171
 			#$params['facet_value'] = number_format( (int) $params['facet_value'], 2 );
172 172
 			$params['facet_display_value'] = $params['facet_value'];
173 173
 		}
174 174
 
175 175
 		// If its a duration, save the value as a standard number.
176
-		if ( 'cf/duration' === $class->facet['source'] ) {
177
-			$params['facet_value'] = preg_replace( '/[^0-9 ]/', '', $params['facet_value'] );
178
-			$params['facet_value'] = trim( $params['facet_value'] );
179
-			$params['facet_value'] = explode( ' ', $params['facet_value'] );
176
+		if ('cf/duration' === $class->facet['source']) {
177
+			$params['facet_value'] = preg_replace('/[^0-9 ]/', '', $params['facet_value']);
178
+			$params['facet_value'] = trim($params['facet_value']);
179
+			$params['facet_value'] = explode(' ', $params['facet_value']);
180 180
 			$params['facet_value'] = $params['facet_value'][0];
181 181
 			#$params['facet_value'] = (int) $params['facet_value'];
182 182
 			$params['facet_display_value'] = $params['facet_value'];
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
 	 * @param  array   $params
193 193
 	 * @return string
194 194
 	 */
195
-	public function destination_facet_html( $output, $params ) {
195
+	public function destination_facet_html($output, $params) {
196 196
 		$possible_keys = array(
197 197
 			'cf/destination_to_accommodation',
198 198
 			'cf/destination_to_tour',
@@ -201,8 +201,8 @@  discard block
 block discarded – undo
201 201
 			'cf/destination_to_review',
202 202
 			'cf/destination_to_vehicle',
203 203
 		);
204
-		if ( in_array( $params['facet']['source'], $possible_keys ) ) {
205
-			$output = $this->destination_facet_render( $params );
204
+		if (in_array($params['facet']['source'], $possible_keys)) {
205
+			$output = $this->destination_facet_render($params);
206 206
 		}
207 207
 		return $output;
208 208
 	}
@@ -210,13 +210,13 @@  discard block
 block discarded – undo
210 210
 	/**
211 211
 	 * Generate the facet HTML
212 212
 	 */
213
-	public function destination_facet_render( $params ) {
213
+	public function destination_facet_render($params) {
214 214
 		$facet = $params['facet'];
215 215
 
216 216
 		$output = '';
217 217
 		$values = (array) $params['values'];
218 218
 		$selected_values = (array) $params['selected_values'];
219
-		$soft_limit = empty( $facet['soft_limit'] ) ? 0 : (int) $facet['soft_limit'];
219
+		$soft_limit = empty($facet['soft_limit']) ? 0 : (int) $facet['soft_limit'];
220 220
 		$countries = array();
221 221
 		$continents = array();
222 222
 
@@ -226,34 +226,34 @@  discard block
 block discarded – undo
226 226
 			)
227 227
 		);
228 228
 
229
-		if ( ! is_wp_error( $continent_terms ) ) {
230
-			foreach ( $continent_terms as $continent ) {
231
-				$continents[ $continent->term_id ] = $continent->slug;
229
+		if (!is_wp_error($continent_terms)) {
230
+			foreach ($continent_terms as $continent) {
231
+				$continents[$continent->term_id] = $continent->slug;
232 232
 			}
233 233
 		}
234 234
 
235 235
 		//Create a relationship of the facet value and the their depths
236 236
 		$depths = array();
237 237
 		$parents = array();
238
-		foreach ( $values as $value ) {
239
-			$depths[ $value['facet_value'] ]  = (int) $value['depth'];
240
-			$parents[ $value['facet_value'] ] = (int) $value['parent_id'];
238
+		foreach ($values as $value) {
239
+			$depths[$value['facet_value']]  = (int) $value['depth'];
240
+			$parents[$value['facet_value']] = (int) $value['parent_id'];
241 241
 		}
242 242
 
243 243
 		//Determine the current depth and check if the selected values parents are in the selected array.
244 244
 		$current_depth = 0;
245 245
 		$additional_values = array();
246
-		if ( ! empty( $selected_values ) ) {
247
-			foreach ( $selected_values as $selected ) {
248
-				if ( $depths[ $selected ] > $current_depth ) {
249
-					$current_depth = $depths[ $selected ];
246
+		if (!empty($selected_values)) {
247
+			foreach ($selected_values as $selected) {
248
+				if ($depths[$selected] > $current_depth) {
249
+					$current_depth = $depths[$selected];
250 250
 				}
251 251
 			}
252 252
 			$current_depth++;
253 253
 		}
254 254
 
255
-		if ( ! empty( $additional_values ) ) {
256
-			$selected_values = array_merge( $selected_values, $additional_values );
255
+		if (!empty($additional_values)) {
256
+			$selected_values = array_merge($selected_values, $additional_values);
257 257
 		}
258 258
 
259 259
 		// This is where the items are sorted by their depth
@@ -261,25 +261,25 @@  discard block
 block discarded – undo
261 261
 		$stored = $values;
262 262
 
263 263
 		//sort the options so
264
-		foreach ( $values as $key => $result ) {
265
-			if ( ! empty( $this->options['display']['engine_search_continent_filter'] ) ) {
266
-				if ( in_array( $result['facet_value'], $continents ) ) {
264
+		foreach ($values as $key => $result) {
265
+			if (!empty($this->options['display']['engine_search_continent_filter'])) {
266
+				if (in_array($result['facet_value'], $continents)) {
267 267
 					$sorted_values[] = $result;
268
-					$destinations    = $this->get_countries( $stored, $result['facet_value'], $continents, '1' );
268
+					$destinations    = $this->get_countries($stored, $result['facet_value'], $continents, '1');
269 269
 
270
-					if ( ! empty( $destinations ) ) {
271
-						foreach ( $destinations as $destination ) {
270
+					if (!empty($destinations)) {
271
+						foreach ($destinations as $destination) {
272 272
 							$sorted_values[] = $destination;
273 273
 						}
274 274
 					}
275 275
 				}
276 276
 			} else {
277
-				if ( '0' === $result['depth'] || 0 === $result['depth'] ) {
277
+				if ('0' === $result['depth'] || 0 === $result['depth']) {
278 278
 					$sorted_values[] = $result;
279
-					$destinations    = $this->get_regions( $stored, $result['facet_value'], '1' );
279
+					$destinations    = $this->get_regions($stored, $result['facet_value'], '1');
280 280
 
281
-					if ( ! empty( $destinations ) ) {
282
-						foreach ( $destinations as $destination ) {
281
+					if (!empty($destinations)) {
282
+						foreach ($destinations as $destination) {
283 283
 							$sorted_values[] = $destination;
284 284
 						}
285 285
 					}
@@ -292,45 +292,45 @@  discard block
 block discarded – undo
292 292
 		$country_class = '';
293 293
 
294 294
 		// Run through each value and output the values.
295
-		foreach ( $values as $key => $facet ) {
295
+		foreach ($values as $key => $facet) {
296 296
 			$depth_type = '';
297 297
 
298
-			if ( ! empty( $this->options['display']['engine_search_continent_filter'] ) ) {
299
-				switch ( $facet['depth'] ) {
298
+			if (!empty($this->options['display']['engine_search_continent_filter'])) {
299
+				switch ($facet['depth']) {
300 300
 					case '0':
301 301
 						$depth_type = '';
302
-						$continent_class = in_array( $facet['facet_value'], $selected_values ) ? $depth_type .= ' continent-checked' : '';
302
+						$continent_class = in_array($facet['facet_value'], $selected_values) ? $depth_type .= ' continent-checked' : '';
303 303
 						break;
304 304
 
305 305
 					case '1':
306
-						$depth_type = 'country' . $continent_class;
307
-						$country_class = in_array( $facet['facet_value'], $selected_values ) ? $depth_type .= ' country-checked' : '';
306
+						$depth_type = 'country'.$continent_class;
307
+						$country_class = in_array($facet['facet_value'], $selected_values) ? $depth_type .= ' country-checked' : '';
308 308
 						break;
309 309
 
310 310
 					case '2':
311
-						$depth_type = 'region' . $continent_class . $country_class;
311
+						$depth_type = 'region'.$continent_class.$country_class;
312 312
 						break;
313 313
 				}
314 314
 			} else {
315
-				switch ( $facet['depth'] ) {
315
+				switch ($facet['depth']) {
316 316
 					case '0':
317 317
 						$depth_type = 'country continent-checked';
318
-						$country_class = in_array( $facet['facet_value'], $selected_values ) ? $depth_type .= ' country-checked' : '';
318
+						$country_class = in_array($facet['facet_value'], $selected_values) ? $depth_type .= ' country-checked' : '';
319 319
 						break;
320 320
 
321 321
 					case '1':
322
-						$depth_type = 'region continent-checked' . $country_class;
322
+						$depth_type = 'region continent-checked'.$country_class;
323 323
 						break;
324 324
 				}
325 325
 			}
326 326
 
327
-			if ( $facet['depth'] <= $current_depth ) {
328
-				$options[] = $this->format_single_facet( $key, $facet, $selected_values, $depth_type );
327
+			if ($facet['depth'] <= $current_depth) {
328
+				$options[] = $this->format_single_facet($key, $facet, $selected_values, $depth_type);
329 329
 			}
330 330
 		}
331 331
 
332
-		if ( ! empty( $options ) ) {
333
-			$output = implode( '', $options );
332
+		if (!empty($options)) {
333
+			$output = implode('', $options);
334 334
 		}
335 335
 
336 336
 		return $output;
@@ -339,17 +339,17 @@  discard block
 block discarded – undo
339 339
 	/**
340 340
 	 * Gets the direct countries from the array.
341 341
 	 */
342
-	public function get_countries( $values, $parent, $continents, $depth ) {
342
+	public function get_countries($values, $parent, $continents, $depth) {
343 343
 		$children = array();
344 344
 		$stored = $values;
345 345
 
346
-		foreach ( $values as $value ) {
347
-			if ( isset( $continents[ $value['parent_id'] ] ) && $continents[ $value['parent_id'] ] === $parent && $value['depth'] === $depth ) {
346
+		foreach ($values as $value) {
347
+			if (isset($continents[$value['parent_id']]) && $continents[$value['parent_id']] === $parent && $value['depth'] === $depth) {
348 348
 				$children[] = $value;
349 349
 
350
-				$destinations = $this->get_regions( $stored, $value['facet_value'], '2' );
351
-				if ( ! empty( $destinations ) ) {
352
-					foreach ( $destinations as $destination ) {
350
+				$destinations = $this->get_regions($stored, $value['facet_value'], '2');
351
+				if (!empty($destinations)) {
352
+					foreach ($destinations as $destination) {
353 353
 						$children[] = $destination;
354 354
 					}
355 355
 				}
@@ -361,25 +361,25 @@  discard block
 block discarded – undo
361 361
 	/**
362 362
 	 * Gets the direct regions from the array.
363 363
 	 */
364
-	public function get_regions( $values, $parent, $depth ) {
364
+	public function get_regions($values, $parent, $depth) {
365 365
 		$children = array();
366
-		foreach ( $values as $value ) {
367
-			if ( $value['parent_id'] === $parent && $value['depth'] === $depth ) {
366
+		foreach ($values as $value) {
367
+			if ($value['parent_id'] === $parent && $value['depth'] === $depth) {
368 368
 				$children[] = $value;
369 369
 			}
370 370
 		}
371 371
 		return $children;
372 372
 	}
373 373
 
374
-	public function format_single_facet( $key, $result, $selected_values, $region = '' ) {
374
+	public function format_single_facet($key, $result, $selected_values, $region = '') {
375 375
 		$temp_html = '';
376 376
 
377
-		$selected = in_array( $result['facet_value'], $selected_values ) ? ' checked' : '';
378
-		$selected .= ( 0 == $result['counter'] && '' == $selected ) ? ' disabled' : '';
379
-		$selected .= ' ' . $region;
377
+		$selected = in_array($result['facet_value'], $selected_values) ? ' checked' : '';
378
+		$selected .= (0 == $result['counter'] && '' == $selected) ? ' disabled' : '';
379
+		$selected .= ' '.$region;
380 380
 
381
-		$temp_html .= '<div class="facetwp-checkbox' . $selected . '" data-value="' . $result['facet_value'] . '">';
382
-		$temp_html .= $result['facet_display_value'] . ' <span class="facetwp-counter">(' . $result['counter'] . ')</span>';
381
+		$temp_html .= '<div class="facetwp-checkbox'.$selected.'" data-value="'.$result['facet_value'].'">';
382
+		$temp_html .= $result['facet_display_value'].' <span class="facetwp-counter">('.$result['counter'].')</span>';
383 383
 		$temp_html .= '</div>';
384 384
 
385 385
 		return $temp_html;
Please login to merge, or discard this patch.
classes/class-lsx-search-shortcode.php 1 patch
Spacing   +79 added lines, -79 removed lines patch added patch discarded remove patch
@@ -10,76 +10,76 @@  discard block
 block discarded – undo
10 10
 	 * Construct method.
11 11
 	 */
12 12
 	public function __construct() {
13
-		add_shortcode( 'lsx_search_form', array( $this, 'search_form' ) );
13
+		add_shortcode('lsx_search_form', array($this, 'search_form'));
14 14
 	}
15 15
 
16 16
 	/**
17 17
 	 * Outputs the appropriate search form
18 18
 	 */
19
-	public function search_form( $atts = array() ) {
19
+	public function search_form($atts = array()) {
20 20
 		$classes = 'search-form lsx-search-form form-inline';
21 21
 
22
-		if ( isset( $atts['class'] ) ) {
22
+		if (isset($atts['class'])) {
23 23
 			$classes .= $atts['class'];
24 24
 		}
25 25
 
26
-		$placeholder = __( 'Where do you want to go?', 'lsx-search' );
26
+		$placeholder = __('Where do you want to go?', 'lsx-search');
27 27
 
28
-		if ( isset( $atts['placeholder'] ) ) {
28
+		if (isset($atts['placeholder'])) {
29 29
 			$placeholder = $atts['placeholder'];
30 30
 		}
31 31
 
32 32
 		$action = '/';
33 33
 
34
-		if ( isset( $atts['action'] ) ) {
34
+		if (isset($atts['action'])) {
35 35
 			$action = $atts['action'];
36 36
 		}
37 37
 
38 38
 		$method = 'get';
39 39
 
40
-		if ( isset( $atts['method'] ) ) {
40
+		if (isset($atts['method'])) {
41 41
 			$method = $atts['method'];
42 42
 		}
43 43
 
44
-		$button_label = __( 'Search', 'lsx-search' );
44
+		$button_label = __('Search', 'lsx-search');
45 45
 
46
-		if ( isset( $atts['button_label'] ) ) {
46
+		if (isset($atts['button_label'])) {
47 47
 			$button_label = $atts['button_label'];
48 48
 		}
49 49
 
50 50
 		$button_class = 'btn cta-btn ';
51 51
 
52
-		if ( isset( $atts['button_class'] ) ) {
52
+		if (isset($atts['button_class'])) {
53 53
 			$button_class .= $atts['button_class'];
54 54
 		}
55 55
 
56 56
 		$engine = false;
57 57
 
58
-		if ( isset( $atts['engine'] ) ) {
58
+		if (isset($atts['engine'])) {
59 59
 			$engine = $atts['engine'];
60 60
 		}
61 61
 
62 62
 		$engine_select = false;
63 63
 
64
-		if ( isset( $atts['engine_select'] ) ) {
64
+		if (isset($atts['engine_select'])) {
65 65
 			$engine_select = true;
66 66
 		}
67 67
 
68 68
 		$display_search_field = true;
69 69
 
70
-		if ( isset( $atts['search_field'] ) ) {
70
+		if (isset($atts['search_field'])) {
71 71
 			$display_search_field = (boolean) $atts['search_field'];
72 72
 		}
73 73
 
74 74
 		$facets = false;
75 75
 
76
-		if ( isset( $atts['facets'] ) ) {
76
+		if (isset($atts['facets'])) {
77 77
 			$facets = $atts['facets'];
78 78
 		}
79 79
 
80 80
 		$combo_box = false;
81 81
 
82
-		if ( isset( $atts['combo_box'] ) ) {
82
+		if (isset($atts['combo_box'])) {
83 83
 			$combo_box = true;
84 84
 		}
85 85
 
@@ -87,40 +87,40 @@  discard block
 block discarded – undo
87 87
 
88 88
 		ob_start(); ?>
89 89
 
90
-		<?php do_action( 'lsx_search_form_before' ); ?>
90
+		<?php do_action('lsx_search_form_before'); ?>
91 91
 
92 92
 		<nav class="navbar navbar-light bg-light">
93 93
 
94
-			<form class="<?php echo esc_attr( $classes ); ?>" action="<?php echo esc_attr( $action ); ?>" method="<?php echo esc_attr( $method ); ?>">
94
+			<form class="<?php echo esc_attr($classes); ?>" action="<?php echo esc_attr($action); ?>" method="<?php echo esc_attr($method); ?>">
95 95
 
96
-				<?php do_action( 'lsx_search_form_top' ); ?>
96
+				<?php do_action('lsx_search_form_top'); ?>
97 97
 
98 98
 				<div class="input-group navbar-nav">
99
-					<?php if ( true === $display_search_field ) : ?>
99
+					<?php if (true === $display_search_field) : ?>
100 100
 						<div class="field">
101
-							<input class="search-field form-control" name="s" type="search" placeholder="<?php echo esc_attr( $placeholder ); ?>" autocomplete="off">
101
+							<input class="search-field form-control" name="s" type="search" placeholder="<?php echo esc_attr($placeholder); ?>" autocomplete="off">
102 102
 						</div>
103 103
 					<?php endif; ?>
104 104
 
105
-					<?php if ( false !== $engine_select && false !== $engine && 'default' !== $engine ) :
106
-						$engines = explode( '|',$engine ); ?>
105
+					<?php if (false !== $engine_select && false !== $engine && 'default' !== $engine) :
106
+						$engines = explode('|', $engine); ?>
107 107
 						<div class="field engine-select">
108 108
 							<div class="dropdown nav-item">
109 109
 								<?php
110 110
 								$plural = 's';
111
-								if ( 'accommodation' === $engine[0] ) {
111
+								if ('accommodation' === $engine[0]) {
112 112
 									$plural = '';
113 113
 								}
114 114
 								?>
115
-								<button id="engine" data-selection="<?php echo esc_attr( $engines[0] ); ?>" class="btn border-btn btn-dropdown dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><?php echo esc_html( ucwords( str_replace( '_', ' ',$engines[0] ) ) . $plural ); ?> <span class="caret"></span></button>
115
+								<button id="engine" data-selection="<?php echo esc_attr($engines[0]); ?>" class="btn border-btn btn-dropdown dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><?php echo esc_html(ucwords(str_replace('_', ' ', $engines[0])).$plural); ?> <span class="caret"></span></button>
116 116
 								<ul class="dropdown-menu">
117 117
 									<?php
118
-									foreach ( $engines as $engine ) {
118
+									foreach ($engines as $engine) {
119 119
 										$plural = 's';
120
-										if ( 'accommodation' === $engine ) {
120
+										if ('accommodation' === $engine) {
121 121
 											$plural = '';
122 122
 										}
123
-										echo '<li><a data-value="' . esc_attr( $engine ) . '" href="#">' . esc_html( ucfirst( str_replace( '_', ' ',$engine ) ) . $plural ) . '</a></li>';
123
+										echo '<li><a data-value="'.esc_attr($engine).'" href="#">'.esc_html(ucfirst(str_replace('_', ' ', $engine)).$plural).'</a></li>';
124 124
 									}
125 125
 									?>
126 126
 								</ul>
@@ -128,32 +128,32 @@  discard block
 block discarded – undo
128 128
 						</div>
129 129
 					<?php endif; ?>
130 130
 
131
-					<?php if ( false !== $facets ) {
132
-						$facets = explode( '|',$facets );
131
+					<?php if (false !== $facets) {
132
+						$facets = explode('|', $facets);
133 133
 
134
-						if ( ! is_array( $facets ) ) {
135
-							$facets = array( $facets );
134
+						if (!is_array($facets)) {
135
+							$facets = array($facets);
136 136
 						}
137 137
 
138 138
 						$field_class = 'field';
139 139
 
140
-						if ( false !== $combo_box ) {
141
-							$this->combo_box( $facets );
140
+						if (false !== $combo_box) {
141
+							$this->combo_box($facets);
142 142
 							$field_class .= ' combination-toggle hidden';
143 143
 						}
144 144
 
145
-						foreach ( $facets as $facet ) {
145
+						foreach ($facets as $facet) {
146 146
 							?>
147
-							<div class="<?php echo wp_kses_post( $field_class ); ?>">
147
+							<div class="<?php echo wp_kses_post($field_class); ?>">
148 148
 								<?php
149
-								$facet = FWP()->helper->get_facet_by_name( $facet );
150
-								if ( isset( $facet['source'] ) ) {
151
-									$values = $this->get_form_facet( $facet['source'] );
149
+								$facet = FWP()->helper->get_facet_by_name($facet);
150
+								if (isset($facet['source'])) {
151
+									$values = $this->get_form_facet($facet['source']);
152 152
 								} else {
153 153
 									$values = array();
154 154
 								}
155
-								$facet_display_type = apply_filters( 'lsx_search_form_field_type', 'select', $facet );
156
-								$this->display_form_field( $facet_display_type,$facet,$values,$combo_box );
155
+								$facet_display_type = apply_filters('lsx_search_form_field_type', 'select', $facet);
156
+								$this->display_form_field($facet_display_type, $facet, $values, $combo_box);
157 157
 								?>
158 158
 							</div>
159 159
 							<?php
@@ -161,26 +161,26 @@  discard block
 block discarded – undo
161 161
 					} ?>
162 162
 
163 163
 					<div class="field submit-button">
164
-						<button class="<?php echo esc_attr( $button_class ); ?>" type="submit"><?php echo wp_kses_post( $button_label ); ?></button>
164
+						<button class="<?php echo esc_attr($button_class); ?>" type="submit"><?php echo wp_kses_post($button_label); ?></button>
165 165
 					</div>
166 166
 
167
-					<?php if ( false === $engine_select && false !== $engine && 'default' !== $engine ) : ?>
168
-						<input name="engine" type="hidden" value="<?php echo esc_attr( $engine ); ?>">
167
+					<?php if (false === $engine_select && false !== $engine && 'default' !== $engine) : ?>
168
+						<input name="engine" type="hidden" value="<?php echo esc_attr($engine); ?>">
169 169
 					<?php endif; ?>
170 170
 				</div>
171 171
 
172
-				<?php do_action( 'lsx_search_form_bottom' ); ?>
172
+				<?php do_action('lsx_search_form_bottom'); ?>
173 173
 
174 174
 			</form>
175 175
 
176 176
 		</nav>
177 177
 
178
-		<?php do_action( 'lsx_search_form_after' ); ?>
178
+		<?php do_action('lsx_search_form_after'); ?>
179 179
 		<?php
180 180
 		$return = ob_get_clean();
181 181
 
182
-		$return = preg_replace( '/[\n]+/', ' ', $return );
183
-		$return = preg_replace( '/[\t]+/', ' ', $return );
182
+		$return = preg_replace('/[\n]+/', ' ', $return);
183
+		$return = preg_replace('/[\t]+/', ' ', $return);
184 184
 
185 185
 		return $return;
186 186
 	}
@@ -188,22 +188,22 @@  discard block
 block discarded – undo
188 188
 	/**
189 189
 	 * Outputs the combination selector
190 190
 	 */
191
-	public function combo_box( $facets ) {
191
+	public function combo_box($facets) {
192 192
 		?>
193 193
 		<div class="field combination-dropdown">
194 194
 			<div class="dropdown">
195 195
 				<button data-selection="0" class="btn border-btn btn-dropdown dropdown-toggle btn-combination" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
196
-					<?php esc_attr_e( 'Select', 'lsx-search' ); ?>
196
+					<?php esc_attr_e('Select', 'lsx-search'); ?>
197 197
 					<span class="caret"></span>
198 198
 				</button>
199 199
 				<ul class="dropdown-menu">
200 200
 
201
-					<li style="display: none;"><a class="default" data-value="0" href="#"><?php esc_attr_e( 'Select ', 'lsx-search' ); ?></a></li>
201
+					<li style="display: none;"><a class="default" data-value="0" href="#"><?php esc_attr_e('Select ', 'lsx-search'); ?></a></li>
202 202
 
203
-					<?php foreach ( $facets as $facet ) {
204
-						$facet = FWP()->helper->get_facet_by_name( $facet );
203
+					<?php foreach ($facets as $facet) {
204
+						$facet = FWP()->helper->get_facet_by_name($facet);
205 205
 						?>
206
-						<li><a data-value="fwp_<?php echo wp_kses_post( $facet['name'] ); ?>" href="#"><?php echo wp_kses_post( $facet['label'] ); ?></a></li>
206
+						<li><a data-value="fwp_<?php echo wp_kses_post($facet['name']); ?>" href="#"><?php echo wp_kses_post($facet['label']); ?></a></li>
207 207
 					<?php } ?>
208 208
 				</ul>
209 209
 			</div>
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
 	/**
215 215
 	 * Grabs the Values for the Facet in Question.
216 216
 	 */
217
-	protected function get_form_facet( $facet_source = false ) {
217
+	protected function get_form_facet($facet_source = false) {
218 218
 		global $wpdb;
219 219
 
220 220
 		$values = array();
@@ -223,66 +223,66 @@  discard block
 block discarded – undo
223 223
 		$where = "f.facet_source = '{$facet_source}'";
224 224
 
225 225
 		//Check if the current facet is showing destinations.
226
-		if ( stripos( $facet_source, 'destination_to' ) ) {
226
+		if (stripos($facet_source, 'destination_to')) {
227 227
 			$from .= " INNER JOIN {$wpdb->posts} p ON f.facet_value = p.ID";
228 228
 			$where .= " AND p.post_parent = '0'";
229 229
 
230 230
 		}
231 231
 
232
-		$response = $wpdb->prepare( "SELECT {$select} FROM {$from} WHERE {$where}" );// WPCS: unprepared SQL OK.
232
+		$response = $wpdb->prepare("SELECT {$select} FROM {$from} WHERE {$where}"); // WPCS: unprepared SQL OK.
233 233
 
234
-		if ( ! empty( $response ) ) {
235
-			foreach ( $response as $re ) {
234
+		if (!empty($response)) {
235
+			foreach ($response as $re) {
236 236
 				$display_value = $re->facet_display_value;
237
-				if ( function_exists( 'pll_translate_string' ) ) {
237
+				if (function_exists('pll_translate_string')) {
238 238
 					$current_lang = pll_current_language();
239
-					$display_value = pll_translate_string( $display_value, $current_lang );
239
+					$display_value = pll_translate_string($display_value, $current_lang);
240 240
 				}
241
-				$display_value = apply_filters( 'lsx_search_facetwp_display_value', $display_value, $re->facet_value );
242
-				$values[ $re->facet_value ] = $display_value;
241
+				$display_value = apply_filters('lsx_search_facetwp_display_value', $display_value, $re->facet_value);
242
+				$values[$re->facet_value] = $display_value;
243 243
 			}
244 244
 		}
245 245
 
246
-		asort( $values );
246
+		asort($values);
247 247
 		return $values;
248 248
 	}
249 249
 
250 250
 	/**
251 251
 	 * Change FaceWP pagination HTML to be equal main pagination (WP-PageNavi)
252 252
 	 */
253
-	public function display_form_field( $type = 'select', $facet = array(), $values = array(), $combo = false ) {
254
-		if ( empty( $facet ) ) {
253
+	public function display_form_field($type = 'select', $facet = array(), $values = array(), $combo = false) {
254
+		if (empty($facet)) {
255 255
 			return;
256 256
 		}
257 257
 
258
-		$source = 'fwp_' . $facet['name'];
258
+		$source = 'fwp_'.$facet['name'];
259 259
 
260
-		switch ( $type ) {
260
+		switch ($type) {
261 261
 
262 262
 			case 'select': ?>
263
-				<div class="dropdown nav-item <?php if ( true === $combo ) { echo 'combination-dropdown'; } ?>">
264
-					<button data-selection="0" class="btn border-btn btn-dropdown dropdown-toggle" type="button" id="<?php echo wp_kses_post( $source ); ?>" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
265
-						<?php echo esc_attr( apply_filters( 'lsx_search_facet_label', __( 'Select', 'lsx-search' ) . ' ' . wp_kses_post( $facet['label'] ) ) ); ?>
263
+				<div class="dropdown nav-item <?php if (true === $combo) { echo 'combination-dropdown'; } ?>">
264
+					<button data-selection="0" class="btn border-btn btn-dropdown dropdown-toggle" type="button" id="<?php echo wp_kses_post($source); ?>" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
265
+						<?php echo esc_attr(apply_filters('lsx_search_facet_label', __('Select', 'lsx-search').' '.wp_kses_post($facet['label']))); ?>
266 266
 						<span class="caret"></span>
267 267
 					</button>
268
-					<ul class="dropdown-menu" aria-labelledby="<?php echo wp_kses_post( $source ); ?>">
269
-						<?php if ( ! empty( $values ) ) { ?>
268
+					<ul class="dropdown-menu" aria-labelledby="<?php echo wp_kses_post($source); ?>">
269
+						<?php if (!empty($values)) { ?>
270 270
 
271 271
 							<li style="display: none;">
272 272
 								<a class="default" data-value="0" href="#">
273 273
 									<?php
274
-										$facet_label = __( 'Select ', 'lsx-search' ) . ' ' . wp_kses_post( $facet['label'] );
275
-										$facet_label = apply_filters( 'lsx_search_facet_label', $facet_label );
276
-										echo esc_attr( $facet_label );
274
+										$facet_label = __('Select ', 'lsx-search').' '.wp_kses_post($facet['label']);
275
+										$facet_label = apply_filters('lsx_search_facet_label', $facet_label);
276
+										echo esc_attr($facet_label);
277 277
 									?>
278 278
 								</a>
279 279
 							</li>
280 280
 
281
-							<?php foreach ( $values as $key => $value ) { ?>
282
-								<li><a data-value="<?php echo wp_kses_post( $key ); ?>" href="#"><?php echo wp_kses_post( $value ); ?></a></li>
281
+							<?php foreach ($values as $key => $value) { ?>
282
+								<li><a data-value="<?php echo wp_kses_post($key); ?>" href="#"><?php echo wp_kses_post($value); ?></a></li>
283 283
 							<?php } ?>
284 284
 						<?php } else { ?>
285
-							<li><a data-value="0" href="#"><?php esc_attr_e( 'Please re-index your facets.', 'lsx-search' ); ?></a></li>
285
+							<li><a data-value="0" href="#"><?php esc_attr_e('Please re-index your facets.', 'lsx-search'); ?></a></li>
286 286
 						<?php } ?>
287 287
 					</ul>
288 288
 				</div>
@@ -291,7 +291,7 @@  discard block
 block discarded – undo
291 291
 
292 292
 			case 'datepicker': ?>
293 293
 				<div class="datepicker nav-item">
294
-					<input autocomplete="off" class="datepicker-value" placeholder="<?php echo wp_kses_post( apply_filters( 'lsx_search_facet_label' , $facet['label'] ) ); ?>" name="<?php echo wp_kses_post( $source ); ?>"  id="<?php echo wp_kses_post( $source ); ?>" type="text" value="" />
294
+					<input autocomplete="off" class="datepicker-value" placeholder="<?php echo wp_kses_post(apply_filters('lsx_search_facet_label', $facet['label'])); ?>" name="<?php echo wp_kses_post($source); ?>"  id="<?php echo wp_kses_post($source); ?>" type="text" value="" />
295 295
 				</div>
296 296
 			<?php
297 297
 				break;
Please login to merge, or discard this patch.
classes/class-frontend.php 2 patches
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -989,8 +989,11 @@
 block discarded – undo
989 989
 
990 990
 		if ( 'search' === $this->facet_data[ $facet ]['type'] ) : ?>
991 991
 			<?php echo do_shortcode( '[facetwp facet="' . $facet . '"]' ); ?>
992
-		<?php else : ?>
993
-			<div class="col-xs-12 facetwp-item parent-facetwp-facet-<?php echo esc_html( $facet ); ?> <?php echo esc_attr( $col_class ); ?>">
992
+		<?php else {
993
+     : ?>
994
+			<div class="col-xs-12 facetwp-item parent-facetwp-facet-<?php echo esc_html( $facet );
995
+}
996
+?> <?php echo esc_attr( $col_class ); ?>">
994 997
 				<?php if ( ! $show_collapse ) { ?>
995 998
 					<div class="facetwp-collapsed">
996 999
 						<h3 class="lsx-search-title"><?php echo wp_kses_post( $this->facet_data[ $facet ]['label'] ); ?></h3>
Please login to merge, or discard this patch.
Spacing   +338 added lines, -338 removed lines patch added patch discarded remove patch
@@ -70,28 +70,28 @@  discard block
 block discarded – undo
70 70
 		$this->options = \lsx\search\includes\get_options();
71 71
 		$this->load_classes();
72 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' ) );
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 88
 
89 89
 		// Redirects.
90
-		add_action( 'template_redirect', array( $this, 'pretty_search_redirect' ) );
91
-		add_filter( 'pre_get_posts', array( $this, 'pretty_search_parse_query' ) );
90
+		add_action('template_redirect', array($this, 'pretty_search_redirect'));
91
+		add_filter('pre_get_posts', array($this, 'pretty_search_parse_query'));
92 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 );
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 95
 	}
96 96
 
97 97
 	/**
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
 	 */
104 104
 	public static function get_instance() {
105 105
 		// If the single instance hasn't been set, set it now.
106
-		if ( null === self::$instance ) {
106
+		if (null === self::$instance) {
107 107
 			self::$instance = new self();
108 108
 		}
109 109
 		return self::$instance;
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
 	 * Loads the variable classes and the static classes.
114 114
 	 */
115 115
 	private function load_classes() {
116
-		require_once LSX_SEARCH_PATH . 'classes/frontend/class-layout.php';
116
+		require_once LSX_SEARCH_PATH.'classes/frontend/class-layout.php';
117 117
 		$this->layout = frontend\Layout::get_instance();
118 118
 	}
119 119
 
@@ -123,10 +123,10 @@  discard block
 block discarded – undo
123 123
 	public function set_vars() {
124 124
 		$post_type = '';
125 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 );
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 130
 		$this->post_types      = get_post_types();
131 131
 		$this->post_type_slugs = array(
132 132
 			'post'        => 'posts',
@@ -139,22 +139,22 @@  discard block
 block discarded – undo
139 139
 		);
140 140
 		$this->set_search_prefix();
141 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 );
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 144
 	}
145 145
 
146 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 );
147
+		$cmb2_options = get_option('lsx-search-settings');
148
+		if (false !== $cmb2_options && !empty($cmb2_options)) {
149
+			$this->set_search_prefix(true);
150 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 ) ) {
151
+			foreach ($this->options['display'] as $option_key => $option_value) {
152
+				if (is_array($option_value) && !empty($option_value)) {
153 153
 					$new_values = array();
154
-					foreach ( $option_value as $empty_key => $key_value ) {
155
-						$new_values[ $key_value ] = 'on';
154
+					foreach ($option_value as $empty_key => $key_value) {
155
+						$new_values[$key_value] = 'on';
156 156
 					}
157
-					$this->options['display'][ $option_key ] = $new_values;
157
+					$this->options['display'][$option_key] = $new_values;
158 158
 				}
159 159
 			}
160 160
 			$this->new_options = true;
@@ -164,46 +164,46 @@  discard block
 block discarded – undo
164 164
 
165 165
 	private function disable_to_search_actions() {
166 166
 		global $lsx_to_search_fwp, $lsx_to_search;
167
-		if ( null !== $lsx_to_search ) {
167
+		if (null !== $lsx_to_search) {
168 168
 			// Redirects.
169
-			remove_filter( 'template_include', array( $lsx_to_search, 'search_template_include' ), 99 );
170
-			remove_action( 'template_redirect', array( $lsx_to_search, 'pretty_search_redirect' ) );
171
-			remove_filter( 'pre_get_posts', array( $lsx_to_search, 'pretty_search_parse_query' ) );
169
+			remove_filter('template_include', array($lsx_to_search, 'search_template_include'), 99);
170
+			remove_action('template_redirect', array($lsx_to_search, 'pretty_search_redirect'));
171
+			remove_filter('pre_get_posts', array($lsx_to_search, 'pretty_search_parse_query'));
172 172
 
173 173
 			// Layout Filter.
174
-			remove_filter( 'lsx_layout', array( $lsx_to_search, 'lsx_layout' ), 20, 1 );
175
-			remove_filter( 'lsx_layout_selector', array( $lsx_to_search, 'lsx_layout_selector' ), 10, 4 );
176
-			remove_filter( 'lsx_to_archive_layout', array( $lsx_to_search, 'lsx_to_search_archive_layout' ), 10, 2 );
174
+			remove_filter('lsx_layout', array($lsx_to_search, 'lsx_layout'), 20, 1);
175
+			remove_filter('lsx_layout_selector', array($lsx_to_search, 'lsx_layout_selector'), 10, 4);
176
+			remove_filter('lsx_to_archive_layout', array($lsx_to_search, 'lsx_to_search_archive_layout'), 10, 2);
177 177
 
178
-			remove_action( 'lsx_search_sidebar_top', array( $lsx_to_search, 'search_sidebar_top' ) );
179
-			remove_action( 'pre_get_posts', array( $lsx_to_search, 'price_sorting' ), 100 );
178
+			remove_action('lsx_search_sidebar_top', array($lsx_to_search, 'search_sidebar_top'));
179
+			remove_action('pre_get_posts', array($lsx_to_search, 'price_sorting'), 100);
180 180
 
181 181
 			//add_shortcode( 'lsx_search_form', array( 'LSX_TO_Search_Frontend', 'search_form' ) );
182
-			remove_filter( 'searchwp_short_circuit', array( $lsx_to_search, 'searchwp_short_circuit' ), 10, 2 );
183
-			remove_filter( 'get_search_query', array( $lsx_to_search, 'get_search_query' ) );
184
-			remove_filter( 'body_class', array( $lsx_to_search, 'to_add_search_url_class' ), 20 );
182
+			remove_filter('searchwp_short_circuit', array($lsx_to_search, 'searchwp_short_circuit'), 10, 2);
183
+			remove_filter('get_search_query', array($lsx_to_search, 'get_search_query'));
184
+			remove_filter('body_class', array($lsx_to_search, 'to_add_search_url_class'), 20);
185 185
 
186
-			remove_filter( 'facetwp_preload_url_vars', array( $lsx_to_search, 'preload_url_vars' ), 10, 1 );
187
-			remove_filter( 'wpseo_json_ld_search_url', array( $lsx_to_search, 'change_json_ld_search_url' ), 10, 1 );
186
+			remove_filter('facetwp_preload_url_vars', array($lsx_to_search, 'preload_url_vars'), 10, 1);
187
+			remove_filter('wpseo_json_ld_search_url', array($lsx_to_search, 'change_json_ld_search_url'), 10, 1);
188 188
 		}
189
-		if ( null !== $lsx_to_search_fwp ) {
190
-			remove_filter( 'facetwp_indexer_row_data', array( $lsx_to_search_fwp, 'facetwp_index_row_data' ), 10, 2 );
191
-			remove_filter( 'facetwp_index_row', array( $lsx_to_search_fwp, 'facetwp_index_row' ), 10, 2 );
189
+		if (null !== $lsx_to_search_fwp) {
190
+			remove_filter('facetwp_indexer_row_data', array($lsx_to_search_fwp, 'facetwp_index_row_data'), 10, 2);
191
+			remove_filter('facetwp_index_row', array($lsx_to_search_fwp, 'facetwp_index_row'), 10, 2);
192 192
 
193
-			remove_filter( 'facetwp_sort_options', array( $lsx_to_search_fwp, 'facet_sort_options' ), 10, 2 );
193
+			remove_filter('facetwp_sort_options', array($lsx_to_search_fwp, 'facet_sort_options'), 10, 2);
194 194
 
195
-			remove_filter( 'facetwp_pager_html', array( $lsx_to_search_fwp, 'facetwp_pager_html' ), 10, 2 );
196
-			remove_filter( 'facetwp_result_count', array( $lsx_to_search_fwp, 'facetwp_result_count' ), 10, 2 );
195
+			remove_filter('facetwp_pager_html', array($lsx_to_search_fwp, 'facetwp_pager_html'), 10, 2);
196
+			remove_filter('facetwp_result_count', array($lsx_to_search_fwp, 'facetwp_result_count'), 10, 2);
197 197
 
198
-			remove_filter( 'facetwp_facet_html', array( $lsx_to_search_fwp, 'destination_facet_html' ), 10, 2 );
199
-			remove_filter( 'facetwp_facet_html', array( $lsx_to_search_fwp, 'slide_facet_html' ), 10, 2 );
200
-			remove_filter( 'facetwp_facet_html', array( $lsx_to_search_fwp, 'search_facet_html' ), 10, 2 );
201
-			remove_filter( 'facetwp_load_css', array( $lsx_to_search_fwp, 'facetwp_load_css' ), 10, 1 );
198
+			remove_filter('facetwp_facet_html', array($lsx_to_search_fwp, 'destination_facet_html'), 10, 2);
199
+			remove_filter('facetwp_facet_html', array($lsx_to_search_fwp, 'slide_facet_html'), 10, 2);
200
+			remove_filter('facetwp_facet_html', array($lsx_to_search_fwp, 'search_facet_html'), 10, 2);
201
+			remove_filter('facetwp_load_css', array($lsx_to_search_fwp, 'facetwp_load_css'), 10, 1);
202 202
 
203
-			if ( class_exists( 'LSX_Currencies' ) ) {
204
-				remove_filter( 'facetwp_render_output', array( $lsx_to_search_fwp, 'slide_price_lsx_currencies' ), 10, 2 );
203
+			if (class_exists('LSX_Currencies')) {
204
+				remove_filter('facetwp_render_output', array($lsx_to_search_fwp, 'slide_price_lsx_currencies'), 10, 2);
205 205
 			} else {
206
-				remove_filter( 'facetwp_render_output', array( $lsx_to_search_fwp, 'slide_price_to_currencies' ), 10, 2 );
206
+				remove_filter('facetwp_render_output', array($lsx_to_search_fwp, 'slide_price_to_currencies'), 10, 2);
207 207
 			}
208 208
 		}
209 209
 	}
@@ -216,19 +216,19 @@  discard block
 block discarded – undo
216 216
 	public function is_search_enabled() {
217 217
 		$search_enabled = false;
218 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 ] ) {
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 221
 				$search_enabled = true;
222 222
 			}
223 223
 		} else {
224 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' ] ) {
225
+			if (!empty($this->options) && isset($this->options['display']) && isset($this->options['display'][$enable_prefix.'_enable']) && 'on' === $this->options['display'][$enable_prefix.'_enable']) {
226 226
 				$search_enabled = true;
227 227
 			}
228 228
 		}
229 229
 
230 230
 		// These are specific plugin exclusions.
231
-		if ( is_tax( array( 'wcpv_product_vendors' ) ) ) {
231
+		if (is_tax(array('wcpv_product_vendors'))) {
232 232
 			$search_enabled = false;
233 233
 		}
234 234
 		return $search_enabled;
@@ -239,44 +239,44 @@  discard block
 block discarded – undo
239 239
 	 *
240 240
 	 * @return void
241 241
 	 */
242
-	private function set_search_prefix( $new_prefixes = false ) {
243
-		$page_for_posts = get_option( 'page_for_posts' );
244
-		if ( false !== $new_prefixes ) {
242
+	private function set_search_prefix($new_prefixes = false) {
243
+		$page_for_posts = get_option('page_for_posts');
244
+		if (false !== $new_prefixes) {
245 245
 			$this->taxonomies = array();
246 246
 			$this->post_types = array();
247 247
 		}
248 248
 
249
-		if ( is_search() ) {
250
-			if ( false === $new_prefixes ) {
249
+		if (is_search()) {
250
+			if (false === $new_prefixes) {
251 251
 				$this->search_core_suffix = 'core';
252 252
 				$this->search_prefix      = 'search';
253 253
 			} else {
254 254
 				$this->search_core_suffix = 'enable';
255 255
 				$this->search_prefix      = 'engine_search';
256 256
 			}
257
-		} elseif ( is_post_type_archive( $this->post_types ) || is_tax() || is_page( $page_for_posts ) || is_home() || is_category() || is_tag() ) {
258
-			if ( false === $new_prefixes ) {
257
+		} elseif (is_post_type_archive($this->post_types) || is_tax() || is_page($page_for_posts) || is_home() || is_category() || is_tag()) {
258
+			if (false === $new_prefixes) {
259 259
 				$this->search_core_suffix = 'search';
260 260
 			} else {
261 261
 				$this->search_core_suffix = 'enable';
262 262
 			}
263 263
 
264
-			if ( is_tax() ) {
265
-				$tax = get_query_var( 'taxonomy' );
266
-				$tax = get_taxonomy( $tax );
264
+			if (is_tax()) {
265
+				$tax = get_query_var('taxonomy');
266
+				$tax = get_taxonomy($tax);
267 267
 				$post_type = $tax->object_type[0];
268
-			} else if ( is_page( $page_for_posts ) || is_category() || is_tag() || is_home() ) {
268
+			} else if (is_page($page_for_posts) || is_category() || is_tag() || is_home()) {
269 269
 				$post_type = 'post';
270 270
 			} else {
271
-				$post_type = get_query_var( 'post_type' );
271
+				$post_type = get_query_var('post_type');
272 272
 			}
273 273
 
274
-			if ( false === $new_prefixes ) {
275
-				if ( isset( $this->tabs[ $post_type ] ) ) {
276
-					$this->search_prefix = $this->tabs[ $post_type ] . '_archive';
274
+			if (false === $new_prefixes) {
275
+				if (isset($this->tabs[$post_type])) {
276
+					$this->search_prefix = $this->tabs[$post_type].'_archive';
277 277
 				}
278 278
 			} else {
279
-				$this->search_prefix = $post_type . '_search';
279
+				$this->search_prefix = $post_type.'_search';
280 280
 			}
281 281
 		}
282 282
 	}
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
 	 */
287 287
 	public function set_facetwp_vars() {
288 288
 
289
-		if ( class_exists( 'FacetWP' ) ) {
289
+		if (class_exists('FacetWP')) {
290 290
 			$facet_data = FWP()->helper->get_facets();
291 291
 		}
292 292
 
@@ -294,12 +294,12 @@  discard block
 block discarded – undo
294 294
 
295 295
 		$this->facet_data['search_form'] = array(
296 296
 			'name' => 'search_form',
297
-			'label' => esc_html__( 'Search Form', 'lsx-search' ),
297
+			'label' => esc_html__('Search Form', 'lsx-search'),
298 298
 		);
299 299
 
300
-		if ( ! empty( $facet_data ) && is_array( $facet_data ) ) {
301
-			foreach ( $facet_data as $facet ) {
302
-				$this->facet_data[ $facet['name'] ] = $facet;
300
+		if (!empty($facet_data) && is_array($facet_data)) {
301
+			foreach ($facet_data as $facet) {
302
+				$this->facet_data[$facet['name']] = $facet;
303 303
 			}
304 304
 		}
305 305
 	}
@@ -309,60 +309,60 @@  discard block
 block discarded – undo
309 309
 	 */
310 310
 	public function core() {
311 311
 
312
-		if ( true === $this->search_enabled ) {
313
-			add_action( 'wp_enqueue_scripts', array( $this, 'assets' ), 999 );
312
+		if (true === $this->search_enabled) {
313
+			add_action('wp_enqueue_scripts', array($this, 'assets'), 999);
314 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 );
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 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 );
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 323
 
324
-			if ( class_exists( 'LSX_Videos' ) ) {
324
+			if (class_exists('LSX_Videos')) {
325 325
 				global $lsx_videos_frontend;
326
-				remove_action( 'lsx_content_top', array( $lsx_videos_frontend, 'categories_tabs' ), 15 );
326
+				remove_action('lsx_content_top', array($lsx_videos_frontend, 'categories_tabs'), 15);
327 327
 			}
328 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' ) );
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 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 );
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 337
 			}
338 338
 
339
-			add_action( 'lsx_content_wrap_before', array( $this, 'search_sidebar' ), 150 );
339
+			add_action('lsx_content_wrap_before', array($this, 'search_sidebar'), 150);
340 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' );
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 345
 
346
-				add_filter( 'loop_shop_columns', function() {
346
+				add_filter('loop_shop_columns', function() {
347 347
 					return 3;
348 348
 				} );
349 349
 
350 350
 				// Actions added by LSX theme
351
-				remove_action( 'lsx_content_wrap_before', 'lsx_global_header' );
351
+				remove_action('lsx_content_wrap_before', 'lsx_global_header');
352 352
 
353 353
 				// Actions added be LSX theme / woocommerce.php file
354
-				remove_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9 );
355
-				remove_action( 'woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10 );
356
-				remove_action( 'woocommerce_after_shop_loop', 'woocommerce_result_count', 20 );
357
-				remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 30 );
358
-				remove_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 );
354
+				remove_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9);
355
+				remove_action('woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10);
356
+				remove_action('woocommerce_after_shop_loop', 'woocommerce_result_count', 20);
357
+				remove_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 30);
358
+				remove_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31);
359 359
 
360 360
 				// Actions added be LSX theme / woocommerce.php file
361
-				remove_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9 );
362
-				remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10 );
363
-				remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 );
364
-				remove_action( 'woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30 );
365
-				remove_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 );
361
+				remove_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9);
362
+				remove_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10);
363
+				remove_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20);
364
+				remove_action('woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30);
365
+				remove_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31);
366 366
 			}
367 367
 		}
368 368
 	}
@@ -373,7 +373,7 @@  discard block
 block discarded – undo
373 373
 	 * @param  array $classes The classes.
374 374
 	 * @return array $classes The classes.
375 375
 	 */
376
-	public function body_class( $classes ) {
376
+	public function body_class($classes) {
377 377
 		$classes[] = 'lsx-search-enabled';
378 378
 		return $classes;
379 379
 	}
@@ -384,7 +384,7 @@  discard block
 block discarded – undo
384 384
 	 * @param  string $action
385 385
 	 * @return string $action
386 386
 	 */
387
-	public function top_of_blog_action( $action = '' ) {
387
+	public function top_of_blog_action($action = '') {
388 388
 		$action = 'lsx_content_wrap_before';
389 389
 		return $action;
390 390
 	}
@@ -395,7 +395,7 @@  discard block
 block discarded – undo
395 395
 	 * @param  string $action
396 396
 	 * @return string $action
397 397
 	 */
398
-	public function blog_description_class( $class = '' ) {
398
+	public function blog_description_class($class = '') {
399 399
 		$class .= ' col-md-12 search-description';
400 400
 		return $class;
401 401
 	}
@@ -406,13 +406,13 @@  discard block
 block discarded – undo
406 406
 	 * @return void
407 407
 	 */
408 408
 	public function check_for_results() {
409
-		if ( true === $this->search_enabled ) {
409
+		if (true === $this->search_enabled) {
410 410
 			global $wp_query;
411
-			if ( empty( $wp_query->posts ) ) {
411
+			if (empty($wp_query->posts)) {
412 412
 				$this->has_posts = false;
413
-				remove_action( 'lsx_content_top', array( $this, 'facet_top_bar' ) );
414
-				remove_action( 'lsx_content_bottom', array( $this, 'facet_bottom_bar' ) );
415
-				remove_action( 'lsx_content_wrap_before', array( $this, 'search_sidebar' ), 150 );
413
+				remove_action('lsx_content_top', array($this, 'facet_top_bar'));
414
+				remove_action('lsx_content_bottom', array($this, 'facet_bottom_bar'));
415
+				remove_action('lsx_content_wrap_before', array($this, 'search_sidebar'), 150);
416 416
 			} else {
417 417
 				$this->has_posts = true;
418 418
 			}
@@ -422,12 +422,12 @@  discard block
 block discarded – undo
422 422
 	/**
423 423
 	 * Filter the post types.
424 424
 	 */
425
-	public function filter_post_types( $query ) {
426
-		if ( ! is_admin() && $query->is_main_query() && $query->is_search() ) {
427
-			if ( ! empty( $this->options ) && ! empty( $this->options['display']['search_enable_core'] ) ) {
428
-				if ( ! empty( $this->options['general']['search_post_types'] ) && is_array( $this->options['general']['search_post_types'] ) ) {
429
-					$post_types = array_keys( $this->options['general']['search_post_types'] );
430
-					$query->set( 'post_type', $post_types );
425
+	public function filter_post_types($query) {
426
+		if (!is_admin() && $query->is_main_query() && $query->is_search()) {
427
+			if (!empty($this->options) && !empty($this->options['display']['search_enable_core'])) {
428
+				if (!empty($this->options['general']['search_post_types']) && is_array($this->options['general']['search_post_types'])) {
429
+					$post_types = array_keys($this->options['general']['search_post_types']);
430
+					$query->set('post_type', $post_types);
431 431
 				}
432 432
 			}
433 433
 		}
@@ -436,23 +436,23 @@  discard block
 block discarded – undo
436 436
 	/**
437 437
 	 * Sets post types with active search options.
438 438
 	 */
439
-	public function register_post_types( $post_types ) {
440
-		$post_types = array( 'post', 'project', 'service', 'team', 'testimonial', 'video', 'product' );
439
+	public function register_post_types($post_types) {
440
+		$post_types = array('post', 'project', 'service', 'team', 'testimonial', 'video', 'product');
441 441
 		return $post_types;
442 442
 	}
443 443
 
444 444
 	/**
445 445
 	 * Sets taxonomies with active search options.
446 446
 	 */
447
-	public function register_taxonomies( $taxonomies ) {
448
-		$taxonomies = array( 'category', 'post_tag', 'project-group', 'service-group', 'team_role', 'video-category', 'product_cat', 'product_tag' );
447
+	public function register_taxonomies($taxonomies) {
448
+		$taxonomies = array('category', 'post_tag', 'project-group', 'service-group', 'team_role', 'video-category', 'product_cat', 'product_tag');
449 449
 		return $taxonomies;
450 450
 	}
451 451
 
452 452
 	/**
453 453
 	 * Sets post types with active search options.
454 454
 	 */
455
-	public function register_post_type_tabs( $post_types_plural ) {
455
+	public function register_post_type_tabs($post_types_plural) {
456 456
 		$post_types_plural = array(
457 457
 			'post' => 'posts',
458 458
 			'project' => 'projects',
@@ -469,23 +469,23 @@  discard block
 block discarded – undo
469 469
 	 * Enqueue styles and scripts.
470 470
 	 */
471 471
 	public function assets() {
472
-		add_filter( 'lsx_defer_parsing_of_js', array( $this, 'skip_js_defer' ), 10, 4 );
473
-		wp_enqueue_script( 'touchSwipe', LSX_SEARCH_URL . 'assets/js/vendor/jquery.touchSwipe.min.js', array( 'jquery' ), LSX_SEARCH_VER, true );
474
-		wp_enqueue_script( 'slideandswipe', LSX_SEARCH_URL . 'assets/js/vendor/jquery.slideandswipe.min.js', array( 'jquery', 'touchSwipe' ), LSX_SEARCH_VER, true );
475
-		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 );
472
+		add_filter('lsx_defer_parsing_of_js', array($this, 'skip_js_defer'), 10, 4);
473
+		wp_enqueue_script('touchSwipe', LSX_SEARCH_URL.'assets/js/vendor/jquery.touchSwipe.min.js', array('jquery'), LSX_SEARCH_VER, true);
474
+		wp_enqueue_script('slideandswipe', LSX_SEARCH_URL.'assets/js/vendor/jquery.slideandswipe.min.js', array('jquery', 'touchSwipe'), LSX_SEARCH_VER, true);
475
+		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);
476 476
 
477
-		$params = apply_filters( 'lsx_search_js_params', array(
478
-			'ajax_url' => admin_url( 'admin-ajax.php' ),
477
+		$params = apply_filters('lsx_search_js_params', array(
478
+			'ajax_url' => admin_url('admin-ajax.php'),
479 479
 		));
480 480
 
481
-		wp_localize_script( 'lsx-search', 'lsx_customizer_params', $params );
481
+		wp_localize_script('lsx-search', 'lsx_customizer_params', $params);
482 482
 
483
-		wp_enqueue_style( 'lsx-search', LSX_SEARCH_URL . 'assets/css/lsx-search.css', array(), LSX_SEARCH_VER );
484
-		wp_style_add_data( 'lsx-search', 'rtl', 'replace' );
483
+		wp_enqueue_style('lsx-search', LSX_SEARCH_URL.'assets/css/lsx-search.css', array(), LSX_SEARCH_VER);
484
+		wp_style_add_data('lsx-search', 'rtl', 'replace');
485 485
 
486
-		if ( true === $this->new_options ) {
487
-			wp_deregister_style( 'lsx_to_search' );
488
-			wp_deregister_script( 'lsx_to_search' );
486
+		if (true === $this->new_options) {
487
+			wp_deregister_style('lsx_to_search');
488
+			wp_deregister_script('lsx_to_search');
489 489
 		}
490 490
 	}
491 491
 
@@ -498,8 +498,8 @@  discard block
 block discarded – undo
498 498
 	 * @param string  $href
499 499
 	 * @return boolean
500 500
 	 */
501
-	public function skip_js_defer( $should_skip, $tag, $handle, $href ) {
502
-		if ( ! is_admin() && ( false !== stripos( $href, 'lsx-search.min.js' ) || false !== stripos( $href, 'lsx-search.js' ) ) ) {
501
+	public function skip_js_defer($should_skip, $tag, $handle, $href) {
502
+		if (!is_admin() && (false !== stripos($href, 'lsx-search.min.js') || false !== stripos($href, 'lsx-search.js'))) {
503 503
 			$should_skip = true;
504 504
 		}
505 505
 		return $should_skip;
@@ -511,10 +511,10 @@  discard block
 block discarded – undo
511 511
 	 * @param	$template
512 512
 	 * @return	$template
513 513
 	 */
514
-	public function search_template_include( $template ) {
515
-		if ( is_main_query() && is_search() ) {
516
-			if ( file_exists( LSX_SEARCH_PATH . 'templates/search.php' ) ) {
517
-				$template = LSX_SEARCH_PATH . 'templates/search.php';
514
+	public function search_template_include($template) {
515
+		if (is_main_query() && is_search()) {
516
+			if (file_exists(LSX_SEARCH_PATH.'templates/search.php')) {
517
+				$template = LSX_SEARCH_PATH.'templates/search.php';
518 518
 			}
519 519
 		}
520 520
 
@@ -527,9 +527,9 @@  discard block
 block discarded – undo
527 527
 	 * @param [type] $query
528 528
 	 * @return void
529 529
 	 */
530
-	public function ignore_sticky_search( $query ) {
531
-		if ( $query->is_main_query() && is_home() ) {
532
-			$query->set( 'ignore_sticky_posts', true );
530
+	public function ignore_sticky_search($query) {
531
+		if ($query->is_main_query() && is_home()) {
532
+			$query->set('ignore_sticky_posts', true);
533 533
 		}
534 534
 	}
535 535
 
@@ -537,49 +537,49 @@  discard block
 block discarded – undo
537 537
 	 * Rewrite the search URL
538 538
 	 */
539 539
 	public function pretty_search_redirect() {
540
-		global $wp_rewrite,$wp_query;
540
+		global $wp_rewrite, $wp_query;
541 541
 
542
-		if ( ! isset( $wp_rewrite ) || ! is_object( $wp_rewrite ) || ! $wp_rewrite->using_permalinks() ) {
542
+		if (!isset($wp_rewrite) || !is_object($wp_rewrite) || !$wp_rewrite->using_permalinks()) {
543 543
 			return;
544 544
 		}
545 545
 
546 546
 		$search_base = $wp_rewrite->search_base;
547 547
 
548
-		if ( is_search() && ! is_admin() && strpos( $_SERVER['REQUEST_URI'], "/{$search_base}/" ) === false ) {
549
-			$search_query = get_query_var( 's' );
550
-			if ( empty( $search_query ) && isset( $_GET['s'] ) ) {
548
+		if (is_search() && !is_admin() && strpos($_SERVER['REQUEST_URI'], "/{$search_base}/") === false) {
549
+			$search_query = get_query_var('s');
550
+			if (empty($search_query) && isset($_GET['s'])) {
551 551
 				$search_query = $_GET['s'];
552 552
 			}
553 553
 			$engine = '';
554 554
 
555 555
 			// If the search was triggered by a supplemental engine.
556
-			if ( isset( $_GET['engine'] ) && 'default' !== $_GET['engine'] ) {
557
-				$engine = sanitize_text_field( wp_unslash( $_GET['engine'] ) );
558
-				$index  = array_search( $engine, $this->post_type_slugs, true );
559
-				if ( false !== $index ) {
556
+			if (isset($_GET['engine']) && 'default' !== $_GET['engine']) {
557
+				$engine = sanitize_text_field(wp_unslash($_GET['engine']));
558
+				$index  = array_search($engine, $this->post_type_slugs, true);
559
+				if (false !== $index) {
560 560
 					$engine = $index;
561 561
 				}
562
-				$engine = $engine . '/';
562
+				$engine = $engine.'/';
563 563
 			}
564 564
 
565 565
 			$get_array = $_GET;
566 566
 
567
-			if ( is_array( $get_array ) && ! empty( $get_array ) ) {
567
+			if (is_array($get_array) && !empty($get_array)) {
568 568
 				$vars_to_maintain = array();
569 569
 
570
-				foreach ( $get_array as $ga_key => $ga_value ) {
571
-					if ( false !== strpos( $ga_key, 'fwp_' ) ) {
572
-						$vars_to_maintain[] = $ga_key . '=' . $ga_value;
570
+				foreach ($get_array as $ga_key => $ga_value) {
571
+					if (false !== strpos($ga_key, 'fwp_')) {
572
+						$vars_to_maintain[] = $ga_key.'='.$ga_value;
573 573
 					}
574 574
 				}
575 575
 			}
576 576
 
577
-			$redirect_url = home_url( "/{$search_base}/" . $engine . urlencode( $search_query ) );
577
+			$redirect_url = home_url("/{$search_base}/".$engine.urlencode($search_query));
578 578
 
579
-			if ( ! empty( $vars_to_maintain ) ) {
580
-				$redirect_url .= '?' . implode( '&', $vars_to_maintain );
579
+			if (!empty($vars_to_maintain)) {
580
+				$redirect_url .= '?'.implode('&', $vars_to_maintain);
581 581
 			}
582
-			wp_redirect( $redirect_url );
582
+			wp_redirect($redirect_url);
583 583
 			exit();
584 584
 		}
585 585
 	}
@@ -587,7 +587,7 @@  discard block
 block discarded – undo
587 587
 	/**
588 588
 	 * Parse the Query and trigger a search
589 589
 	 */
590
-	public function pretty_search_parse_query( $query ) {
590
+	public function pretty_search_parse_query($query) {
591 591
 		$this->post_type_slugs = array(
592 592
 			'post' => 'posts',
593 593
 			'project' => 'projects',
@@ -597,26 +597,26 @@  discard block
 block discarded – undo
597 597
 			'video' => 'videos',
598 598
 			'product' => 'products', // WooCommerce
599 599
 		);
600
-		if ( $query->is_search() && ! is_admin() && $query->is_main_query() ) {
601
-			$search_query = $query->get( 's' );
602
-			$keyword_test = explode( '/', $search_query );
600
+		if ($query->is_search() && !is_admin() && $query->is_main_query()) {
601
+			$search_query = $query->get('s');
602
+			$keyword_test = explode('/', $search_query);
603 603
 
604
-			$index = array_search( $keyword_test[0], $this->post_type_slugs, true );
605
-			if ( false !== $index ) {
606
-				$engine = $this->post_type_slugs[ $index ];
604
+			$index = array_search($keyword_test[0], $this->post_type_slugs, true);
605
+			if (false !== $index) {
606
+				$engine = $this->post_type_slugs[$index];
607 607
 
608
-				$query->set( 'post_type', $engine );
609
-				$query->set( 'engine', $engine );
608
+				$query->set('post_type', $engine);
609
+				$query->set('engine', $engine);
610 610
 
611
-				if ( count( $keyword_test ) > 1 ) {
612
-					$query->set( 's', $keyword_test[1] );
613
-				} elseif ( post_type_exists( $engine ) ) {
614
-					$query->set( 's', '' );
611
+				if (count($keyword_test) > 1) {
612
+					$query->set('s', $keyword_test[1]);
613
+				} elseif (post_type_exists($engine)) {
614
+					$query->set('s', '');
615 615
 				}
616 616
 			} else {
617
-				if ( isset( $this->options['general']['search_post_types'] ) && is_array( $this->options['general']['search_post_types'] ) ) {
618
-					$post_types = array_keys( $this->options['general']['search_post_types'] );
619
-					$query->set( 'post_type', $post_types );
617
+				if (isset($this->options['general']['search_post_types']) && is_array($this->options['general']['search_post_types'])) {
618
+					$post_types = array_keys($this->options['general']['search_post_types']);
619
+					$query->set('post_type', $post_types);
620 620
 				}
621 621
 			}
622 622
 		}
@@ -629,18 +629,18 @@  discard block
 block discarded – undo
629 629
 	 * @return url
630 630
 	 */
631 631
 	public function change_json_ld_search_url() {
632
-		return trailingslashit( home_url() ) . 'search/{search_term_string}';
632
+		return trailingslashit(home_url()).'search/{search_term_string}';
633 633
 	}
634 634
 
635 635
 	/**
636 636
 	 * A filter to set the layout to 2 column.
637 637
 	 */
638
-	public function lsx_layout( $layout ) {
639
-		if ( ! empty( $this->options['display'][ $this->search_prefix . '_layout' ] ) ) {
640
-			if ( false === $this->has_posts ) {
638
+	public function lsx_layout($layout) {
639
+		if (!empty($this->options['display'][$this->search_prefix.'_layout'])) {
640
+			if (false === $this->has_posts) {
641 641
 				$layout = '1c';
642 642
 			} else {
643
-				$layout = $this->options['display'][ $this->search_prefix . '_layout' ];
643
+				$layout = $this->options['display'][$this->search_prefix.'_layout'];
644 644
 			}
645 645
 		}
646 646
 		return $layout;
@@ -650,23 +650,23 @@  discard block
 block discarded – undo
650 650
 	 * Outputs the Search Title Facet
651 651
 	 */
652 652
 	public function search_sidebar_top() {
653
-		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 ) ) {
653
+		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)) {
654 654
 
655
-			if ( ! is_search() ) {
655
+			if (!is_search()) {
656 656
 
657
-				foreach ( $this->options['display'][ $this->search_prefix . '_facets' ] as $facet => $facet_useless ) {
657
+				foreach ($this->options['display'][$this->search_prefix.'_facets'] as $facet => $facet_useless) {
658 658
 
659
-					if ( isset( $this->facet_data[ $facet ] ) && 'search' === $this->facet_data[ $facet ]['type'] ) {
660
-						echo wp_kses_post( '<div class="row">' );
661
-							$this->display_facet_default( $facet );
662
-						echo wp_kses_post( '</div>' );
663
-						unset( $this->options['display'][ $this->search_prefix . '_facets' ][ $facet ] );
659
+					if (isset($this->facet_data[$facet]) && 'search' === $this->facet_data[$facet]['type']) {
660
+						echo wp_kses_post('<div class="row">');
661
+							$this->display_facet_default($facet);
662
+						echo wp_kses_post('</div>');
663
+						unset($this->options['display'][$this->search_prefix.'_facets'][$facet]);
664 664
 					}
665 665
 				}
666 666
 			} else {
667
-				echo wp_kses_post( '<div class="row">' );
667
+				echo wp_kses_post('<div class="row">');
668 668
 					$this->display_facet_search();
669
-				echo wp_kses_post( '</div>' );
669
+				echo wp_kses_post('</div>');
670 670
 			}
671 671
 		}
672 672
 	}
@@ -678,13 +678,13 @@  discard block
 block discarded – undo
678 678
 	 *
679 679
 	 * @return string
680 680
 	 */
681
-	public function search_facet_html( $output, $params ) {
682
-		if ( 'search' == $params['facet']['type'] ) {
681
+	public function search_facet_html($output, $params) {
682
+		if ('search' == $params['facet']['type']) {
683 683
 
684 684
 			$value = (array) $params['selected_values'];
685
-			$value = empty( $value ) ? '' : stripslashes( $value[0] );
686
-			$placeholder = isset( $params['facet']['placeholder'] ) ? $params['facet']['placeholder'] : __( 'Search...', 'lsx-search' );
687
-			$placeholder = facetwp_i18n( $placeholder );
685
+			$value = empty($value) ? '' : stripslashes($value[0]);
686
+			$placeholder = isset($params['facet']['placeholder']) ? $params['facet']['placeholder'] : __('Search...', 'lsx-search');
687
+			$placeholder = facetwp_i18n($placeholder);
688 688
 
689 689
 			ob_start();
690 690
 			?>
@@ -692,11 +692,11 @@  discard block
 block discarded – undo
692 692
 				<div class="search-form lsx-search-form 2">
693 693
 					<div class="input-group facetwp-search-wrap">
694 694
 						<div class="field">
695
-							<input class="facetwp-search search-field form-control" type="text" placeholder="<?php echo esc_attr( $placeholder ); ?>" autocomplete="off" value="<?php echo esc_attr( $value ); ?>">
695
+							<input class="facetwp-search search-field form-control" type="text" placeholder="<?php echo esc_attr($placeholder); ?>" autocomplete="off" value="<?php echo esc_attr($value); ?>">
696 696
 						</div>
697 697
 
698 698
 						<div class="field submit-button">
699
-							<button class="search-submit btn facetwp-btn" type="submit"><?php esc_html_e( 'Search', 'lsx-search' ); ?></button>
699
+							<button class="search-submit btn facetwp-btn" type="submit"><?php esc_html_e('Search', 'lsx-search'); ?></button>
700 700
 						</div>
701 701
 					</div>
702 702
 				</div>
@@ -710,23 +710,23 @@  discard block
 block discarded – undo
710 710
 	/**
711 711
 	 * Change the primary and secondary column classes.
712 712
 	 */
713
-	public function lsx_layout_selector( $return_class, $class, $layout, $size ) {
714
-		if ( ! empty( $this->options['display'][ $this->search_prefix . '_layout' ] ) ) {
713
+	public function lsx_layout_selector($return_class, $class, $layout, $size) {
714
+		if (!empty($this->options['display'][$this->search_prefix.'_layout'])) {
715 715
 
716
-			if ( '2cl' === $layout || '2cr' === $layout ) {
716
+			if ('2cl' === $layout || '2cr' === $layout) {
717 717
 				$main_class    = 'col-sm-8 col-md-9';
718 718
 				$sidebar_class = 'col-sm-4 col-md-3';
719 719
 
720
-				if ( '2cl' === $layout ) {
720
+				if ('2cl' === $layout) {
721 721
 					$main_class    .= ' col-sm-pull-4 col-md-pull-3 search-sidebar-left';
722 722
 					$sidebar_class .= ' col-sm-push-8 col-md-push-9';
723 723
 				}
724 724
 
725
-				if ( 'main' === $class ) {
725
+				if ('main' === $class) {
726 726
 					return $main_class;
727 727
 				}
728 728
 
729
-				if ( 'sidebar' === $class ) {
729
+				if ('sidebar' === $class) {
730 730
 					return $sidebar_class;
731 731
 				}
732 732
 			}
@@ -741,14 +741,14 @@  discard block
 block discarded – undo
741 741
 	 * @return void
742 742
 	 */
743 743
 	public function display_alphabet_facet() {
744
-		if ( isset( $this->options['display'][ $this->search_prefix . '_az_pagination' ] ) ) {
745
-			$az_pagination = $this->options['display'][ $this->search_prefix . '_az_pagination' ];
744
+		if (isset($this->options['display'][$this->search_prefix.'_az_pagination'])) {
745
+			$az_pagination = $this->options['display'][$this->search_prefix.'_az_pagination'];
746 746
 		} else {
747 747
 			$az_pagination = false;
748 748
 		}
749
-		$az_pagination = apply_filters( 'lsx_search_top_az_pagination', $az_pagination );
750
-		if ( false !== $az_pagination && '' !== $az_pagination ) {
751
-			echo do_shortcode( '[facetwp facet="' . $az_pagination . '"]' );
749
+		$az_pagination = apply_filters('lsx_search_top_az_pagination', $az_pagination);
750
+		if (false !== $az_pagination && '' !== $az_pagination) {
751
+			echo do_shortcode('[facetwp facet="'.$az_pagination.'"]');
752 752
 		}
753 753
 	}
754 754
 
@@ -756,49 +756,49 @@  discard block
 block discarded – undo
756 756
 	 * Outputs top.
757 757
 	 */
758 758
 	public function facet_top_bar() {
759
-		if ( true === apply_filters( 'lsx_search_hide_top_bar', false ) ) {
759
+		if (true === apply_filters('lsx_search_hide_top_bar', false)) {
760 760
 			return;
761 761
 		}
762 762
 
763 763
 		$show_pagination     = true;
764 764
 		$pagination_visible  = false;
765
-		$show_per_page_combo = empty( $this->options['display'][ $this->search_prefix . '_disable_per_page' ] );
766
-		$show_sort_combo     = empty( $this->options['display'][ $this->search_prefix . '_disable_sorting' ] );
767
-
768
-		$show_pagination     = apply_filters( 'lsx_search_top_show_pagination', $show_pagination );
769
-		$pagination_visible  = apply_filters( 'lsx_search_top_pagination_visible', $pagination_visible );
770
-		$show_per_page_combo = apply_filters( 'lsx_search_top_show_per_page_combo', $show_per_page_combo );
771
-		$show_sort_combo     = apply_filters( 'lsx_search_top_show_sort_combo', $show_sort_combo );
772
-		$facet_row_classes   = apply_filters( 'lsx_search_top_facetwp_row_classes', '' );
765
+		$show_per_page_combo = empty($this->options['display'][$this->search_prefix.'_disable_per_page']);
766
+		$show_sort_combo     = empty($this->options['display'][$this->search_prefix.'_disable_sorting']);
767
+
768
+		$show_pagination     = apply_filters('lsx_search_top_show_pagination', $show_pagination);
769
+		$pagination_visible  = apply_filters('lsx_search_top_pagination_visible', $pagination_visible);
770
+		$show_per_page_combo = apply_filters('lsx_search_top_show_per_page_combo', $show_per_page_combo);
771
+		$show_sort_combo     = apply_filters('lsx_search_top_show_sort_combo', $show_sort_combo);
772
+		$facet_row_classes   = apply_filters('lsx_search_top_facetwp_row_classes', '');
773 773
 		?>
774 774
 		<div id="facetwp-top">
775
-			<?php if ( $show_sort_combo || ( $show_pagination && $show_per_page_combo ) ) { ?>
776
-				<div class="row facetwp-top-row-1 hidden-xs <?php echo esc_attr( $facet_row_classes ); ?>">
775
+			<?php if ($show_sort_combo || ($show_pagination && $show_per_page_combo)) { ?>
776
+				<div class="row facetwp-top-row-1 hidden-xs <?php echo esc_attr($facet_row_classes); ?>">
777 777
 					<div class="col-xs-12">
778 778
 
779
-						<?php if ( ! empty( $this->options['display'][ $this->search_prefix . '_display_result_count' ] ) && false === apply_filters( 'lsx_search_hide_result_count', false ) ) { ?>
779
+						<?php if (!empty($this->options['display'][$this->search_prefix.'_display_result_count']) && false === apply_filters('lsx_search_hide_result_count', false)) { ?>
780 780
 							<div class="row">
781 781
 								<div class="col-md-12 facetwp-item facetwp-results">
782
-									<h3 class="lsx-search-title lsx-search-title-results"><?php esc_html_e( 'Results', 'lsx-search' ); ?> <?php echo '(' . do_shortcode( '[facetwp counts="true"]' ) . ')&nbsp;'; ?>
783
-									<?php if ( false !== $this->options && isset( $this->options['display'] ) && ( ! empty( $this->options['display'][ $this->search_prefix . '_display_clear_button' ] ) ) && 'on' === $this->options['display'][ $this->search_prefix . '_display_clear_button' ] ) { ?>
784
-										<span class="clear-facets hidden">- <a title="<?php esc_html_e( 'Clear the current search filters.', 'lsx-search' ); ?>" class="facetwp-results-clear" type="button" onclick="<?php echo esc_attr( apply_filters( 'lsx_search_clear_function', 'lsx_search.clearFacets(this);' ) ); ?>"><?php esc_html_e( 'Clear', 'lsx-search' ); ?></a></span>
782
+									<h3 class="lsx-search-title lsx-search-title-results"><?php esc_html_e('Results', 'lsx-search'); ?> <?php echo '('.do_shortcode('[facetwp counts="true"]').')&nbsp;'; ?>
783
+									<?php if (false !== $this->options && isset($this->options['display']) && (!empty($this->options['display'][$this->search_prefix.'_display_clear_button'])) && 'on' === $this->options['display'][$this->search_prefix.'_display_clear_button']) { ?>
784
+										<span class="clear-facets hidden">- <a title="<?php esc_html_e('Clear the current search filters.', 'lsx-search'); ?>" class="facetwp-results-clear" type="button" onclick="<?php echo esc_attr(apply_filters('lsx_search_clear_function', 'lsx_search.clearFacets(this);')); ?>"><?php esc_html_e('Clear', 'lsx-search'); ?></a></span>
785 785
 									<?php } ?>
786 786
 									</h3>
787 787
 								</div>
788 788
 							</div>
789 789
 						<?php } ?>
790 790
 
791
-						<?php do_action( 'lsx_search_facetwp_top_row' ); ?>
791
+						<?php do_action('lsx_search_facetwp_top_row'); ?>
792 792
 
793 793
 						<?php $this->display_alphabet_facet(); ?>
794 794
 
795 795
 						<?php
796
-						if ( $show_sort_combo ) { 
797
-							$new_sorter = $this->has_facet( 'sort' );
798
-							if ( false !== $new_sorter ) {
799
-								echo do_shortcode( '[facetwp facet="' . $new_sorter . '"]' );
796
+						if ($show_sort_combo) { 
797
+							$new_sorter = $this->has_facet('sort');
798
+							if (false !== $new_sorter) {
799
+								echo do_shortcode('[facetwp facet="'.$new_sorter.'"]');
800 800
 							} else {
801
-								echo do_shortcode( '[facetwp sort="true"]' );
801
+								echo do_shortcode('[facetwp sort="true"]');
802 802
 							}	
803 803
 						}
804 804
 						?>
@@ -809,11 +809,11 @@  discard block
 block discarded – undo
809 809
 		<?php
810 810
 	}
811 811
 
812
-	public function has_facet( $type ) {
812
+	public function has_facet($type) {
813 813
 		$has_facet = false;
814
-		if ( ! empty( $this->options['display'][ $this->search_prefix . '_facets' ] ) && is_array( $this->options['display'][ $this->search_prefix . '_facets' ] ) ) {
815
-			foreach ( $this->options['display'][ $this->search_prefix . '_facets' ] as $facet => $facet_useless ) {
816
-				if ( isset( $this->facet_data[ $facet ] ) &&  $this->facet_data[ $facet ]['type'] === $type ) {
814
+		if (!empty($this->options['display'][$this->search_prefix.'_facets']) && is_array($this->options['display'][$this->search_prefix.'_facets'])) {
815
+			foreach ($this->options['display'][$this->search_prefix.'_facets'] as $facet => $facet_useless) {
816
+				if (isset($this->facet_data[$facet]) && $this->facet_data[$facet]['type'] === $type) {
817 817
 					$has_facet = $facet;
818 818
 				}
819 819
 			}
@@ -825,30 +825,30 @@  discard block
 block discarded – undo
825 825
 	 * Outputs bottom.
826 826
 	 */
827 827
 	public function facet_bottom_bar() {
828
-		if ( true === apply_filters( 'lsx_search_hide_bottom_bar', false ) ) {
828
+		if (true === apply_filters('lsx_search_hide_bottom_bar', false)) {
829 829
 			return;
830 830
 		}
831 831
 		$show_pagination    = true;
832 832
 		$pagination_visible = false;
833
-		if ( isset( $this->options['display'][ $this->search_prefix . '_az_pagination' ] ) ) {
834
-			$az_pagination = $this->options['display'][ $this->search_prefix . '_az_pagination' ];
833
+		if (isset($this->options['display'][$this->search_prefix.'_az_pagination'])) {
834
+			$az_pagination = $this->options['display'][$this->search_prefix.'_az_pagination'];
835 835
 		} else {
836 836
 			$az_pagination = false;
837 837
 		}
838 838
 
839
-		$show_per_page_combo = empty( $this->options['display'][ $this->search_prefix . '_disable_per_page' ] );
840
-		$show_sort_combo     = empty( $this->options['display'][ $this->search_prefix . '_search_disable_sorting' ] );
839
+		$show_per_page_combo = empty($this->options['display'][$this->search_prefix.'_disable_per_page']);
840
+		$show_sort_combo     = empty($this->options['display'][$this->search_prefix.'_search_disable_sorting']);
841 841
 
842
-		$show_pagination     = apply_filters( 'lsx_search_bottom_show_pagination', $show_pagination );
843
-		$pagination_visible  = apply_filters( 'lsx_search_bottom_pagination_visible', $pagination_visible );
844
-		$show_per_page_combo = apply_filters( 'lsx_search_bottom_show_per_page_combo', $show_per_page_combo );
845
-		$show_sort_combo     = apply_filters( 'lsx_search_bottom_show_sort_combo', $show_sort_combo );
842
+		$show_pagination     = apply_filters('lsx_search_bottom_show_pagination', $show_pagination);
843
+		$pagination_visible  = apply_filters('lsx_search_bottom_pagination_visible', $pagination_visible);
844
+		$show_per_page_combo = apply_filters('lsx_search_bottom_show_per_page_combo', $show_per_page_combo);
845
+		$show_sort_combo     = apply_filters('lsx_search_bottom_show_sort_combo', $show_sort_combo);
846 846
 
847
-		if ( $show_pagination || ! empty( $az_pagination ) ) { ?>
847
+		if ($show_pagination || !empty($az_pagination)) { ?>
848 848
 			<div id="facetwp-bottom">
849 849
 				<div class="row facetwp-bottom-row-1">
850 850
 					<div class="col-xs-12">
851
-						<?php do_action( 'lsx_search_facetwp_bottom_row' ); ?>
851
+						<?php do_action('lsx_search_facetwp_bottom_row'); ?>
852 852
 
853 853
 						<?php //if ( $show_sort_combo ) { ?>
854 854
 							<?php //echo do_shortcode( '[facetwp sort="true"]' ); ?>
@@ -859,16 +859,16 @@  discard block
 block discarded – undo
859 859
 						<?php //} ?>
860 860
 
861 861
 						<?php
862
-						if ( $show_pagination ) {
863
-							$output_pagination = do_shortcode( '[facetwp pager="true"]' );
864
-							if ( ! empty( $this->options['display'][ $this->search_prefix . '_facets' ] ) && is_array( $this->options['display'][ $this->search_prefix . '_facets' ] ) ) {
865
-								foreach ( $this->options['display'][ $this->search_prefix . '_facets' ] as $facet => $facet_useless ) {
866
-									if ( isset( $this->facet_data[ $facet ] ) && in_array( $this->facet_data[ $facet ]['type'], array( 'pager' ) ) ) {
867
-										$output_pagination = do_shortcode( '[facetwp facet="pager_"]' );
862
+						if ($show_pagination) {
863
+							$output_pagination = do_shortcode('[facetwp pager="true"]');
864
+							if (!empty($this->options['display'][$this->search_prefix.'_facets']) && is_array($this->options['display'][$this->search_prefix.'_facets'])) {
865
+								foreach ($this->options['display'][$this->search_prefix.'_facets'] as $facet => $facet_useless) {
866
+									if (isset($this->facet_data[$facet]) && in_array($this->facet_data[$facet]['type'], array('pager'))) {
867
+										$output_pagination = do_shortcode('[facetwp facet="pager_"]');
868 868
 									}
869 869
 								}
870 870
 							}
871
-							echo wp_kses_post( $output_pagination );
871
+							echo wp_kses_post($output_pagination);
872 872
 						?>
873 873
 						<?php } ?>
874 874
 					</div>
@@ -902,7 +902,7 @@  discard block
 block discarded – undo
902 902
 	/**
903 903
 	 * Disables default sidebar.
904 904
 	 */
905
-	public function lsx_sidebar_enable( $sidebar_enabled ) {
905
+	public function lsx_sidebar_enable($sidebar_enabled) {
906 906
 		$sidebar_enabled = false;
907 907
 		return $sidebar_enabled;
908 908
 	}
@@ -912,19 +912,19 @@  discard block
 block discarded – undo
912 912
 	 */
913 913
 	public function search_sidebar() {
914 914
 
915
-		$this->options = apply_filters( 'lsx_search_sidebar_options', $this->options );
915
+		$this->options = apply_filters('lsx_search_sidebar_options', $this->options);
916 916
 		?>
917
-			<?php do_action( 'lsx_search_sidebar_before' ); ?>
917
+			<?php do_action('lsx_search_sidebar_before'); ?>
918 918
 
919
-			<div id="secondary" class="facetwp-sidebar widget-area <?php echo esc_attr( lsx_sidebar_class() ); ?>" role="complementary">
919
+			<div id="secondary" class="facetwp-sidebar widget-area <?php echo esc_attr(lsx_sidebar_class()); ?>" role="complementary">
920 920
 
921
-				<?php do_action( 'lsx_search_sidebar_top' ); ?>
921
+				<?php do_action('lsx_search_sidebar_top'); ?>
922 922
 
923
-				<?php if ( ! empty( $this->options['display'][ $this->search_prefix . '_facets' ] ) && is_array( $this->options['display'][ $this->search_prefix . '_facets' ] ) ) { ?>
923
+				<?php if (!empty($this->options['display'][$this->search_prefix.'_facets']) && is_array($this->options['display'][$this->search_prefix.'_facets'])) { ?>
924 924
 					<div class="row facetwp-row lsx-search-filer-area">
925
-						<h3 class="facetwp-filter-title"><?php echo esc_html_e( 'Refine by', 'lsx-search' ); ?></h3>
925
+						<h3 class="facetwp-filter-title"><?php echo esc_html_e('Refine by', 'lsx-search'); ?></h3>
926 926
 						<div class="col-xs-12 facetwp-item facetwp-filters-button hidden-sm hidden-md hidden-lg">
927
-							<button class="ssm-toggle-nav btn btn-block" rel="lsx-search-filters"><?php esc_html_e( 'Filters', 'lsx-search' ); ?> <i class="fa fa-chevron-down" aria-hidden="true"></i></button>
927
+							<button class="ssm-toggle-nav btn btn-block" rel="lsx-search-filters"><?php esc_html_e('Filters', 'lsx-search'); ?> <i class="fa fa-chevron-down" aria-hidden="true"></i></button>
928 928
 						</div>
929 929
 
930 930
 						<div class="ssm-overlay ssm-toggle-nav" rel="lsx-search-filters"></div>
@@ -932,16 +932,16 @@  discard block
 block discarded – undo
932 932
 						<div class="col-xs-12 facetwp-item-wrap facetwp-filters-wrap" id="lsx-search-filters">
933 933
 							<div class="row hidden-sm hidden-md hidden-lg ssm-row-margin-bottom">
934 934
 								<div class="col-xs-12 facetwp-item facetwp-filters-button">
935
-									<button class="ssm-close-btn ssm-toggle-nav btn btn-block" rel="lsx-search-filters"><?php esc_html_e( 'Close Filters', 'lsx-search' ); ?> <i class="fa fa-times" aria-hidden="true"></i></button>
935
+									<button class="ssm-close-btn ssm-toggle-nav btn btn-block" rel="lsx-search-filters"><?php esc_html_e('Close Filters', 'lsx-search'); ?> <i class="fa fa-times" aria-hidden="true"></i></button>
936 936
 								</div>
937 937
 							</div>
938 938
 
939 939
 							<div class="row">
940 940
 								<?php
941 941
 								// Slider.
942
-								foreach ( $this->options['display'][ $this->search_prefix . '_facets' ] as $facet => $facet_useless ) {
943
-									if ( isset( $this->facet_data[ $facet ] ) && ! in_array( $this->facet_data[ $facet ]['type'], array( 'alpha', 'search', 'pager', 'sort', 'autocomplete' ) ) ) {
944
-										$this->display_facet_default( $facet );
942
+								foreach ($this->options['display'][$this->search_prefix.'_facets'] as $facet => $facet_useless) {
943
+									if (isset($this->facet_data[$facet]) && !in_array($this->facet_data[$facet]['type'], array('alpha', 'search', 'pager', 'sort', 'autocomplete'))) {
944
+										$this->display_facet_default($facet);
945 945
 									}
946 946
 								}
947 947
 								?>
@@ -949,17 +949,17 @@  discard block
 block discarded – undo
949 949
 
950 950
 							<div class="row hidden-sm hidden-md hidden-lg ssm-row-margin-top">
951 951
 								<div class="col-xs-12 facetwp-item facetwp-filters-button">
952
-									<button class="ssm-apply-btn ssm-toggle-nav btn btn-block" rel="lsx-search-filters"><?php esc_html_e( 'Apply Filters', 'lsx-search' ); ?> <i class="fa fa-check" aria-hidden="true"></i></button>
952
+									<button class="ssm-apply-btn ssm-toggle-nav btn btn-block" rel="lsx-search-filters"><?php esc_html_e('Apply Filters', 'lsx-search'); ?> <i class="fa fa-check" aria-hidden="true"></i></button>
953 953
 								</div>
954 954
 							</div>
955 955
 						</div>
956 956
 					</div>
957 957
 				<?php } ?>
958 958
 
959
-				<?php do_action( 'lsx_search_sidebar_bottom' ); ?>
959
+				<?php do_action('lsx_search_sidebar_bottom'); ?>
960 960
 			</div>
961 961
 
962
-			<?php do_action( 'lsx_search_sidebar_after' ); ?>
962
+			<?php do_action('lsx_search_sidebar_after'); ?>
963 963
 		<?php
964 964
 	}
965 965
 
@@ -972,9 +972,9 @@  discard block
 block discarded – undo
972 972
 
973 973
 		$pager_facet_off = false;
974 974
 
975
-		if ( ! empty( $this->options['display'][ $this->search_prefix . '_facets' ] ) && is_array( $this->options['display'][ $this->search_prefix . '_facets' ] ) ) {
976
-			foreach ( $this->options['display'][ $this->search_prefix . '_facets' ] as $facet => $facet_useless ) {
977
-				if ( isset( $this->facet_data[ $facet ] ) && ! in_array( $this->facet_data[ $facet ]['type'], array( 'pager' ) ) ) {
975
+		if (!empty($this->options['display'][$this->search_prefix.'_facets']) && is_array($this->options['display'][$this->search_prefix.'_facets'])) {
976
+			foreach ($this->options['display'][$this->search_prefix.'_facets'] as $facet => $facet_useless) {
977
+				if (isset($this->facet_data[$facet]) && !in_array($this->facet_data[$facet]['type'], array('pager'))) {
978 978
 					$pager_facet_off = true;
979 979
 				}
980 980
 			}
@@ -989,14 +989,14 @@  discard block
 block discarded – undo
989 989
 	public function display_facet_search() {
990 990
 		?>
991 991
 		<div class="col-xs-12 facetwp-item facetwp-form">
992
-			<form class="search-form lsx-search-form" action="<?php echo esc_attr( home_url() ); ?>" method="get">
992
+			<form class="search-form lsx-search-form" action="<?php echo esc_attr(home_url()); ?>" method="get">
993 993
 				<div class="input-group">
994 994
 					<div class="field">
995
-						<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
+						<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() ?>">
996 996
 					</div>
997 997
 
998 998
 					<div class="field submit-button">
999
-						<button class="search-submit btn" type="submit"><?php esc_html_e( 'Search', 'lsx-search' ); ?></button>
999
+						<button class="search-submit btn" type="submit"><?php esc_html_e('Search', 'lsx-search'); ?></button>
1000 1000
 					</div>
1001 1001
 				</div>
1002 1002
 			</form>
@@ -1007,26 +1007,26 @@  discard block
 block discarded – undo
1007 1007
 	/**
1008 1008
 	 * Display facet default.
1009 1009
 	 */
1010
-	public function display_facet_default( $facet ) {
1010
+	public function display_facet_default($facet) {
1011 1011
 
1012
-		$show_collapse = ! isset( $this->options['display'][$this->search_prefix . '_collapse'] ) || 'on' !== $this->options['display'][$this->search_prefix . '_collapse'];
1012
+		$show_collapse = !isset($this->options['display'][$this->search_prefix.'_collapse']) || 'on' !== $this->options['display'][$this->search_prefix.'_collapse'];
1013 1013
 		$col_class = '';
1014 1014
 
1015
-		if ( 'search' === $this->facet_data[ $facet ]['type'] ) : ?>
1016
-			<?php echo do_shortcode( '[facetwp facet="' . $facet . '"]' ); ?>
1015
+		if ('search' === $this->facet_data[$facet]['type']) : ?>
1016
+			<?php echo do_shortcode('[facetwp facet="'.$facet.'"]'); ?>
1017 1017
 		<?php else : ?>
1018
-			<div class="col-xs-12 facetwp-item parent-facetwp-facet-<?php echo esc_html( $facet ); ?> <?php echo esc_attr( $col_class ); ?>">
1019
-				<?php if ( ! $show_collapse ) { ?>
1018
+			<div class="col-xs-12 facetwp-item parent-facetwp-facet-<?php echo esc_html($facet); ?> <?php echo esc_attr($col_class); ?>">
1019
+				<?php if (!$show_collapse) { ?>
1020 1020
 					<div class="facetwp-collapsed">
1021
-						<h3 class="lsx-search-title"><?php echo wp_kses_post( $this->facet_data[ $facet ]['label'] ); ?></h3>
1022
-						<button title="<?php echo esc_html_e( 'Click to Expand', 'lsx-search' ); ?>" class="facetwp-collapse" type="button" data-toggle="collapse" data-target="#collapse-<?php echo esc_html( $facet ); ?>" aria-expanded="false" aria-controls="collapse-<?php echo esc_html( $facet ); ?>"></button>
1021
+						<h3 class="lsx-search-title"><?php echo wp_kses_post($this->facet_data[$facet]['label']); ?></h3>
1022
+						<button title="<?php echo esc_html_e('Click to Expand', 'lsx-search'); ?>" class="facetwp-collapse" type="button" data-toggle="collapse" data-target="#collapse-<?php echo esc_html($facet); ?>" aria-expanded="false" aria-controls="collapse-<?php echo esc_html($facet); ?>"></button>
1023 1023
 					</div>
1024
-					<div id="collapse-<?php echo esc_html( $facet ); ?>" class="collapse">
1025
-						<?php echo do_shortcode( '[facetwp facet="' . $facet . '"]' ); ?>
1024
+					<div id="collapse-<?php echo esc_html($facet); ?>" class="collapse">
1025
+						<?php echo do_shortcode('[facetwp facet="'.$facet.'"]'); ?>
1026 1026
 					</div>
1027 1027
 				<?php } else { ?>
1028
-					<h3 class="lsx-search-title"><?php echo wp_kses_post( $this->facet_data[ $facet ]['label'] ); ?></h3>
1029
-					<?php echo do_shortcode( '[facetwp facet="' . $facet . '"]' ); ?>
1028
+					<h3 class="lsx-search-title"><?php echo wp_kses_post($this->facet_data[$facet]['label']); ?></h3>
1029
+					<?php echo do_shortcode('[facetwp facet="'.$facet.'"]'); ?>
1030 1030
 				<?php } ?>
1031 1031
 			</div>
1032 1032
 		<?php
@@ -1036,8 +1036,8 @@  discard block
 block discarded – undo
1036 1036
 	/**
1037 1037
 	 * Changes slot column class.
1038 1038
 	 */
1039
-	public function change_slot_column_class( $class ) {
1040
-		if ( is_post_type_archive( 'video' ) || is_tax( 'video-category' ) ) {
1039
+	public function change_slot_column_class($class) {
1040
+		if (is_post_type_archive('video') || is_tax('video-category')) {
1041 1041
 			$column_class = 'col-xs-12 col-sm-4';
1042 1042
 		}
1043 1043
 
@@ -1048,15 +1048,15 @@  discard block
 block discarded – undo
1048 1048
 	 * Add post type label to the title.
1049 1049
 	 */
1050 1050
 	public function add_label_to_title() {
1051
-		if ( is_search() ) {
1052
-			if ( ! empty( $this->options['display']['engine_search_enable_pt_label'] ) ) {
1051
+		if (is_search()) {
1052
+			if (!empty($this->options['display']['engine_search_enable_pt_label'])) {
1053 1053
 				$post_type = get_post_type();
1054
-				$post_type = str_replace( '_', ' ', $post_type );
1055
-				$post_type = str_replace( '-', ' ', $post_type );
1056
-				if ( 'tribe events' === $post_type ) {
1054
+				$post_type = str_replace('_', ' ', $post_type);
1055
+				$post_type = str_replace('-', ' ', $post_type);
1056
+				if ('tribe events' === $post_type) {
1057 1057
 					$post_type = 'Events';
1058 1058
 				}
1059
-				echo wp_kses_post( ' <span class="label label-default lsx-label-post-type">' . $post_type . '</span>' );
1059
+				echo wp_kses_post(' <span class="label label-default lsx-label-post-type">'.$post_type.'</span>');
1060 1060
 			}
1061 1061
 		}
1062 1062
 	}
@@ -1064,22 +1064,22 @@  discard block
 block discarded – undo
1064 1064
 	/**
1065 1065
 	 * Changes the sort options.
1066 1066
 	 */
1067
-	public function facetwp_sort_options( $options, $params ) {
1067
+	public function facetwp_sort_options($options, $params) {
1068 1068
 		$this->set_vars();
1069 1069
 
1070
-		if ( true === $this->search_enabled ) {
1071
-			if ( 'default' !== $params['template_name'] && 'wp' !== $params['template_name'] ) {
1070
+		if (true === $this->search_enabled) {
1071
+			if ('default' !== $params['template_name'] && 'wp' !== $params['template_name']) {
1072 1072
 				return $options;
1073 1073
 			}
1074 1074
 
1075
-			if ( ! empty( $this->options['display'][ $this->search_prefix . '_disable_date' ] ) ) {
1076
-				unset( $options['date_desc'] );
1077
-				unset( $options['date_asc'] );
1075
+			if (!empty($this->options['display'][$this->search_prefix.'_disable_date'])) {
1076
+				unset($options['date_desc']);
1077
+				unset($options['date_asc']);
1078 1078
 			}
1079 1079
 
1080
-			if ( ! empty( $this->options['display'][ $this->search_prefix . '_disable_az_sorting' ] ) ) {
1081
-				unset( $options['title_desc'] );
1082
-				unset( $options['title_asc'] );
1080
+			if (!empty($this->options['display'][$this->search_prefix.'_disable_az_sorting'])) {
1081
+				unset($options['title_desc']);
1082
+				unset($options['title_asc']);
1083 1083
 			}
1084 1084
 		}
1085 1085
 
@@ -1092,9 +1092,9 @@  discard block
 block discarded – undo
1092 1092
 	 *
1093 1093
 	 * @return mixed
1094 1094
 	 */
1095
-	public function kses_allowed_html( $allowedtags, $context ) {
1095
+	public function kses_allowed_html($allowedtags, $context) {
1096 1096
 		$allowedtags['a']['data-value'] = true;
1097
-		$allowedtags['a']['data-selection']  = true;
1097
+		$allowedtags['a']['data-selection'] = true;
1098 1098
 		$allowedtags['button']['data-toggle'] = true;
1099 1099
 		return $allowedtags;
1100 1100
 	}
@@ -1102,29 +1102,29 @@  discard block
 block discarded – undo
1102 1102
 	/**
1103 1103
 	 * Change FaceWP result count HTML
1104 1104
 	 */
1105
-	public function get_search_query( $keyword ) {
1106
-		global $wp_rewrite,$wp_query;
1105
+	public function get_search_query($keyword) {
1106
+		global $wp_rewrite, $wp_query;
1107 1107
 
1108
-		if ( empty( $keyword ) ) {
1109
-			if ( ! isset( $wp_rewrite ) || ! is_object( $wp_rewrite ) || ! $wp_rewrite->using_permalinks() ) {
1108
+		if (empty($keyword)) {
1109
+			if (!isset($wp_rewrite) || !is_object($wp_rewrite) || !$wp_rewrite->using_permalinks()) {
1110 1110
 				return;
1111 1111
 			}
1112 1112
 			$search_base = $wp_rewrite->search_base;
1113
-			if ( strpos( $_SERVER['REQUEST_URI'], "/{$search_base}/" ) !== false ) {
1114
-				$words = explode( "/{$search_base}/", $_SERVER['REQUEST_URI'] );
1115
-				$limit = count( $words );
1116
-				if ( isset( $words[ $limit - 1 ] ) ) {
1117
-					$keyword = $words[ $limit - 1 ];
1113
+			if (strpos($_SERVER['REQUEST_URI'], "/{$search_base}/") !== false) {
1114
+				$words = explode("/{$search_base}/", $_SERVER['REQUEST_URI']);
1115
+				$limit = count($words);
1116
+				if (isset($words[$limit - 1])) {
1117
+					$keyword = $words[$limit - 1];
1118 1118
 				}
1119 1119
 			}
1120 1120
 		}
1121 1121
 
1122
-		$needle = trim( '/ ' );
1123
-		$words = explode( $needle, $keyword );
1124
-		if ( is_array( $words ) && ! empty( $words ) ) {
1125
-			$keyword = $words[ count( $words ) - 1 ];
1122
+		$needle = trim('/ ');
1123
+		$words = explode($needle, $keyword);
1124
+		if (is_array($words) && !empty($words)) {
1125
+			$keyword = $words[count($words) - 1];
1126 1126
 		}
1127
-		$keyword = str_replace( '+', ' ', $keyword );
1127
+		$keyword = str_replace('+', ' ', $keyword);
1128 1128
 		return $keyword;
1129 1129
 	}
1130 1130
 }
Please login to merge, or discard this patch.
classes/class-lsx-search-facetwp.php 1 patch
Spacing   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -21,57 +21,57 @@  discard block
 block discarded – undo
21 21
 	 */
22 22
 	public function __construct() {
23 23
 
24
-		require_once LSX_SEARCH_PATH . '/classes/facetwp/class-hierarchy.php';
24
+		require_once LSX_SEARCH_PATH.'/classes/facetwp/class-hierarchy.php';
25 25
 		$this->hierarchy = lsx\search\classes\facetwp\Hierarchy::get_instance();
26 26
 
27
-		require_once LSX_SEARCH_PATH . '/classes/facetwp/class-post-connections.php';
27
+		require_once LSX_SEARCH_PATH.'/classes/facetwp/class-post-connections.php';
28 28
 		$this->post_connections = lsx\search\classes\facetwp\Post_Connections::get_instance();
29 29
 
30
-		add_filter( 'facetwp_pager_html', array( $this, 'facetwp_pager_html' ), 10, 2 );
31
-		add_filter( 'facetwp_result_count', array( $this, 'facetwp_result_count' ), 10, 2 );
32
-		add_filter( 'facetwp_facet_html', array( $this, 'facetwp_slide_html' ), 10, 2 );
33
-		add_filter( 'facetwp_load_css', array( $this, 'facetwp_load_css' ), 10, 1 );
34
-		add_filter( 'facetwp_index_row', array( $this, 'index_row' ), 10, 2 );
30
+		add_filter('facetwp_pager_html', array($this, 'facetwp_pager_html'), 10, 2);
31
+		add_filter('facetwp_result_count', array($this, 'facetwp_result_count'), 10, 2);
32
+		add_filter('facetwp_facet_html', array($this, 'facetwp_slide_html'), 10, 2);
33
+		add_filter('facetwp_load_css', array($this, 'facetwp_load_css'), 10, 1);
34
+		add_filter('facetwp_index_row', array($this, 'index_row'), 10, 2);
35 35
 	}
36 36
 
37 37
 	/**
38 38
 	 * Change FaceWP pagination HTML to be equal LSX pagination.
39 39
 	 */
40
-	public function facetwp_pager_html( $output, $params ) {
40
+	public function facetwp_pager_html($output, $params) {
41 41
 		$output = '';
42 42
 		$page = (int) $params['page'];
43 43
 		$per_page = (int) $params['per_page'];
44 44
 		$total_pages = (int) $params['total_pages'];
45 45
 
46
-		if ( 1 < $total_pages ) {
46
+		if (1 < $total_pages) {
47 47
 			$output .= '<div class="lsx-pagination-wrapper facetwp-custom">';
48 48
 			$output .= '<div class="lsx-pagination">';
49 49
 			// $output .= '<span class="pages">Page '. $page .' of '. $total_pages .'</span>';
50 50
 
51
-			if ( 1 < $page ) {
52
-				$output .= '<a class="prev page-numbers facetwp-page" rel="prev" data-page="' . ( $page - 1 ) . '">«</a>';
51
+			if (1 < $page) {
52
+				$output .= '<a class="prev page-numbers facetwp-page" rel="prev" data-page="'.($page - 1).'">«</a>';
53 53
 			}
54 54
 
55 55
 			$temp = false;
56 56
 
57
-			for ( $i = 1; $i <= $total_pages; $i++ ) {
58
-				if ( $i == $page ) {
59
-					$output .= '<span class="page-numbers current">' . $i . '</span>';
60
-				} elseif ( ( $page - 2 ) < $i && ( $page + 2 ) > $i ) {
61
-					$output .= '<a class="page-numbers facetwp-page" data-page="' . $i . '">' . $i . '</a>';
62
-				} elseif ( ( $page - 2 ) >= $i && $page > 2 ) {
63
-					if ( ! $temp ) {
57
+			for ($i = 1; $i <= $total_pages; $i++) {
58
+				if ($i == $page) {
59
+					$output .= '<span class="page-numbers current">'.$i.'</span>';
60
+				} elseif (($page - 2) < $i && ($page + 2) > $i) {
61
+					$output .= '<a class="page-numbers facetwp-page" data-page="'.$i.'">'.$i.'</a>';
62
+				} elseif (($page - 2) >= $i && $page > 2) {
63
+					if (!$temp) {
64 64
 						$output .= '<span class="page-numbers dots">...</span>';
65 65
 						$temp = true;
66 66
 					}
67
-				} elseif ( ( $page + 2 ) <= $i && ( $page + 2 ) <= $total_pages ) {
67
+				} elseif (($page + 2) <= $i && ($page + 2) <= $total_pages) {
68 68
 					$output .= '<span class="page-numbers dots">...</span>';
69 69
 					break;
70 70
 				}
71 71
 			}
72 72
 
73
-			if ( $page < $total_pages ) {
74
-				$output .= '<a class="next page-numbers facetwp-page" rel="next" data-page="' . ( $page + 1 ) . '">»</a>';
73
+			if ($page < $total_pages) {
74
+				$output .= '<a class="next page-numbers facetwp-page" rel="next" data-page="'.($page + 1).'">»</a>';
75 75
 			}
76 76
 
77 77
 			$output .= '</div>';
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 	/**
85 85
 	 * Change FaceWP result count HTML.
86 86
 	 */
87
-	public function facetwp_result_count( $output, $params ) {
87
+	public function facetwp_result_count($output, $params) {
88 88
 		$output = $params['total'];
89 89
 		return $output;
90 90
 	}
@@ -92,9 +92,9 @@  discard block
 block discarded – undo
92 92
 	/**
93 93
 	 * Change FaceWP slider HTML.
94 94
 	 */
95
-	public function facetwp_slide_html( $html, $args ) {
96
-		if ( 'slider' === $args['facet']['type'] ) {
97
-			$html = str_replace( 'class="facetwp-slider-reset"', 'class="btn btn-md facetwp-slider-reset"', $html );
95
+	public function facetwp_slide_html($html, $args) {
96
+		if ('slider' === $args['facet']['type']) {
97
+			$html = str_replace('class="facetwp-slider-reset"', 'class="btn btn-md facetwp-slider-reset"', $html);
98 98
 		}
99 99
 
100 100
 		return $html;
@@ -103,9 +103,9 @@  discard block
 block discarded – undo
103 103
 	/**
104 104
 	 * Change FaceWP slider HTML.
105 105
 	 */
106
-	public function facetwp_counts_html( $html, $args ) {
107
-		if ( 'slider' === $args['facet']['type'] ) {
108
-			$html = str_replace( 'class="facetwp-slider-reset"', 'class="btn btn-md facetwp-slider-reset"', $html );
106
+	public function facetwp_counts_html($html, $args) {
107
+		if ('slider' === $args['facet']['type']) {
108
+			$html = str_replace('class="facetwp-slider-reset"', 'class="btn btn-md facetwp-slider-reset"', $html);
109 109
 		}
110 110
 		return $html;
111 111
 	}
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
 	/**
114 114
 	 * Disable FacetWP styles.
115 115
 	 */
116
-	public function facetwp_load_css( $boolean ) {
116
+	public function facetwp_load_css($boolean) {
117 117
 		$boolean = false;
118 118
 		return $boolean;
119 119
 	}
@@ -125,18 +125,18 @@  discard block
 block discarded – undo
125 125
 	 *
126 126
 	 * @return mixed
127 127
 	 */
128
-	public function index_row( $params, $class ) {
128
+	public function index_row($params, $class) {
129 129
 		// Custom woo fields
130
-		if ( 0 === strpos( $params['facet_source'], 'woo' ) ) {
131
-			$product = wc_get_product( $params['post_id'] );
130
+		if (0 === strpos($params['facet_source'], 'woo')) {
131
+			$product = wc_get_product($params['post_id']);
132 132
 
133 133
 			// Price
134
-			if ( in_array( $params['facet_source'], array( 'woo/price', 'woo/sale_price', 'woo/regular_price' ) ) ) {
134
+			if (in_array($params['facet_source'], array('woo/price', 'woo/sale_price', 'woo/regular_price'))) {
135 135
 				$price = $params['facet_value'];
136
-				if ( $product->is_taxable() ) {
137
-					$price = wc_get_price_including_tax( $product );
136
+				if ($product->is_taxable()) {
137
+					$price = wc_get_price_including_tax($product);
138 138
 				}
139
-				$params['facet_value']    = $price;
139
+				$params['facet_value'] = $price;
140 140
 				$params['facet_display_value'] = $price;
141 141
 
142 142
 			}
Please login to merge, or discard this patch.