- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
407 lines
22 KiB
PHP
Executable File
407 lines
22 KiB
PHP
Executable File
<?php
|
|
/* Prevent direct access */
|
|
|
|
use WPDRMS\ASP\Hooks\Ajax\DeleteCache;
|
|
use WPDRMS\ASP\Misc\Themes;
|
|
use WPDRMS\ASP\Utils\Script;
|
|
|
|
defined('ABSPATH') or die("You can't access this file directly.");
|
|
|
|
$action_msg = '';
|
|
|
|
/**
|
|
* If safe mode is enabled because of the low max_input_vars value, then decode the params.
|
|
*/
|
|
if ( isset($_POST['asp_options_serialized'], $_GET['asp_sid'] ) ) {
|
|
// To bypass parse_str max_input_vars limitation
|
|
\WPDRMS\ASP\Utils\ParseStr::parse(base64_decode($_POST['asp_options_serialized']), $_POST);
|
|
$_POST['submit_' . intval($_GET['asp_sid'])] = 1;
|
|
}
|
|
|
|
if (
|
|
isset($_GET['asp_sid'], $_POST['reset_' . intval($_GET['asp_sid'])]) &&
|
|
isset($_POST['asp_sett_nonce'])
|
|
) {
|
|
if ( wp_verify_nonce( $_POST['asp_sett_nonce'], 'asp_sett_nonce' ) ) {
|
|
wd_asp()->instances->reset( intval($_GET['asp_sid']) );
|
|
wd_asp()->css_manager->generator->generate();
|
|
DeleteCache::getInstance()->handle(false);
|
|
$action_msg = "<div class='infoMsg'><strong>" . __('Search settings were reset to defaults!', 'ajax-search-pro') . '</strong> (' . date("Y-m-d H:i:s") . ")</div>";
|
|
} else {
|
|
$action_msg = "<div class='errorMsg'><strong>". __('<strong>ERROR Saving:</strong> Invalid NONCE, please try again!', 'ajax-search-pro') . '</strong> (' . date("Y-m-d H:i:s") . ")</div>";
|
|
$_POST = array();
|
|
}
|
|
}
|
|
|
|
if ( isset($_GET['asp_sid'], $_POST['submit_' . intval($_GET['asp_sid'])]) ) {
|
|
if ( wp_verify_nonce( $_POST['asp_sett_nonce'], 'asp_sett_nonce' ) ) {
|
|
$params = wpdreams_parse_params($_POST);
|
|
|
|
wd_asp()->instances->update(intval($_GET['asp_sid']), $params);
|
|
|
|
$style = $params;
|
|
$id = intval($_GET['asp_sid']);
|
|
|
|
wd_asp()->css_manager->generator->generate();
|
|
|
|
// Clear all the cache just in case
|
|
DeleteCache::getInstance()->handle(false);
|
|
|
|
// Do not clear cookies here, it might cause an error
|
|
// WD_ASP_Cookies_Action::forceUnsetCookies();
|
|
|
|
$action_msg = "<div class='infoMsg'><strong>" . __('Search settings saved!', 'ajax-search-pro') . '</strong> (' . date("Y-m-d H:i:s") . ")</div>";
|
|
} else {
|
|
$action_msg = "<div class='errorMsg'><strong>". __('<strong>ERROR Saving:</strong> Invalid NONCE, please try again!', 'ajax-search-pro') . '</strong> (' . date("Y-m-d H:i:s") . ")</div>";
|
|
$_POST = array();
|
|
}
|
|
|
|
}
|
|
|
|
$params = array();
|
|
$_themes = Themes::get('search');
|
|
$_sb_themes = Themes::get('search_buttons');
|
|
|
|
if ( is_multisite() ) {
|
|
$search = wd_asp()->instances->get(intval($_GET['asp_sid']), false, true);
|
|
} else {
|
|
$search = wd_asp()->instances->get(intval($_GET['asp_sid']));
|
|
}
|
|
if ( empty($search) ) {
|
|
$s_id = $_GET['asp_sid'] + 0;
|
|
?>
|
|
<div id='wpdreams' class='asp-be wpdreams wrap'>
|
|
<div class="wpdreams-box">
|
|
<h1><?php echo __('Woops', 'ajax-search-pro'); ?></h1>
|
|
<div class="errorMsg"><?php echo esc_html(sprintf( __('This search instance (id=%s) does not exists.', 'ajax-search-pro'), $s_id )); ?></div>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
return;
|
|
}
|
|
|
|
$metadata = require_once ASP_PATH . 'build/js/timed-modal.asset.php';
|
|
wp_enqueue_script(
|
|
'wpd-timed-modal',
|
|
ASP_URL_NP . 'build/js/timed-modal.js',
|
|
$metadata['dependencies'],
|
|
$metadata['version'],
|
|
array('in_footer'=>true)
|
|
);
|
|
|
|
/**
|
|
* The search data does not have unset option values as the
|
|
* $asp_globals->instances has it already merged with default options
|
|
*/
|
|
$sd = &$search['data'];
|
|
?>
|
|
<link rel="stylesheet" href="<?php echo plugin_dir_url(__FILE__) . 'settings/assets/font-awesome/font-awesome.css?v='.ASP_CURR_VER; ?>" />
|
|
<link rel="stylesheet" href="<?php echo plugin_dir_url(__FILE__) . 'settings/assets/sidebar.css?v='.ASP_CURR_VER; ?>" />
|
|
<link rel="stylesheet" href="<?php echo plugin_dir_url(__FILE__) . 'settings/assets/search_instance.css?v='.ASP_CURR_VER; ?>" />
|
|
|
|
<div id="wpd_body_loader"><div id="wpd_loading_msg"><?php echo __('Loading...', 'ajax-search-pro'); ?></div></div>
|
|
|
|
<div id='asp_preview_window'>
|
|
<span><?php echo __('Preview', 'ajax-search-pro'); ?></span>
|
|
<a name='refresh' class='refresh' searchid='0' href='#'><?php echo __('Refresh', 'ajax-search-pro'); ?></a>
|
|
<a name='hide' class='maximise'><?php echo __('Show', 'ajax-search-pro'); ?></a>
|
|
<input type="hidden" id="asp_backend_preview_nonce" value="<?php echo wp_create_nonce( 'asp_backend_preview_nonce' ); ?>">
|
|
<label><?php echo __('Background:', 'ajax-search-pro'); ?> </label><input type="text" id="bgcolorpicker" value="#ffffff"/>
|
|
|
|
<div style="text-align: center;
|
|
margin: 11px 0 17px;
|
|
font-size: 12px;
|
|
color: #aaa;">
|
|
<?php echo __('Please note, that some functions may not work in preview mode.<br>The first loading can take up to 15 seconds!', 'ajax-search-pro'); ?>
|
|
</div>
|
|
<div style="display: flex; justify-content: center; flex-wrap: nowrap; gap: 12px;">
|
|
<div style="cursor: pointer;" class="wpd-txt-small-icon wpd-txt-small-icon-desktop" data-device="desktop"></div>
|
|
<div style="cursor: pointer;" class="wpd-txt-small-icon wpd-txt-small-icon-tablet" data-device="tablet"></div>
|
|
<div style="cursor: pointer;" class="wpd-txt-small-icon wpd-txt-small-icon-phone" data-device="phone"></div>
|
|
</div>
|
|
<div class='big-loading hidden'></div>
|
|
<div class="data hidden asp_preview_data"></div>
|
|
</div>
|
|
|
|
<div id="wpd_white_fixed_bg"></div>
|
|
|
|
<div id="wpd_shortcode_modal_bg" class="wpd-modal-bg"></div>
|
|
<div id="wpd_shortcode_modal" sid="<?php echo $search['id']; ?>" class="wpd-modal hiddend">
|
|
<h3 style="flex-wrap: wrap; flex-basis: 100%; min-width: 100%;text-align: left; margin-top: 0;margin-left: 40px;"><?php echo __('Shortcode generator', 'ajax-search-pro'); ?></h3>
|
|
<div class="wpd-modal-close"></div>
|
|
<div class="sortablecontainer wpd_md_col">
|
|
<p class="descMsg"><?php echo sprintf( __('This tool is to help you generate a Column/Row based layout for the plugin. For more info on shortcodes, <a href="%s" target="_blank">check this video</a> tutorial.', 'ajax-search-pro'), 'https://documentation.ajaxsearchpro.com/getting-started/search-shortcodes' ); ?></p>
|
|
<ul class="ui-sortable">
|
|
<li item="search"><b><?php echo __('Search box', 'ajax-search-pro'); ?></b><br><label><?php echo __('Ratio:', 'ajax-search-pro'); ?> <input type="number" value="100" min="5" max="100"/>%</label><a class="deleteIcon"></a></li>
|
|
<li item="settings" class="hiddend"><b><?php echo __('Settings box', 'ajax-search-pro'); ?></b><br><label><?php echo __('Ratio:', 'ajax-search-pro'); ?> <input type="number" value="100" min="5" max="100"/>%</label><a class="deleteIcon"></a></li>
|
|
<li item="results" class="hiddend"><b><?php echo __('Results box', 'ajax-search-pro'); ?></b><br><label><?php echo __('Ratio:', 'ajax-search-pro'); ?> <input type="number" value="100" min="5" max="100"/>%</label><a class="deleteIcon"></a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="wpd_generated_shortcode wpd_md_col">
|
|
<select style="max-width: 175px;">
|
|
<option disabled selected><?php echo __('Pre-defined variations', 'ajax-search-pro'); ?></option>
|
|
<option value="0,2|50,50"><?php echo __('Search/Results 50/50', 'ajax-search-pro'); ?></option>
|
|
<option value="0,1|50,50"><?php echo __('Search/Settings 50/50', 'ajax-search-pro'); ?></option>
|
|
<option value="0,1,2|33,33,33"><?php echo __('Search/Settings/Results in columns', 'ajax-search-pro'); ?></option>
|
|
<option value="0,1,2|100,50,50"><?php echo __('Search/Settings/Results in 100/50/50', 'ajax-search-pro'); ?></option>
|
|
<option value="0,1,2|50,50,100"><?php echo __('Search/Settings/Results in 50/50/100', 'ajax-search-pro'); ?></option>
|
|
</select>
|
|
<button item="search" disabled><< <?php echo __('Add the search box', 'ajax-search-pro'); ?></button>
|
|
<button item="settings"><< <?php echo __('Add the settings box', 'ajax-search-pro'); ?></button>
|
|
<button item="results"><< <?php echo __('Add the results box', 'ajax-search-pro'); ?></button>
|
|
<p style="margin-top: 10px;"><?php echo __('<b>Copy</b> the shorcode generated:', 'ajax-search-pro'); ?><br></p><textarea>[wd_asp='search' id=1]</textarea>
|
|
</div>
|
|
</div>
|
|
<div id='wpdreams' class='asp-be wpdreams wrap<?php echo isset($_COOKIE['asp-accessibility']) ? ' wd-accessible' : ''; ?>' style="min-width: 1280px;" data-searchid="<?php echo $search['id']; ?>">
|
|
<?php do_action('asp_admin_notices'); ?>
|
|
|
|
<!-- This forces custom Admin Notices location -->
|
|
<div style="display:none;"><h2 style="display: none;"></h2></div>
|
|
<!-- This forces custom Admin Notices location -->
|
|
|
|
<?php if (ASP_DEBUG == 1): ?>
|
|
<p class='infoMsg'><?php echo __('Debug mode is on!', 'ajax-search-pro'); ?></p>
|
|
<?php endif; ?>
|
|
|
|
<?php if (wd_asp()->o['asp_compatibility']['usecustomajaxhandler'] == 1): ?>
|
|
<p class='noticeMsgBox'>
|
|
<?php echo sprintf( __('NOTICE: The custom ajax handler is enabled. In case you experience issues, please <a href="%s">turn it off.</a>', 'ajax-search-pro'), get_admin_url() . "admin.php?page=asp_compatibility_settings" ); ?>
|
|
</p>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( wd_asp()->updates->needsUpdate() ) { wd_asp()->updates->printUpdateMessage(); } ?>
|
|
|
|
<a class='back'
|
|
href='<?php echo get_admin_url() . "admin.php?page=asp_main_settings"; ?>'><?php echo __('Back to the search list', 'ajax-search-pro'); ?></a>
|
|
<a class='statistics'
|
|
href='<?php echo get_admin_url() . "admin.php?page=asp_statistics"; ?>'><?php echo __('Search Statistics', 'ajax-search-pro'); ?></a>
|
|
<a class='error'
|
|
href='<?php echo get_admin_url() . "admin.php?page=asp_compatibility_settings"; ?>'><?php echo __('Compatibility checking', 'ajax-search-pro'); ?></a>
|
|
<a class='cache'
|
|
href='<?php echo get_admin_url() . "admin.php?page=asp_cache_settings"; ?>'><?php echo __('Caching options', 'ajax-search-pro'); ?></a>
|
|
<?php ob_start(); ?>
|
|
<div class="wpdreams-box asp_b_shortcodes">
|
|
<?php if (defined('ASL_PATH')): ?>
|
|
<p class="errorMsg">
|
|
<?php echo __('Warning: <strong>Ajax Search Lite</strong> is still activated, please deactivate it to assure every PRO feature works properly.', 'ajax-search-pro'); ?>
|
|
</p>
|
|
<?php endif; ?>
|
|
|
|
<div class="asp_b_shortcodes_menu">
|
|
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="18px" height="24px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve">
|
|
<polygon transform = "rotate(90 256 256)" points="142.332,104.886 197.48,50 402.5,256 197.48,462 142.332,407.113 292.727,256 "/>
|
|
</svg>
|
|
<span class="asp_b_shortcodes_title"><?php echo __('Toggle shortcodes for', 'ajax-search-pro'); ?> <strong><?php echo esc_html( $search['name'] ); ?></strong></span>
|
|
<button id="shortcode_generator"><?php echo __('Shortcode generator', 'ajax-search-pro'); ?></button>
|
|
</div>
|
|
<fieldset>
|
|
<legend><?php echo __('Simple shortcodes', 'ajax-search-pro'); ?></legend>
|
|
<label class="shortcode"><?php echo __('Search shortcode:', 'ajax-search-pro'); ?></label>
|
|
<input type="text" class="shortcode" value="[wpdreams_ajaxsearchpro id=<?php echo $search['id']; ?>]"
|
|
readonly="readonly"/>
|
|
<label class="shortcode"><?php echo __('Search shortcode for templates:', 'ajax-search-pro'); ?></label>
|
|
<input type="text" class="shortcode"
|
|
value="<?php echo do_shortcode('[wpdreams_ajaxsearchpro id=<?php echo $search['id']; ?>]'); ?>"
|
|
readonly="readonly"/>
|
|
</fieldset>
|
|
<fieldset>
|
|
<legend><?php echo __('Result shortcodes', 'ajax-search-pro'); ?></legend>
|
|
<p style='margin:19px 10px 9px;'>
|
|
<?php echo __('Shortcodes for placing the result box elsewhere. (only works if the result layout position is <b>block</b> - see in layout options tab)', 'ajax-search-pro'); ?>
|
|
</p>
|
|
<label class="shortcode"><?php echo __('Result box shortcode:', 'ajax-search-pro'); ?></label>
|
|
<input type="text" class="shortcode"
|
|
value="[wpdreams_ajaxsearchpro_results id=<?php echo $search['id']; ?> element='div']"
|
|
readonly="readonly"/>
|
|
<label class="shortcode"><?php echo __('Result shortcode for templates:', 'ajax-search-pro'); ?></label>
|
|
<input type="text" class="shortcode"
|
|
value="<?php echo do_shortcode('[wpdreams_ajaxsearchpro_results id=<?php echo $search['id']; ?> element="div"]'); ?>"
|
|
readonly="readonly"/>
|
|
</fieldset>
|
|
<fieldset>
|
|
<legend><?php echo __('Settings shortcodes', 'ajax-search-pro'); ?></legend>
|
|
<p style='margin:19px 10px 9px;'>
|
|
<?php echo __('Shortcodes for placing the settings box elsewhere.', 'ajax-search-pro'); ?>
|
|
</p>
|
|
<label class="shortcode"><?php echo __('Settings box shortcode:', 'ajax-search-pro'); ?></label>
|
|
<input type="text" class="shortcode"
|
|
value="[wpdreams_asp_settings id=<?php echo $search['id']; ?> element='div']"
|
|
readonly="readonly"/>
|
|
<label class="shortcode"><?php echo __('Shortcode for templates:', 'ajax-search-pro'); ?></label>
|
|
<input type="text" class="shortcode"
|
|
value="<?php echo do_shortcode('[wpdreams_asp_settings id=<?php echo $search['id']; ?> element="div"]'); ?>"
|
|
readonly="readonly"/>
|
|
</fieldset>
|
|
<fieldset>
|
|
<legend><?php echo __('Two Column Shortcode', 'ajax-search-pro'); ?></legend>
|
|
<p style='margin:19px 10px 9px;'>
|
|
<?php echo __('Will place a search box (left) and a result box (right) next to each other, like the one on the demo front page.', 'ajax-search-pro'); ?>
|
|
</p>
|
|
<label class="shortcode"><?php echo __('TC shortcode:', 'ajax-search-pro'); ?></label>
|
|
<input type="text" class="shortcode"
|
|
value="[wpdreams_ajaxsearchpro_two_column id=<?php echo $search['id']; ?> search_width=50 results_width=50 invert=0 element='div']"
|
|
readonly="readonly"/>
|
|
<label class="shortcode"><?php echo __('TC shortcode for templates:', 'ajax-search-pro'); ?></label>
|
|
<input type="text" class="shortcode"
|
|
value="<?php echo do_shortcode('[wpdreams_ajaxsearchpro_two_column id=<?php echo $search['id']; ?> search_width=50 results_width=50 invert=0 element="div"]'); ?>"
|
|
readonly="readonly"/>
|
|
<p style='margin:19px 10px 9px;'><strong><?php echo __('Extra Parameters', 'ajax-search-pro'); ?></strong></p>
|
|
<ul style='margin:19px 10px 9px;'>
|
|
<li><?php echo __('search_width - {integer} the search bar width (in %, not px)', 'ajax-search-pro'); ?></li>
|
|
<li><?php echo __('results_width - {integer} the results box width (in %, not px)', 'ajax-search-pro'); ?></li>
|
|
<li><?php echo __('invert - {0 or 1} inverts the search and results box position from left to right', 'ajax-search-pro'); ?></li>
|
|
</ul>
|
|
</fieldset>
|
|
<fieldset>
|
|
<legend><?php echo __('Elementor Posts Widget Live Filter', 'ajax-search-pro'); ?></legend>
|
|
<div class="item">
|
|
<label>
|
|
<?php echo __('Add to Elementor Posts Widget class name to enable live filtering on that widget', 'ajax-search-pro'); ?>
|
|
<input type="text" value="asp_es_<?php echo $search['id']; ?>" readonly="readonly">
|
|
</label>
|
|
<div class="descMsg">
|
|
<?php echo sprintf(
|
|
__('Please check the <a href="%s">Elementor Posts Live Loader documentation</a> for more details', 'ajax-search-pro'),
|
|
'https://documentation.ajaxsearchpro.com/elementor-integration'); ?>
|
|
</div>
|
|
</div>
|
|
</fieldset>
|
|
</div>
|
|
|
|
<div style="width:100%; height: 1px; background:transparent; border: 0;"></div>
|
|
|
|
<div class="wpdreams-box" style="float:left;">
|
|
<?php echo $action_msg; ?>
|
|
<?php if ( ini_get('max_input_vars') < 1000 ): ?>
|
|
<form action='' style="display:none;" method='POST' name='asp_data_serialized'>
|
|
<input type="hidden" id='asp_options_serialized' name='asp_options_serialized' value = "">
|
|
<input type="submit"
|
|
id='asp_submit_serialized_<?php echo $search['id'] ?>'
|
|
name='asp_submit_serialized_<?php echo $search['id'] ?>'
|
|
style="display: none;">
|
|
</form>
|
|
<?php endif; ?>
|
|
|
|
<form action='' method='POST' name='asp_data' autocomplete="off">
|
|
<ul id="tabs" class='tabs'>
|
|
<li><a tabid="1" class='current general'><?php echo __('Search Sources', 'ajax-search-pro'); ?></a></li>
|
|
<li><a tabid="2" class='search_options'><?php echo __('Search Behavior', 'ajax-search-pro'); ?></a></li>
|
|
<li><a tabid="3" class='frontend'><?php echo __('Frontend Search Settings', 'ajax-search-pro'); ?></a></li>
|
|
<li><a tabid="4" class='layout'><?php echo __('Layout options', 'ajax-search-pro'); ?></a></li>
|
|
<li><a tabid="5" class='autocomplete'><?php echo __('Autocomplete & Suggestions', 'ajax-search-pro'); ?></a></li>
|
|
<li><a tabid="6" class='theme'><?php echo __('Theme & Styling', 'ajax-search-pro'); ?></a></li>
|
|
<li><a tabid="8" class='multisite<?php echo is_multisite() || ASP_DEMO ? '' : ' tab_disabled'; ?>'><?php echo __('Multisite Options', 'ajax-search-pro'); ?></a></li>
|
|
<li><a tabid="7" class='advanced'><?php echo __('Advanced options', 'ajax-search-pro'); ?></a></li>
|
|
</ul>
|
|
<div class='tabscontent'>
|
|
<div tabid="1">
|
|
<fieldset>
|
|
<legend><?php echo __('Search Sources', 'ajax-search-pro'); ?></legend>
|
|
|
|
<?php include(ASP_PATH . "backend/tabs/instance/general_options.php"); ?>
|
|
|
|
</fieldset>
|
|
</div>
|
|
<div tabid="2">
|
|
<fieldset>
|
|
<legend><?php echo __('Search Behavior Options', 'ajax-search-pro'); ?></legend>
|
|
|
|
<?php include(ASP_PATH . "backend/tabs/instance/search_options.php"); ?>
|
|
|
|
</fieldset>
|
|
</div>
|
|
<div tabid="3">
|
|
<fieldset>
|
|
<legend><?php echo __('Frontend Search Settings options', 'ajax-search-pro'); ?></legend>
|
|
|
|
<?php include(ASP_PATH . "backend/tabs/instance/frontend_options.php"); ?>
|
|
|
|
</fieldset>
|
|
</div>
|
|
<div tabid="4">
|
|
<fieldset>
|
|
<legend><?php echo __('Layout Options', 'ajax-search-pro'); ?></legend>
|
|
|
|
<?php include(ASP_PATH . "backend/tabs/instance/layout_options.php"); ?>
|
|
|
|
</fieldset>
|
|
</div>
|
|
<div tabid="5">
|
|
<fieldset>
|
|
<legend><?php echo __('Autocomplete & Suggestions', 'ajax-search-pro'); ?></legend>
|
|
|
|
<?php include(ASP_PATH . "backend/tabs/instance/autocomplete_options.php"); ?>
|
|
|
|
</fieldset>
|
|
</div>
|
|
<div tabid="6">
|
|
<fieldset>
|
|
<legend><?php echo __('Theme & Styling Options', 'ajax-search-pro'); ?></legend>
|
|
|
|
<?php include(ASP_PATH . "backend/tabs/instance/theme_options.php"); ?>
|
|
|
|
</fieldset>
|
|
</div>
|
|
<div tabid="8">
|
|
<fieldset>
|
|
<legend><?php echo __('Multisite Options', 'ajax-search-pro'); ?></legend>
|
|
|
|
<?php include(ASP_PATH . "backend/tabs/instance/multisite_options.php"); ?>
|
|
|
|
</fieldset>
|
|
</div>
|
|
<div tabid="7">
|
|
<fieldset>
|
|
<legend><?php echo __('Advanced Options', 'ajax-search-pro'); ?></legend>
|
|
|
|
<?php include(ASP_PATH . "backend/tabs/instance/advanced_options.php"); ?>
|
|
|
|
</fieldset>
|
|
</div>
|
|
<div tabid="loader">
|
|
<p><?php echo __('Loading...', 'ajax-search-pro'); ?></p>
|
|
</div>
|
|
</div>
|
|
<input type="hidden" name="sett_tabid" id="sett_tabid" value="1" />
|
|
<input type="hidden" name="asp_sett_nonce" id="asp_sett_nonce" value="<?php echo wp_create_nonce( "asp_sett_nonce" ); ?>">
|
|
</form>
|
|
</div>
|
|
|
|
<?php include(ASP_PATH . "backend/sidebar.php"); ?>
|
|
|
|
<?php
|
|
$output = ob_get_clean();
|
|
echo $output;
|
|
?>
|
|
<div class="clear"></div>
|
|
</div>
|
|
|
|
<?php
|
|
$media_query = ASP_DEBUG == 1 ? asp_gen_rnd_str() : get_site_option("asp_media_query", "defn");
|
|
// This needs to be enqueued first, so the node actions are attached, otherwise they will not work
|
|
// @TODO 4.10.5
|
|
/*wp_enqueue_script('wpd-backend-instant', plugin_dir_url(__FILE__) . 'settings/assets/instant_actions.js', array(
|
|
'jquery'
|
|
), $media_query, true);
|
|
wp_enqueue_script('wpd-backend-instance', plugin_dir_url(__FILE__) . 'settings/assets/search_instance.js', array(
|
|
'wpd-backend-instant'
|
|
), $media_query, true);
|
|
*/
|
|
// TODO 4.10.5 remove this, and use the one above
|
|
wp_enqueue_script('wpd-backend-instance', plugin_dir_url(__FILE__) . 'settings/assets/search_instance.js', array(
|
|
'jquery'
|
|
), $media_query, true);
|
|
wp_set_script_translations( 'wpd-backend-instance', 'ajax-search-pro' );
|
|
wp_enqueue_script('wpd-backend-options-search', plugin_dir_url(__FILE__) . 'settings/assets/option_search.js', array(
|
|
'jquery', 'wp-i18n'
|
|
), $media_query, true);
|
|
|
|
$metadata = require_once ASP_PATH . 'build/js/search-instance.asset.php';
|
|
wp_enqueue_script(
|
|
'wpd-asp-search-instance',
|
|
ASP_URL_NP . 'build/js/search-instance.js',
|
|
$metadata['dependencies'],
|
|
$metadata['version'],
|
|
array( 'in_footer' =>true ),
|
|
);
|