forked from hereswhatidid/search-autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
searchautocomplete.php
544 lines (499 loc) · 22.8 KB
/
searchautocomplete.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
<?php
/*
Plugin Name: Search Autocomplete
Plugin URI: http://hereswhatidid.com/search-autocomplete/
Description: Adds jQuery Autocomplete functionality to the default WordPress search box.
Version: 2.1.16
Author: Gabe Shackle
Author URI: http://hereswhatidid.com
License: GPLv2 or later
*/
class SearchAutocomplete {
protected static $options_field = 'sa_settings';
protected static $options_field_ver = 'sa_settings_ver';
protected static $options_field_current_ver = '2.0';
protected static $slug = 'search-autocomplete';
protected static $options_default = array(
'autocomplete_search_id' => '[name="s"]',
'autocomplete_minimum' => 3,
'autocomplete_numrows' => 10,
'autocomplete_hotlinks' => array(),
'autocomplete_hotlink_titles' => 1,
'autocomplete_hotlink_keywords' => 1,
'autocomplete_hotlink_categories' => 1,
'autocomplete_posttypes' => array(),
'autocomplete_taxonomies' => array(),
'autocomplete_sortorder' => 'posts',
'autocomplete_exclusions' => '',
'autocomplete_position' => 'bottom left',
'autocomplete_delay' => 500,
'autocomplete_autofocus' => 'false',
'autocomplete_relevanssi' => 'true',
'autocomplete_theme' => '/aristo/jquery-ui-aristo.min.css',
'autocomplete_custom_theme' => '',
);
protected static $options_init = array(
'autocomplete_search_id' => '[name="s"]',
'autocomplete_minimum' => 3,
'autocomplete_numrows' => 10,
'autocomplete_hotlinks' => array( 'posts', 'taxonomies' ),
'autocomplete_hotlink_titles' => 1,
'autocomplete_hotlink_keywords' => 1,
'autocomplete_hotlink_categories' => 1,
'autocomplete_posttypes' => array(),
'autocomplete_taxonomies' => array(),
'autocomplete_sortorder' => 'posts',
'autocomplete_exclusions' => '',
'autocomplete_position' => '',
'autocomplete_delay' => 500,
'autocomplete_autofocus' => 'false',
'autocomplete_relevanssi' => 'true',
'autocomplete_theme' => '/aristo/jquery-ui-aristo.min.css',
'autocomplete_custom_theme' => '',
);
var $pluginUrl,
$defaults,
$script_mode = 'min',
$options;
public function __construct() {
$this->initVariables();
add_action( 'wp_enqueue_scripts', array( $this, 'initScripts' ) );
add_action( 'admin_enqueue_scripts', array( $this, 'initAdminScripts' ) );
$this->initAjax();
// init admin settings page
add_action( 'admin_menu', array( $this, 'adminSettingsMenu' ) );
add_action( 'admin_init', array( $this, 'adminSettingsInit' ) ); // Add admin init functions
}
public function initVariables() {
$this->pluginUrl = plugin_dir_url( __FILE__ );
$options = get_option( self::$options_field );
$this->options = ( $options !== false ) ? wp_parse_args( $options, self::$options_default ) : self::$options_default;
$this->script_mode = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '.dev' : '.min';
}
public function initScripts() {
$disable_frontscripts = apply_filters( 'search_autocomplete_disable_frontscripts', false );
if ( false === $disable_frontscripts ) {
$localVars = array(
'ajaxurl' => admin_url( 'admin-ajax.php' ),
'fieldName' => $this->options['autocomplete_search_id'],
'minLength' => $this->options['autocomplete_minimum'],
'delay' => $this->options['autocomplete_delay'],
'autoFocus' => $this->options['autocomplete_autofocus']
);
if ( $this->options['autocomplete_theme'] !== '--None--' ) {
wp_enqueue_style( 'SearchAutocomplete-theme', plugins_url( 'css' . $this->options['autocomplete_theme'], __FILE__ ), array(), '1.9.2' );
}
if ( wp_script_is( 'jquery-ui-autocomplete', 'registered' ) ) {
wp_enqueue_script( 'SearchAutocomplete', plugins_url( 'js/search-autocomplete' . $this->script_mode . '.js', __FILE__ ), array( 'jquery-ui-autocomplete' ), '1.0.0', true );
} else {
wp_register_script( 'jquery-ui-autocomplete', plugins_url( 'js/jquery-ui-1.9.2.custom.min.js', __FILE__ ), array( 'jquery-ui' ), '1.9.2', true );
wp_enqueue_script( 'SearchAutocomplete', plugins_url( 'js/search-autocomplete.min.js', __FILE__ ), array( 'jquery-ui-autocomplete' ), '1.0.0', true );
}
$localVars = apply_filters( 'search_autocomplete_settings', $localVars );
wp_localize_script( 'SearchAutocomplete', 'SearchAutocomplete', $localVars );
}
}
public function initAdminScripts() {
$localAdminVars = array(
'defaults' => self::$options_default
);
wp_enqueue_script( 'SearchAutocompleteAdmin', plugins_url( 'js/admin-scripts.js', __FILE__ ), array( 'jquery-ui-sortable' ), '1.0.0', true );
wp_localize_script( 'SearchAutocompleteAdmin', 'SearchAutocompleteAdmin', $localAdminVars );
}
public function initAjax() {
add_action( 'wp_ajax_autocompleteCallback', array( $this, 'acCallback' ) );
add_action( 'wp_ajax_nopriv_autocompleteCallback', array( $this, 'acCallback' ) );
}
public function acCallback() {
global $wpdb,
$query,
$wp_query;
$resultsPosts = array();
$resultsTerms = array();
$term = sanitize_text_field( $_GET['term'] );
if ( count( $this->options['autocomplete_posttypes'] ) > 0 ) {
if ( ( function_exists( 'relevanssi_do_query' ) && ( $this->options['autocomplete_relevanssi'] !== 'false' ) ) ) {
$query->query_vars['s'] = $term;
$query->query_vars['posts_per_page'] = $this->options['autocomplete_numrows'];
$query->query_vars['post_type'] = $this->options['autocomplete_posttypes'];
$query->query_vars['post_status'] = 'publish';
$query->query_vars['paged'] = 0;
$query->is_admin = $wp_query->is_admin;
relevanssi_do_query( $query );
$tempPosts = $query->posts;
} else {
$tempPosts = get_posts( array(
'suppress_filters' => false,
's' => $term,
'numberposts' => $this->options['autocomplete_numrows'],
'post_type' => $this->options['autocomplete_posttypes'],
) );
}
foreach ( $tempPosts as $post ) {
$tempObject = array(
'id' => $post->ID,
'type' => 'post',
'taxonomy' => null,
'postType' => $post->post_type
);
$linkTitle = apply_filters( 'the_title', $post->post_title, $post->ID );
$linkTitle = apply_filters( 'search_autocomplete_modify_title', $linkTitle, $tempObject );
if ( ! in_array( 'posts', $this->options['autocomplete_hotlinks'] ) ) {
$linkURL = '#';
} else {
$linkURL = get_permalink( $post->ID );
$linkURL = apply_filters( 'search_autocomplete_modify_url', $linkURL, $tempObject );
}
$resultsPosts[] = array(
'title' => $linkTitle,
'url' => $linkURL,
);
}
}
if ( count( $this->options['autocomplete_taxonomies'] ) > 0 ) {
$taxonomyTypes = "AND ( tax.taxonomy = '" . implode( "' OR tax.taxonomy = '", $this->options['autocomplete_taxonomies'] ) . "') ";
$queryStringTaxonomies = 'SELECT term.term_id as id, term.name as post_title, term.slug as guid, tax.taxonomy, 0 AS content_frequency, 0 AS title_frequency FROM ' . $wpdb->term_taxonomy . ' tax ' .
'LEFT JOIN ' . $wpdb->terms . ' term ON term.term_id = tax.term_id WHERE 1 = 1 ' .
'AND term.name LIKE "%' . $term . '%" ' .
$taxonomyTypes .
'ORDER BY tax.count DESC ' .
'LIMIT 0, ' . $this->options['autocomplete_numrows'];
$tempTerms = $wpdb->get_results( $queryStringTaxonomies );
foreach ( $tempTerms as $term ) {
$tempObject = array(
'id' => $term->id,
'type' => 'taxonomy',
'taxonomy' => $term->taxonomy,
'postType' => null
);
$linkTitle = $term->post_title;
$linkTitle = apply_filters( 'search_autocomplete_modify_title', $linkTitle, $tempObject );
if ( ! in_array( 'taxonomies', $this->options['autocomplete_hotlinks'] ) ) {
$linkURL = '#';
} else {
$linkURL = get_term_link( $term->guid, $term->taxonomy );
$linkURL = apply_filters( 'search_autocomplete_modify_url', $linkURL, $tempObject );
}
$resultsTerms[] = array(
'title' => $linkTitle,
'url' => $linkURL,
);
}
}
if ( $this->options['autocomplete_sortorder'] == 'posts' ) {
$results = array_merge( $resultsPosts, $resultsTerms );
} else {
$results = array_merge( $resultsTerms, $resultsPosts );
}
foreach( $results as $index => $result ) {
$results[$index]['title'] = html_entity_decode( $result['title'] );
}
$results = apply_filters( 'search_autocomplete_modify_results', $results );
echo json_encode( array( 'results' => array_slice( $results, 0, $this->options['autocomplete_numrows'] ) ) );
die();
}
/*
* Admin Settings
*
*/
public function adminSettingsMenu() {
$page = add_options_page(
__( 'Search Autocomplete', 'search-autocomplete' ),
__( 'Search Autocomplete', 'search-autocomplete' ),
'manage_options',
'search-autocomplete', array(
$this,
'settingsPage'
) );
}
public function settingsPage() {
?>
<div class="wrap searchautocomplete-settings">
<h2><?php _e( 'Search Autocomplete', 'search-autocomplete' ); ?></h2>
<form action="options.php" method="post">
<?php wp_nonce_field(); ?>
<?php
settings_fields( 'sa_settings' );
do_settings_sections( 'search-autocomplete' );
?>
<input class="button-primary" name="Submit" type="submit" value="<?php _e( 'Save settings', 'search-autocomplete' ); ?>">
<input class="button revert" name="revert" type="button" value="<?php _e( 'Revert to Defaults', 'search-autocomplete' ); ?>">
</form>
</div>
<?php
}
/**
*
*/
public function adminSettingsInit() {
register_setting(
self::$options_field,
self::$options_field,
array( $this, 'sa_settings_validate' )
);
add_settings_section(
'sa_settings_main',
__( 'Settings', 'search-autocomplete' ),
array( $this, 'sa_settings_main_text' ),
'search-autocomplete'
);
add_settings_field(
'autocomplete_search_id',
__( 'Search Field Selector', 'search-autocomplete' ),
array( $this, 'sa_settings_field_selector' ),
'search-autocomplete',
'sa_settings_main'
);
add_settings_field(
'autocomplete_minimum',
__( 'Autocomplete Trigger', 'search-autocomplete' ),
array( $this, 'sa_settings_field_minimum' ),
'search-autocomplete',
'sa_settings_main'
);
add_settings_field(
'autocomplete_numrows',
__( 'Number of Results', 'search-autocomplete' ),
array( $this, 'sa_settings_field_numrows' ),
'search-autocomplete',
'sa_settings_main'
);
add_settings_field(
'autocomplete_delay',
__( 'Autocomplete Delay', 'search-autocomplete' ),
array( $this, 'sa_settings_field_delay' ),
'search-autocomplete',
'sa_settings_main'
);
// add_settings_field(
// 'autocomplete_position',
// __( 'Autocomplete Position', 'search-autocomplete ),
// array( $this, 'sa_settings_field_position' ),
// 'search-autocomplete',
// 'sa_settings_main'
// );
add_settings_field(
'autocomplete_autofocus',
__( 'Autofocus', 'search-autocomplete' ),
array( $this, 'sa_settings_field_autofocus' ),
'search-autocomplete',
'sa_settings_main'
);
add_settings_field(
'autocomplete_relevanssi',
__( 'Relevanssi', 'search-autocomplete' ),
array( $this, 'sa_settings_field_relevanssi' ),
'search-autocomplete',
'sa_settings_main'
);
add_settings_field(
'autocomplete_hotlinks',
__( 'Hotlink Items', 'search-autocomplete' ),
array( $this, 'sa_settings_field_hotlinks' ),
'search-autocomplete',
'sa_settings_main'
);
add_settings_field(
'autocomplete_posttypes',
__( 'Post Types', 'search-autocomplete' ),
array( $this, 'sa_settings_field_posttypes' ),
'search-autocomplete',
'sa_settings_main'
);
add_settings_field(
'autocomplete_taxonomies',
__( 'Taxonomies', 'search-autocomplete' ),
array( $this, 'sa_settings_field_taxonomies' ),
'search-autocomplete',
'sa_settings_main'
);
add_settings_field(
'autocomplete_sortorder',
__( 'Order of Types', 'search-autocomplete' ),
array( $this, 'sa_settings_field_sortorder' ),
'search-autocomplete',
'sa_settings_main'
);
add_settings_field(
'autocomplete_theme',
__( 'Theme Stylesheet', 'search-autocomplete' ),
array( $this, 'sa_settings_field_themes' ),
'search-autocomplete',
'sa_settings_main'
);
}
public function sa_settings_main_text() {
}
public function sa_settings_field_selector() {
?>
<input id="autocomplete_search_id" class="regular-text" name="<?php echo self::$options_field; ?>[autocomplete_search_id]" value="<?php echo htmlspecialchars( $this->options['autocomplete_search_id'] ); ?>">
<p class="description">
<?php _e( 'Any valid CSS selector will work.', 'search-autocomplete' ); ?><br>
<?php _e( 'The default search box for TwentyTwelve, TwentyEleven, and TwentyTen is <code>#s</code>.', 'search-autocomplete' ); ?>
<br>
<?php _e( 'The default search box for TwentyThirteen is <code>[name="#s"]</code>', 'search-autocomplete' ); ?>
</p>
<?php
}
public function sa_settings_field_minimum() {
?>
<input id="autocomplete_minimum" class="regular-text" name="<?php echo self::$options_field; ?>[autocomplete_minimum]" value="<?php echo $this->options['autocomplete_minimum']; ?>">
<p class="description"><?php _e( 'The minimum number of characters before the autocomplete triggers.', 'search-autocomplete' ); ?>
<br>
<?php
}
public function sa_settings_field_numrows() {
?>
<input id="autocomplete_numrows" class="regular-text" name="<?php echo self::$options_field; ?>[autocomplete_numrows]" value="<?php echo $this->options['autocomplete_numrows']; ?>">
<p class="description"><?php _e( "The total number of results returned.", "search-autocomplete" ); ?><br>
<?php
}
public function sa_settings_field_delay() {
?>
<input id="autocomplete_delay" class="regular-text" name="<?php echo self::$options_field; ?>[autocomplete_delay]" value="<?php echo $this->options['autocomplete_delay']; ?>">
<p class="description"><?php _e( 'The delay in milliseconds between when a keystroke occurs and when a search is performed.', self::$slug ); ?>
<br>
<?php
}
public function sa_settings_field_autofocus() {
?>
<select name="<?php echo self::$options_field; ?>[autocomplete_autofocus]" id="autocomplete_autofocus">
<option value="true"<?php selected( $this->options['autocomplete_autofocus'], 'true' ); ?>><?php _e( 'True', self::$slug ); ?></option>
<option value="false"<?php selected( $this->options['autocomplete_autofocus'], 'false' ); ?>><?php _e( 'False', self::$slug ); ?></option>
</select>
<p class="description"><?php _e( 'If set to true the first item will automatically be focused when the menu is shown.', self::$slug ); ?>
<br>
<?php
}
public function sa_settings_field_relevanssi() {
if ( function_exists( 'relevanssi_do_query' ) ) {
$relevanssi_enabled = '';
} else {
$relevanssi_enabled = ' disabled="disabled"';
}
?>
<select<?php echo $relevanssi_enabled; ?> name="<?php echo self::$options_field; ?>[autocomplete_relevanssi]" id="autocomplete_relevanssi">
<option value="true"<?php selected( $this->options['autocomplete_relevanssi'], 'true' ); ?>><?php _e( 'True', self::$slug ); ?></option>
<option value="false"<?php selected( $this->options['autocomplete_relevanssi'], 'false' ); ?>><?php _e( 'False', self::$slug ); ?></option>
</select>
<p class="description"><?php _e( 'Use Relevanssi search results (when plugin is enabled).', self::$slug ); ?></p>
<?php if ( ! function_exists( 'relevanssi_do_query' ) ) { ?>
<p class="description"><strong><?php _e( 'Relevanssi appears to be disabled.', self::$slug ); ?></strong></p>
<?php } ?>
<br>
<?php
}
public function sa_settings_field_position() {
$position = explode( ' ', $this->options['autocomplete_position'] );
?>
<label for="autocomplete_position_vertical"><?php _e( 'Vertical Position', self::$slug ); ?></label>
<select name="autocomplete_position_vertical" id="autocomplete_position_vertical">
<option value="top" <?php selected( $position[0], 'top' ); ?>><?php _e( 'Top', self::$slug ); ?></option>
<option value="bottom" <?php selected( $position[0], 'bottom' ); ?>><?php _e( 'Bottom', self::$slug ); ?></option>
</select><br>
<label for="autocomplete_position_horizontal"><?php _e( 'Horizontal Position', self::$slug ); ?></label>
<select name="autocomplete_position_horizontal" id="autocomplete_position_horizontal">
<option value="left" <?php selected( $position[1], 'left' ); ?>><?php _e( 'Left', self::$slug ); ?></option>
<option value="right" <?php selected( $position[1], 'right' ); ?>><?php _e( 'Right', self::$slug ); ?></option>
</select><br>
<p class="description"><?php _e( '', self::$slug ); ?><br>
<?php
}
public function sa_settings_field_hotlinks() {
?>
<p><label>
<input name="<?php echo self::$options_field; ?>[autocomplete_hotlinks][]" type="checkbox" id="autocomplete_hotlink_posts" value="posts" <?php checked( in_array( 'posts', $this->options['autocomplete_hotlinks'] ) ); ?>>
<?php _e( 'Link to post or page.', 'seach-autocomplete' ); ?></label><br>
<label>
<input name="<?php echo self::$options_field; ?>[autocomplete_hotlinks][]" type="checkbox" id="autocomplete_hotlink_taxonomies" value="taxonomies" <?php checked( in_array( 'taxonomies', $this->options['autocomplete_hotlinks'] ) ); ?>>
<?php _e( 'Link to taxonomy (categories, keywords, custom taxonomies, etc...) page.', 'search-autocomplete' ); ?>
</label></p>
<p class="description"><?php _e( 'Adjusts the click action on drop down items.', 'search-autocomplete' ); ?></p>
<?php
}
public function sa_settings_field_taxonomies() {
$selectedTaxonomies = $this->options['autocomplete_taxonomies'];
$args = array(
'public' => true,
);
$output = 'objects';
$taxonomies = get_taxonomies( $args, $output );
?><p><?php
foreach ( $taxonomies as $taxonomy ) {
?>
<label>
<input name="<?php echo self::$options_field; ?>[autocomplete_taxonomies][]" class="autocomplete_taxonomies" id="autocomplete_taxonomies-<?php echo $taxonomy->name; ?>" type="checkbox" value="<?php echo $taxonomy->name; ?>" <?php checked( in_array( $taxonomy->name, $selectedTaxonomies ), true ); ?>>
<?php echo $taxonomy->labels->name; ?></label><br>
<?php
}
?></p>
<p class="description"><?php _e( 'Check the taxonomies to include in the autocomplete drop down.', 'search-autocomplete' ); ?></p>
<?php
}
public function sa_settings_field_posttypes() {
$selectedTypes = $this->options['autocomplete_posttypes'];
$args = array(
'public' => true,
);
$output = 'objects';
$postTypes = get_post_types( $args, $output );
?><p><?php
foreach ( $postTypes as $postType ) {
?>
<label>
<input name="<?php echo self::$options_field; ?>[autocomplete_posttypes][]" class="autocomplete_posttypes" id="autocomplete_posttypes-<?php echo $postType->name; ?>" type="checkbox" value="<?php echo $postType->name; ?>" <?php checked( in_array( $postType->name, $selectedTypes ), true ); ?>>
<?php echo $postType->labels->name; ?></label><br>
<?php
}
?></p>
<p class="description"><?php _e( 'Check the post types to include in the autocomplete drop down.', 'search-autocomplete' ); ?></p>
<?php
}
public function sa_settings_field_themes() {
$globFilter = dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'css' . DIRECTORY_SEPARATOR . '*' . DIRECTORY_SEPARATOR . '*.css';
if ( $themeOptions = glob( $globFilter, GLOB_ERR ) ) {
array_unshift( $themeOptions, __( '--None--', 'search-autocomplete' ) );
} else {
}
?>
<select name="<?php echo self::$options_field; ?>[autocomplete_theme]" id="autocomplete_theme">
<?php
foreach ( $themeOptions as $stylesheet ) {
$newSheet = str_replace( dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'css', '', $stylesheet );
printf( '<option value="%s"%s>%s</option>', $newSheet, ( $newSheet == $this->options['autocomplete_theme'] ) ? ' selected="selected"' : '', $newSheet );
}
?>
</select>
<p class="description"><?php _e( 'These themes use the jQuery UI standard theme set up. You can create and download additional themes here: <a href="http://jqueryui.com/themeroller/" target="_blank">http://jqueryui.com/themeroller/</a>', 'search-autocomplete' ); ?>.</p>
<p class="description"><?php _e( 'To add a new theme to this plugin you must upload the "/css/" directory in the generated theme to the this plugin\'s "/css/" directory. For example, "/wp-content/plugin/search-autocomplete/css/" would be a default install location', 'search-autocomplete' ); ?>.</p>
<p class="description"><?php _e( 'The minified (compressed) version of the CSS for ThemeRoller themes typically contain ".min" within their file name.', 'search-autocomplete' ); ?></p>
<p class="description"><?php _e( 'If you would like to use your own styles outside of the plugin, select "--None--" and no stylesheet will be loaded by the plugin.', 'search-autocomplete' ); ?></p>
<?php
}
public function sa_settings_field_sortorder() {
?>
<select name="<?php echo self::$options_field; ?>[autocomplete_sortorder]" id="autocomplete_sortorder">
<option value="posts" <?php selected( $this->options['autocomplete_sortorder'], 'posts' ); ?>><?php _e( 'Posts First', 'search-autocomplete' ); ?></option>
<option value="terms" <?php selected( $this->options['autocomplete_sortorder'], 'terms' ); ?>><?php _e( 'Taxonomies First', 'search-autocomplete' ); ?></option>
</select>
<p class="description"><?php _e( 'When using multiple types (posts or taxonomies) this controls what order they are sorted in within the autocomplete drop down.', 'search-autocomplete' ); ?></p>
<?php
}
public function sa_settings_validate( $input ) {
$valid = wp_parse_args( $input, self::$options_default );
return $valid;
}
public function activate( $network_wide ) {
if ( get_option( 'sa_settings' ) === false ) {
update_option( 'sa_settings', self::$options_init );
} else {
$options = get_option( 'sa_settings' );
if ( ! isset( $options['autocomplete_hotlinks'] ) ) {
$options['autocomplete_hotlinks'] = array( 'posts', 'taxonomies' );
update_option( 'sa_settings', $options );
}
}
}
}
register_activation_hook( __FILE__, array( 'SearchAutocomplete', 'activate' ) );
$SearchAutocomplete = new SearchAutocomplete();