Code Duplication    Length = 16-18 lines in 2 locations

modules/search/class-jetpack-instant-search.php 1 location

@@ 38-53 (lines=16) @@
35
	 *
36
	 * @since 5.0.0
37
	 */
38
	public function init_hooks() {
39
		if ( ! is_admin() ) {
40
			add_filter( 'posts_pre_query', array( $this, 'filter__posts_pre_query' ), 10, 2 );
41
			add_action( 'parse_query', array( $this, 'action__parse_query' ), 10, 1 );
42
43
			add_action( 'init', array( $this, 'set_filters_from_widgets' ) );
44
45
			add_action( 'wp_enqueue_scripts', array( $this, 'load_assets' ) );
46
			add_action( 'wp_footer', array( $this, 'print_instant_search_sidebar' ) );
47
		} else {
48
			add_action( 'update_option', array( $this, 'track_widget_updates' ), 10, 3 );
49
		}
50
51
		add_action( 'widgets_init', array( $this, 'register_jetpack_instant_sidebar' ) );
52
		add_action( 'jetpack_deactivate_module_search', array( $this, 'move_search_widgets_to_inactive' ) );
53
	}
54
55
	/**
56
	 * Loads assets for Jetpack Instant Search Prototype featuring Search As You Type experience.

modules/search/class.jetpack-search.php 1 location

@@ 212-229 (lines=18) @@
209
	 *
210
	 * @since 5.0.0
211
	 */
212
	public function init_hooks() {
213
		if ( ! is_admin() ) {
214
			add_filter( 'posts_pre_query', array( $this, 'filter__posts_pre_query' ), 10, 2 );
215
216
			add_filter( 'jetpack_search_es_wp_query_args', array( $this, 'filter__add_date_filter_to_query' ), 10, 2 );
217
218
			add_action( 'did_jetpack_search_query', array( $this, 'store_last_query_info' ) );
219
			add_action( 'failed_jetpack_search_query', array( $this, 'store_query_failure' ) );
220
221
			add_action( 'init', array( $this, 'set_filters_from_widgets' ) );
222
223
			add_action( 'pre_get_posts', array( $this, 'maybe_add_post_type_as_var' ) );
224
		} else {
225
			add_action( 'update_option', array( $this, 'track_widget_updates' ), 10, 3 );
226
		}
227
228
		add_action( 'jetpack_deactivate_module_search', array( $this, 'move_search_widgets_to_inactive' ) );
229
	}
230
231
	/**
232
	 * Is search supported on the current plan