File: /home/clinicamaciel/www/wp-content/plugins/essential-grid/admin/views/grid-global-settings.php
<?php
/**
* @package Essential_Grid
* @author ThemePunch <info@themepunch.com>
* @link http://www.themepunch.com/essential/
* @copyright 2020 ThemePunch
*/
if( !defined( 'ABSPATH') ) exit();
?>
<h2 class="topheader"><?php echo esc_html(get_admin_page_title()); ?></h2>
<div id="global-settings-dialog-wrap">
<?php
$curPermission = Essential_Grid_Admin::getPluginPermissionValue();
$output_protection = get_option('tp_eg_output_protection', 'none');
$tooltips = get_option('tp_eg_tooltips', 'true');
$wait_for_fonts = get_option('tp_eg_wait_for_fonts', 'true');
$js_to_footer = get_option('tp_eg_js_to_footer', 'false');
$use_cache = get_option('tp_eg_use_cache', 'false');
$overwrite_gallery = get_option('tp_eg_overwrite_gallery', 'off');
$query_type = get_option('tp_eg_query_type', 'wp_query');
$enable_log = get_option('tp_eg_enable_log', 'false');
$use_lightbox = get_option('tp_eg_use_lightbox', 'false');
$hasposts = get_posts('post_type=essential_grid');
$default_cpt = !empty ( $hasposts ) ? 'true' : 'false';
$enable_custom_post_type = get_option('tp_eg_enable_custom_post_type', $default_cpt);
$enable_media_filter = get_option('tp_eg_enable_media_filter', 'false');
$enable_post_meta = get_option('tp_eg_enable_post_meta', 'true');
$no_filter_match_message = get_option('tp_eg_no_filter_match_message', 'No Items for the Selected Filter');
$global_default_img = get_option('tp_eg_global_default_img', '');
$enable_fontello = get_option('tp_eg_global_enable_fontello', 'backfront');
$enable_font_awesome = get_option('tp_eg_global_enable_font_awesome', 'false');
$enable_pe7 = get_option('tp_eg_global_enable_pe7', 'false');
$enable_youtube_nocookie = get_option('tp_eg_enable_youtube_nocookie', 'false');
$metas = new Essential_Grid_Meta();
$meta_links = new Essential_Grid_Meta_Linking();
$custom_metas = $metas->get_all_meta(false);
$link_metas = $meta_links->get_all_link_meta();
$settings = get_option('esg-search-settings', array('settings' => array(), 'global' => array(), 'shortcode' => array()));
$settings = Essential_Grid_Base::stripslashes_deep($settings);
$base = new Essential_Grid_Base();
$grids = Essential_Grid::get_grids_short();
$search_enable = $base->getVar(@$settings, array('settings', 'search-enable'), 'off');
$my_skins = array(
'light' => __('Light', EG_TEXTDOMAIN),
'dark' => __('Dark', EG_TEXTDOMAIN)
);
$my_skins = apply_filters('essgrid_modify_search_skins', $my_skins);
if($use_lightbox!='disabled') { update_option('tp_eg_use_lightbox', 'false'); }
if(empty($global_default_img)) {
$display_global_img = 'hidden';
$global_default_src = '';
}
else {
$display_global_img = 'block';
$global_default_src = wp_get_attachment_image_src($global_default_img, 'large');
$global_default_src = !empty($global_default_src) ? $global_default_src[0] : '';
}
$data = apply_filters('essgrid_globalSettingsDialog_data', array());
?>
<div class="save-wrap-settings">
<!-- <div style="width:150px; background:#E1e1e1;position:absolute;height:100%;top:0px;left:0px;"></div>-->
<div class="sws-toolbar-button" style="transform: translate(0px, 0px);"><a class="esg-btn esg-green" href="javascript:void(0);" id="eg-btn-save-global-settings"><i style="padding-left:4px" class="rs-icon-save-light"></i>Save Settings</a></div>
<div class="sws-toolbar-button"><a class="esg-btn esg-purple" href="<?php echo self::getViewUrl(Essential_Grid_Admin::VIEW_OVERVIEW); ?>"><i class="eg-icon-cancel"></i><?php _e('Close', EG_TEXTDOMAIN); ?></a></div>
</div>
<div id="eg-global-settings-menu">
<ul>
<li class="eg-menu-placeholder"></li>
<li class="selected-esg-setting" data-toshow="esg-global-settings"><i class="eg-icon-cog"></i><p><?php echo _e('Settings', EG_TEXTDOMAIN); ?></p></li>
<li data-toshow="esg-custommeta-settings"><i class="eg-icon-menu"></i><p><?php echo _e('Meta', EG_TEXTDOMAIN); ?></p></li>
<li data-toshow="esg-metareferences-settings"><i class="eg-icon-shuffle"></i><p><?php echo _e('Referenes', EG_TEXTDOMAIN); ?></p></li>
<li data-toshow="esg-globalsearch-settings"><i class="eg-icon-search"></i><p><?php echo _e('Global Search', EG_TEXTDOMAIN); ?></p></li>
<li data-toshow="esg-shortcodesearch-settings"><i class="eg-icon-search"></i><p><?php echo _e('Shortcode Search', EG_TEXTDOMAIN); ?></p></li>
<li data-toshow="esg-font-settings"><i style="font-size: 20px;line-height: 56px;" class="material-icons">font_download</i><p><?php echo _e('Fonts', EG_TEXTDOMAIN); ?></p></li>
</ul>
</div>
<div class="esg-box">
<div id="esg-font-settings" class="esg-settings-container">
<div id="esg-font-settings-inner-wrapper"> <!-- BASIC SETTINGS -->
<?php
$fonts = new ThemePunch_Fonts();
$custom_fonts = $fonts->get_all_fonts();
if(!empty($custom_fonts)){
foreach($custom_fonts as $font){
$cur_font = $font['url'];
$cur_font = explode('+', $cur_font);
$cur_font = implode(' ', $cur_font);
$cur_font = explode(':', $cur_font);
$title = $cur_font['0'];
?>
<div class="punch_font_wrapper">
<div class="eg-cs-tbc-left"><esg-llabel><span><?php echo $title; ?></span></esg-llabel></div>
<div class="eg-cs-tbc">
<label><?php _e('Handle:', EG_TEXTDOMAIN); ?></label><span style="display:inline-block;margin-left:-20px;margin-right:5px">tp-</span><input type="text" class="esg-font-handle" name="esg-font-handle[]" value="<?php echo @$font['handle']; ?>" readonly="readonly">
<div class="div13"></div>
<label><?php _e('Parameter:', EG_TEXTDOMAIN); ?></label><input type="text" class="esg-font-url" data-handle="<?php echo @$font['handle']; ?>" name="esg-font-url[]" value="<?php echo @$font['url']; ?>">
<div class="div13"></div>
<div class="esg-btn esg-red eg-font-delete"><?php _e('Remove', EG_TEXTDOMAIN); ?></div>
</div>
</div>
<?php
}
}
?>
</div>
<div>
<div class="eg-cs-tbc-left"><esg-llabel><span><?php _e('Add Font', EG_TEXTDOMAIN); ?></span></esg-llabel></div>
<div class="eg-cs-tbc">
<i style="font-size:10px;color:#777"><?php _e('Copy the Google Font Family from <a href="http://www.google.com/fonts" target="_blank">http://www.google.com/fonts</a> like: <strong>Open+Sans:400,700,600</strong>', EG_TEXTDOMAIN); ?></i>
<div class="div13"></div>
<div class="esg-btn esg-purple" id="eg-font-add"><?php _e('Add New Font', EG_TEXTDOMAIN); ?></div>
</div>
</div>
</div>
<div id="esg-global-settings" class="esg-settings-container active-esc">
<div> <!-- BASIC SETTINGS -->
<div class="eg-cs-tbc-left"><esg-llabel><span><?php echo _e('Basics', EG_TEXTDOMAIN); ?></span></esg-llabel></div>
<div class="eg-cs-tbc">
<label><?php echo _e('View Plugin Permissions', EG_TEXTDOMAIN); ?></label><!--
--><select name="plugin_permissions">
<option <?php echo ($curPermission == Essential_Grid_Admin::ROLE_ADMIN) ? 'selected="selected" ' : '';?>value="admin"><?php _e('Admin', EG_TEXTDOMAIN); ?></option>
<option <?php echo ($curPermission == Essential_Grid_Admin::ROLE_EDITOR) ? 'selected="selected" ' : '';?>value="editor"><?php _e('Editor, Admin', EG_TEXTDOMAIN); ?></option>
<option <?php echo ($curPermission == Essential_Grid_Admin::ROLE_AUTHOR) ? 'selected="selected" ' : '';?>value="author"><?php _e('Author, Editor, Admin', EG_TEXTDOMAIN); ?></option>
</select>
<div class="div13"></div>
<label><?php echo _e('Advanced Tooltips', EG_TEXTDOMAIN); ?></label><!--
--><select name="plugin_tooltips">
<option <?php echo ($tooltips == 'true') ? 'selected="selected" ' : '';?>value="true"><?php _e('On', EG_TEXTDOMAIN); ?></option>
<option <?php echo ($tooltips == 'false') ? 'selected="selected" ' : '';?>value="false"><?php _e('Off', EG_TEXTDOMAIN); ?></option>
</select>
<div class="div5"></div>
<label></label><span class="esgs-info"><?php echo _e('Show or Hide the Tooltips on Hover over the Settings in Essential Grid Backend. ', EG_TEXTDOMAIN); ?></span>
<div class="div13"></div>
<label><?php echo _e('Page/Post Options', EG_TEXTDOMAIN); ?></label><!--
--><select name="enable_post_meta">
<option <?php echo ($enable_post_meta == 'true') ? 'selected="selected" ' : '';?>value="true"><?php _e('On', EG_TEXTDOMAIN); ?></option>
<option <?php echo ($enable_post_meta == 'false') ? 'selected="selected" ' : '';?>value="false"><?php _e('Off', EG_TEXTDOMAIN); ?></option>
</select>
<div class="div5"></div>
<label></label><span class="esgs-info"><?php echo _e('This enables the post and page meta box options beneath the WordPress content editor pages.', EG_TEXTDOMAIN); ?></span>
<div class="div13"></div>
<label><?php echo _e('YouTube NoCookie', EG_TEXTDOMAIN); ?></label><!--
--><select name="enable_youtube_nocookie">
<option <?php echo ($enable_youtube_nocookie == 'true') ? 'selected="selected" ' : '';?>value="true"><?php _e('On', EG_TEXTDOMAIN); ?></option>
<option <?php echo ($enable_youtube_nocookie == 'false') ? 'selected="selected" ' : '';?>value="false"><?php _e('Off', EG_TEXTDOMAIN); ?></option>
</select>
<div class="div5"></div>
<label></label><span class="esgs-info"><?php echo _e('This enables changing all YouTube embeds to the youtube-nocookie.com url to save no cookies.', EG_TEXTDOMAIN); ?></span>
<div class="div13"></div>
<label><?php echo _e('Lightbox', EG_TEXTDOMAIN); ?></label><!--
--><select name="use_lightbox">
<option <?php echo ($use_lightbox == 'false') ? 'selected="selected" ' : '';?>value="false"><?php _e('Own LightBox', EG_TEXTDOMAIN); ?></option>
<option <?php echo ($use_lightbox == 'disabled') ? 'selected="selected" ' : '';?>value="disabled"><?php _e('3rd Party LightBox', EG_TEXTDOMAIN); ?></option>
</select>
<div class="div5"></div>
<label></label><span class="esgs-info"><?php echo _e('Only change this in case you wish to use 3rd party Lightbox.', EG_TEXTDOMAIN); ?></span>
</div>
</div>
<div> <!-- FONT SETTINGS -->
<div class="eg-cs-tbc-left"><esg-llabel><span><?php echo _e('Fonts & Icons', EG_TEXTDOMAIN); ?></span></esg-llabel></div>
<div class="eg-cs-tbc">
<label><?php echo _e('Wait for Fonts', EG_TEXTDOMAIN); ?></label><!--
--><select name="wait_for_fonts">
<option <?php echo ($wait_for_fonts == 'true') ? 'selected="selected" ' : '';?>value="true"><?php _e('On', EG_TEXTDOMAIN); ?></option>
<option <?php echo ($wait_for_fonts == 'false') ? 'selected="selected" ' : '';?>value="false"><?php _e('Off', EG_TEXTDOMAIN); ?></option>
</select>
<div class="div5"></div>
<label></label><span class="esgs-info"><?php echo _e('In case Option is enabled, the Grid will always wait till the Google Fonts has been loaded, before the grid starts.', EG_TEXTDOMAIN); ?> </span>
<div class="div13"></div>
<label><?php echo _e('Fontello Icons', EG_TEXTDOMAIN); ?></label><!--
--><select name="enable_fontello">
<!--option <?php echo ($enable_fontello == 'false') ? 'selected="selected" ' : '';?> value="false"><?php _e('Off', EG_TEXTDOMAIN); ?></option-->
<option <?php echo ($enable_fontello == 'backfront') ? 'selected="selected" ' : '';?> value="backfront"><?php _e('Backend+Frontend', EG_TEXTDOMAIN); ?></option>
<option <?php echo ($enable_fontello == 'back') ? 'selected="selected" ' : '';?> value="back"><?php _e('Only Backend', EG_TEXTDOMAIN); ?></option>
</select>
<div class="div13"></div>
<label><?php echo _e('Font-Awesome Icons', EG_TEXTDOMAIN); ?></label><!--
--><select name="enable_font_awesome">
<option <?php echo ($enable_font_awesome == 'false') ? 'selected="selected" ' : '';?> value="false"><?php _e('Off', EG_TEXTDOMAIN); ?></option>
<option <?php echo ($enable_font_awesome == 'backfront') ? 'selected="selected" ' : '';?> value="backfront"><?php _e('Backend+Frontend', EG_TEXTDOMAIN); ?></option>
<option <?php echo ($enable_font_awesome == 'back') ? 'selected="selected" ' : '';?> value="back"><?php _e('Only Backend', EG_TEXTDOMAIN); ?></option>
</select>
<div class="div13"></div>
<label><?php echo _e('Stroke 7 Icons', EG_TEXTDOMAIN); ?></label><!--
--><select name="enable_pe7">
<option <?php echo ($enable_pe7 == 'false') ? 'selected="selected" ' : '';?> value="false"><?php _e('Off', EG_TEXTDOMAIN); ?></option>
<option <?php echo ($enable_pe7 == 'backfront') ? 'selected="selected" ' : '';?> value="backfront"><?php _e('Backend+Frontend', EG_TEXTDOMAIN); ?></option>
<option <?php echo ($enable_pe7 == 'back') ? 'selected="selected" ' : '';?> value="back"><?php _e('Only Backend', EG_TEXTDOMAIN); ?></option>
</select>
</div>
</div>
<div> <!-- OutPut Settings-->
<div class="eg-cs-tbc-left"><esg-llabel><span><?php echo _e('Output Settings', EG_TEXTDOMAIN); ?></span></esg-llabel></div>
<div class="eg-cs-tbc">
<label><?php echo _e('Use Own Caching System', EG_TEXTDOMAIN); ?></label><!--
--><select name="use_cache">
<option <?php echo ($use_cache == 'true') ? 'selected="selected" ' : '';?>value="true"><?php _e('On', EG_TEXTDOMAIN); ?></option>
<option <?php echo ($use_cache == 'false') ? 'selected="selected" ' : '';?>value="false"><?php _e('Off', EG_TEXTDOMAIN); ?></option>
</select><!--
--><div class="space18"></div><span id="ess-grid-delete-cache" class="esg-btn esg-red"><?php echo _e('delete cache', EG_TEXTDOMAIN); ?></span>
<div class="div5"></div>
<label></label><span class="esgs-info"><?php _e('Essential Grid has two caching engines. Primary cache will precache Post Queries to give a quicker result of queries. The internal engine will allow to cache the whole grid\'s HTML markup which will provide an extreme quick output. Cache should always be deleted after changes! Only for advanced users.', EG_TEXTDOMAIN); ?></span>
<div class="div13"></div>
<label><?php echo _e('Output Filter Protection', EG_TEXTDOMAIN); ?></label><!--
--><select name="output_protection">
<option <?php echo ($output_protection == 'none') ? 'selected="selected" ' : '';?>value="none"><?php _e('None', EG_TEXTDOMAIN); ?></option>
<option <?php echo ($output_protection == 'compress') ? 'selected="selected" ' : '';?>value="compress"><?php _e('By Compressing Output', EG_TEXTDOMAIN); ?></option>
<option <?php echo ($output_protection == 'echo') ? 'selected="selected" ' : '';?>value="echo"><?php _e('By Echo Output', EG_TEXTDOMAIN); ?></option>
</select>
<div class="div5"></div>
<label></label><span class="esgs-info"><?php echo _e('The HTML Markup is printed in compressed form, or it is written through Echo instead of Return. In some cases Echo will move the full Grid to the top/bottom of the page ! ', EG_TEXTDOMAIN); ?></span>
<div class="div13"></div>
<label><?php echo _e('JS To Footer', EG_TEXTDOMAIN); ?></label><!--
--><select name="js_to_footer">
<option <?php echo ($js_to_footer == 'true') ? 'selected="selected" ' : '';?>value="true"><?php _e('On', EG_TEXTDOMAIN); ?></option>
<option <?php echo ($js_to_footer == 'false') ? 'selected="selected" ' : '';?>value="false"><?php _e('Off', EG_TEXTDOMAIN); ?></option>
</select>
<div class="div5"></div>
<label></label><span class="esgs-info"><?php echo _e('Defines where the jQuery files should be loaded in the DOM.', EG_TEXTDOMAIN); ?></span>
<div class="div13"></div>
<label><?php echo _e('Debug Log', EG_TEXTDOMAIN); ?></label><!--
--><select name="enable_log">
<option <?php echo ($enable_log == 'true') ? 'selected="selected" ' : '';?>value="true"><?php _e('On', EG_TEXTDOMAIN); ?></option>
<option <?php echo ($enable_log == 'false') ? 'selected="selected" ' : '';?>value="false"><?php _e('Off', EG_TEXTDOMAIN); ?></option>
</select>
<div class="div5"></div>
<label></label><span class="esgs-info"><?php echo _e('This enables console logs for debugging purposes.', EG_TEXTDOMAIN); ?> </span>
</div>
</div>
<div> <!-- Content Settings-->
<div class="eg-cs-tbc-left"><esg-llabel><span><?php echo _e('Content', EG_TEXTDOMAIN); ?></span></esg-llabel></div>
<div class="eg-cs-tbc">
<label><?php echo _e('Convert WP Galleries', EG_TEXTDOMAIN); ?></label><!--
--><select name="overwrite_gallery">
<option <?php selected( $overwrite_gallery, 'off' , true ); ?> value="off"><?php _e('Off', EG_TEXTDOMAIN); ?></option>
<?php
$egrids = new Essential_Grid();
$arrGrids = $egrids->get_essential_grids();
foreach($arrGrids as $grid){
echo '<option value="'.$grid->handle.'" '. selected( $overwrite_gallery, $grid->handle, false ) .'>'. $grid->name . '</option>';
}
?>
</select>
<div class="div5"></div>
<label></label><span class="esgs-info"><?php echo _e('If selected <strong>all</strong> original WordPress Galleries in the content will be displayed with Essential Grid. Select a grid in each gallery setting individually. Galleries with no grid setting will use this default grid.', EG_TEXTDOMAIN); ?></span>
<div class="div13"></div>
<label><?php echo _e('Set Query Type Used', EG_TEXTDOMAIN); ?></label><!--
--><select name="query_type">
<option <?php echo ($query_type == 'wp_query') ? 'selected="selected" ' : '';?>value="wp_query"><?php _e('WP_Query()', EG_TEXTDOMAIN); ?></option>
<option <?php echo ($query_type == 'get_posts') ? 'selected="selected" ' : '';?>value="get_posts"><?php _e('get_posts()', EG_TEXTDOMAIN); ?></option>
</select>
<div class="div5"></div>
<label></label><span class="esgs-info"><?php echo _e('If this is changed, caching of Essential Grid may be required to be deleted!', EG_TEXTDOMAIN); ?></span>
<div class="div13"></div>
<label><?php echo _e('Media Filter', EG_TEXTDOMAIN); ?></label><!--
--><select name="enable_media_filter">
<option <?php echo ($enable_media_filter == 'true') ? 'selected="selected" ' : '';?>value="true"><?php _e('On', EG_TEXTDOMAIN); ?></option>
<option <?php echo ($enable_media_filter == 'false') ? 'selected="selected" ' : '';?>value="false"><?php _e('Off', EG_TEXTDOMAIN); ?></option>
</select>
<div class="div5"></div>
<label></label><span class="esgs-info"><?php echo _e('This enables the media filters in the backend.', EG_TEXTDOMAIN); ?></span>
<div class="div13"></div>
<label><?php echo _e('Example Custom Post Type', EG_TEXTDOMAIN); ?></label><!--
--><select name="enable_custom_post_type" style="margin-bottom: 4px">
<option <?php echo ($enable_custom_post_type == 'true') ? 'selected="selected" ' : '';?>value="true"><?php _e('On', EG_TEXTDOMAIN); ?></option>
<option <?php echo ($enable_custom_post_type == 'false') ? 'selected="selected" ' : '';?>value="false"><?php _e('Off', EG_TEXTDOMAIN); ?></option>
</select><div class="space18"></div><!--
--><button style="display: none; margin-left: 10px !important" class="esg-btn esg-purple" id="esg-import-demo-posts">Import Full Demo Data</button>
<div class="div5"></div>
<label></label><span class="esgs-info"><?php echo _e('This enables the Ess. Grid Example Custom Post Type.<br>Needs page reload to take action.', EG_TEXTDOMAIN); ?></span>
<div class="div13"></div>
<label><?php echo _e('Global Default Image', EG_TEXTDOMAIN); ?></label><!--
--><button class="esg-btn esg-purple eg-global-add-image" data-setto="global_default_img">Choose Image</button><div class="space18"></div>
<button class="esg-btn esg-red eg-global-image-clear" data-setto="global_default_img">Remove Image</button>
<div class="div5"></div>
<label></label><span class="esgs-info"><?php echo _e('Set an optional default global image to avoid possible blank grid items', EG_TEXTDOMAIN); ?></span>
<img id="global_default_img-img" class="image-holder-wrap-div" src="<?php echo $global_default_src; ?>" style="display: <?php echo $display_global_img; ?>">
<input type="hidden" id="global_default_img" name="global_default_img" value="<?php echo $global_default_img; ?>">
<div class="div13"></div>
<label><?php echo _e('No Filter Match Message', EG_TEXTDOMAIN); ?></label><!--
--><input style="width:305px" type=text name="no_filter_match_message" id="no_filter_match_message" value="<?php echo $no_filter_match_message; ?>">
<div class="div5"></div>
<label></label><span class="esgs-info"><?php echo _e('Normally filter selections would always return a result, but if you are using multiple Filter Groups with "AND" set for the Category Relation this custom message will be displayed to the user.', EG_TEXTDOMAIN); ?></span>
</div>
</div>
<?php
do_action('essgrid_globalSettingsDialog', $data);
?>
</div>
<div id="esg-custommeta-settings" class="esg-settings-container ">
<div class="eg-custom-meta-wrap"></div>
<div> <!-- SETTINGS - CUSTOM META -->
<div class="eg-cs-tbc-left"><esg-llabel><span><?php echo _e('Add New', EG_TEXTDOMAIN); ?></span></esg-llabel></div>
<div class="eg-cs-tbc" style="padding-left:15px">
<div class="esg-btn esg-purple" id="eg-meta-add"><?php _e('Create New Meta Key', EG_TEXTDOMAIN); ?></div>
</div>
</div>
<div> <!-- FAQ - CUSTOM META -->
<div class="eg-cs-tbc-left"><esg-llabel><span><?php echo _e('FAQ', EG_TEXTDOMAIN); ?></span></esg-llabel></div>
<div class="eg-cs-tbc" style="padding-left:15px; line-height: 22px">
<div class="metabox-title"><?php _e('Custom Meta Boxes', EG_TEXTDOMAIN); ?></div>
<div><?php _e('A custom meta (or write) box is incredibly simple in theory. It allows you to add a custom piece of data to a post or page in WordPress.<br>These meta boxes are available in any Posts, Custom Posts, Pages and Custom Items in Grid Editor in the Essential Grid.', EG_TEXTDOMAIN); ?></div>
<div><?php _e('Imagine you wish to have a Custom Link to your posts. You can create 1 Meta Box named <i>Custom Link</i>. Now this Meta Box is available in all your posts where you can add your individual value for it. In the Skin Editor you can refer to this Meta Data to show the individual content of your posts.', EG_TEXTDOMAIN); ?></div>
<div class="div30"></div>
<div class="metabox-title"><?php _e('Custom Meta Fields', EG_TEXTDOMAIN); ?></div>
<?php _e('You can edit the Custom Meta Values in your posts, custom post and pages within the Essential Grid section, and also in the Essential Grid Editor by clicking on the <strong>Cog Wheel Icon</strong> <span class="dashicons dashicons-admin-generic"></span> of the Item.', EG_TEXTDOMAIN); ?>
<div class="div30"></div>
<div class="metabox-title"><?php _e('How to add to my Skin', EG_TEXTDOMAIN); ?></div>
<?php _e('<strong>Edit the Skin</strong> you selected for the Grid(s) and <strong>add or edit</strong> an existing <strong>Layer</strong>. Here you can select under the source tab the <strong>Source Type</strong> to <strong>"POST"</strong> and <strong>Element</strong> to <strong>"META"</strong>. Pick the Custom Meta Key of your choice from the Drop Down list. ', EG_TEXTDOMAIN); ?>
</div>
</div>
</div><!-- END OF ESG CUSTOM META SETTINGS -->
<div id="esg-metareferences-settings" class="esg-settings-container">
<div class="eg-link-meta-wrap"></div>
<div> <!-- SETTINGS - METAREFERENCES META -->
<div class="eg-cs-tbc-left"><esg-llabel><span><?php echo _e('Add New', EG_TEXTDOMAIN); ?></span></esg-llabel></div>
<div class="eg-cs-tbc" style="padding-left:15px">
<div class="esg-btn esg-purple" id="eg-link-meta-add" href="javascript:void(0);"><?php _e('Add New Meta Reference', EG_TEXTDOMAIN); ?></div>
</div>
</div>
<div> <!-- FAQ - METAREFERENCES META -->
<div class="eg-cs-tbc-left"><esg-llabel><span><?php echo _e('FAQ', EG_TEXTDOMAIN); ?></span></esg-llabel></div>
<div class="eg-cs-tbc" style="padding-left:15px; line-height: 22px">
<div class="metabox-title"><?php _e('What Are Meta References / Aliases ?', EG_TEXTDOMAIN); ?></div>
<div><?php _e('To make the selection of different <strong>existing Meta Datas of other plugins and themes</strong> easier within the Essential Grid, we created this Reference Table. <br>Define the Internal name (within Essential Grid) and the original Handle Name of the Meta Key, and all these Meta Keys are available anywhere in Essential Grid from now on.', EG_TEXTDOMAIN); ?> </div>
<div class="div30"></div>
<div class="metabox-title"><?php _e('Where can I edit the Meta Key References ?', EG_TEXTDOMAIN); ?></div>
<?php _e('You will still need to edit the Value of these Meta Keys in the old place where you edited them before. (Also applies to WooCommerce, Event Plugins or other third party plugins) We only reference on these values to deliver the value to the Grid.', EG_TEXTDOMAIN); ?>
<div class="div30"></div>
<div class="metabox-title"><?php _e('How to add Meta Field References to my Skin?', EG_TEXTDOMAIN); ?></div>
<?php _e('<strong>Edit the Skin</strong> you selected for the Grid(s) and <strong>add or edit</strong> an existing <strong>Layer</strong>. Here you can select under the source tab the <strong>Source Type</strong> to <strong>"POST"</strong> and <strong>Element</strong> to <strong>"META"</strong>. Pick the Custom Meta Key of your choice from the Drop Down list. ', EG_TEXTDOMAIN); ?>
</div>
</div>
</div><!-- END OF META REFERENCES -->
<div id="esg-globalsearch-settings" class="esg-settings-container">
<div> <!-- SETTINGS - GLOBAL SEARCH ENABLED -->
<div class="eg-cs-tbc-left"><esg-llabel><span><?php echo _e('GlobalSearch', EG_TEXTDOMAIN); ?></span></esg-llabel></div>
<div class="eg-cs-tbc">
<label for="search-enable"><?php _e('Enable Search Globally', EG_TEXTDOMAIN); ?></label><!--
--><input type="radio" name="search-enable" value="on" <?php checked($search_enable, 'on'); ?> /><?php _e('On', EG_TEXTDOMAIN); ?><div class="space18"></div><!--
--><input type="radio" name="search-enable" value="off" <?php checked($search_enable, 'off'); ?> /><?php _e('Off', EG_TEXTDOMAIN); ?>
</div>
</div>
<form id="esg-search-global-settings">
<div class="eg-global-search-wrap"></div>
</form>
<div> <!-- SETTINGS - GLOBAL SEARCH META -->
<div class="eg-cs-tbc-left"><esg-llabel><span><?php echo _e('Add Settings', EG_TEXTDOMAIN); ?></span></esg-llabel></div>
<div class="eg-cs-tbc" style="padding-left:15px">
<div id="eg-btn-add-global-setting" class="esg-btn esg-purple"><?php _e('Add Global Search Setting', EG_TEXTDOMAIN); ?></div>
</div>
</div>
<div> <!-- FAQ - GLOBAL SEARCH META -->
<div class="eg-cs-tbc-left"><esg-llabel><span><?php echo _e('FAQ', EG_TEXTDOMAIN); ?></span></esg-llabel></div>
<div class="eg-cs-tbc" style="padding-left:15px; line-height: 22px">
<div class="metabox-title"><?php _e('What Are The Search Settings?', EG_TEXTDOMAIN); ?></div>
<div><?php _e('With this, you can let any element in your theme use Essential Grid as a Search Result page.', EG_TEXTDOMAIN); ?></div>
<div><?php _e('You can add more than one Setting to have more than one resulting Grid Style depending on the element that opened the search overlay', EG_TEXTDOMAIN); ?></div>
</div>
</div>
</div><!-- END OF GLOBAL SEARCH -->
<div id="esg-shortcodesearch-settings" class="esg-settings-container ">
<form id="esg-search-shortcode-settings">
<div class="eg-shortcode-search-wrap"></div>
</form>
<div> <!-- SETTINGS - SHORTCODE SEARCH META -->
<div class="eg-cs-tbc-left"><esg-llabel><span><?php echo _e('Add Settings', EG_TEXTDOMAIN); ?></span></esg-llabel></div>
<div class="eg-cs-tbc" style="padding-left:15px">
<div id="eg-btn-add-shortcode-setting" class="esg-btn esg-purple"><?php _e('Add Shortcode based Search Setting', EG_TEXTDOMAIN); ?></div>
</div>
</div>
<div> <!-- FAQ - SHORTCODE SEARCH META -->
<div class="eg-cs-tbc-left"><esg-llabel><span><?php echo _e('FAQ', EG_TEXTDOMAIN); ?></span></esg-llabel></div>
<div class="eg-cs-tbc" style="padding-left:15px; line-height: 22px">
<div class="metabox-title"><?php _e('What Are The Search ShortCode Settings?', EG_TEXTDOMAIN); ?></div>
<?php _e('With this, you can create a ShortCode with custom HTML markup that can be used anywhere on the website to use the search functionality of Essential Grid.', EG_TEXTDOMAIN); ?>
<div class="div13"></div>
<div><?php _e('- adding HTML will add the onclick event in the first found tag', EG_TEXTDOMAIN); ?><div>
<div><?php _e('- adding text will wrap an a tag around it that will have the onclick event', EG_TEXTDOMAIN); ?></div>
</div>
</div>
</div>
</div>
</div>
<?php Essential_Grid_Dialogs::custom_meta_dialog(); ?>
<?php Essential_Grid_Dialogs::custom_meta_linking_dialog(); ?>
<?php Essential_Grid_Dialogs::fonts_dialog(); ?>
<script type="text/html" id="tmpl-esg-custom-meta-wrap">
<div class="custom-tbc-container"> <!-- SETTINGS - GLOBAL SEARCH RULE -->
<div class="eg-cs-tbc-left"><esg-llabel><span><?php echo _e('Custom Meta', EG_TEXTDOMAIN); ?></span></esg-llabel></div>
<div class="eg-cs-tbc">
<div class="esg-meta-rule">
<label><?php _e('Handle', EG_TEXTDOMAIN); ?></label><input class="esg-meta-handle-input" type="text" name="esg-meta-handle[]" value="{{ data.handle }}" />
<div class="div13"></div>
<label><?php _e('Name', EG_TEXTDOMAIN); ?></label><input class="esg-meta-name-input" type="text" name="esg-meta-name[]" value="{{ data.name }}">
<div class="div13"></div>
<label><?php _e('Type', EG_TEXTDOMAIN); ?></label><select class="esg-meta-type-select" name="esg-meta-type[]">
<option value="text" <# if ("text" == data.type) { #>selected="selected"<# } #>><?php _e('Text', EG_TEXTDOMAIN); ?></option>
<option value="multi-select" <# if ("multi-select" == data.type) { #>selected="selected"<# } #>><?php _e('Multi Select', EG_TEXTDOMAIN); ?></option>
<option value="select" <# if ("select" == data.type) { #>selected="selected"<# } #>><?php _e('Select', EG_TEXTDOMAIN); ?></option>
<option value="image" <# if ("image" == data.type) { #>selected="selected"<# } #>><?php _e('Image', EG_TEXTDOMAIN); ?></option>
</select>
<div class="div13"></div>
<label><?php _e('Sort Type', EG_TEXTDOMAIN); ?></label><select class="esg-meta-sort-type-select" name="esg-meta-sort-type[]">
<option value="alphabetic" <# if ("alphabetic" == data['sort-type']) { #>selected="selected"<# } #>><?php _e('Alphabetic', EG_TEXTDOMAIN); ?></option>
<option value="numeric" <# if ("numeric" == data['sort-type']) { #>selected="selected"<# } #>><?php _e('Numeric', EG_TEXTDOMAIN); ?></option>
</select>
<div class="div13"></div>
<label><?php _e('Default', EG_TEXTDOMAIN); ?></label><input class="esg-meta-default-input" type="text" name="esg-meta-default[]" value="{{ data.default }}">
<div class="div13"></div>
<div class="eg-custommeta-textarea-wrap" style="display:none"><label><?php _e('List', EG_TEXTDOMAIN); ?></label><textarea class="eg-custommeta-textarea" name="esg-meta-select[]">{{ data['select'] }}</textarea></div>
<div class="div13"></div>
<div class="esg-btn esg-red eg-meta-delete" ><i class="eg-icon-trash"></i><?php _e('Remove', EG_TEXTDOMAIN); ?></div>
</div>
</div>
</div>
</script>
<script type="text/html" id="tmpl-esg-link-meta-wrap">
<div class="custom-tbc-container"> <!-- SETTINGS - GLOBAL SEARCH RULE -->
<div class="eg-cs-tbc-left"><esg-llabel><span><?php echo _e('Custom Meta', EG_TEXTDOMAIN); ?></span></esg-llabel></div>
<div class="eg-cs-tbc">
<div class="esg-meta-rule">
<label><?php _e('Handle', EG_TEXTDOMAIN); ?></label><input type="text" class="esg-link-meta-handle-input" name="esg-link-meta-handle[]" value="{{ data.handle }}" />
<div class="div13"></div>
<label><?php _e('Name', EG_TEXTDOMAIN); ?></label><input type="text" class="esg-link-meta-name-input" name="esg-link-meta-name[]" value="{{ data.name }}">
<div class="div13"></div>
<label><?php _e('Original Handle', EG_TEXTDOMAIN); ?></label><input class="esg-link-meta-original-input" type="text" name="esg-link-meta-original[]" value="{{ data.original }}">
<div class="div13"></div>
<label><?php _e('Sort Type', EG_TEXTDOMAIN); ?></label><select class="esg-link-meta-sort-type-select" name="esg-link-meta-sort-type[]">
<option value="alphabetic" <# if ("alphabetic" == data['sort-type']) { #>selected="selected"<# } #>><?php _e('Alphabetic', EG_TEXTDOMAIN); ?></option>
<option value="numeric" <# if ("numeric" == data['sort-type']) { #>selected="selected"<# } #>><?php _e('Numeric', EG_TEXTDOMAIN); ?></option>
</select>
<div class="div13"></div>
<div class="esg-btn esg-red eg-link-meta-delete" ><i class="eg-icon-trash"></i><?php _e('Remove', EG_TEXTDOMAIN); ?></div>
</div>
</div>
</div>
</script>
<script type="text/html" id="tmpl-esg-global-settings-wrap">
<div class="custom-tbc-container"> <!-- SETTINGS - GLOBAL SEARCH RULE -->
<div class="eg-cs-tbc-left"><esg-llabel><span><?php echo _e('Search Rule', EG_TEXTDOMAIN); ?></span></esg-llabel></div>
<div class="eg-cs-tbc" >
<div class="esg-search-rule">
<label for="search-class"><?php _e('Set by Class/ID', EG_TEXTDOMAIN); ?></label><!--
--><input type="text" name="search-class[]" class="eg-tooltip-wrap" title="<?php _e('Add CSS ID or Class here to trigger search as an onclick event on given elements (can be combined like \'.search, .search2, #search\')', EG_TEXTDOMAIN); ?>" value="{{ data['search-class'] }}" />
<div class="div13"></div>
<label for="search-grid-id"><?php _e('Choose Grid To Use', EG_TEXTDOMAIN); ?></label><!--
--><select name="search-grid-id[]">
<?php
if(!empty($grids)){
foreach($grids as $id => $name){
echo '<option value="'.$id.'" <# if ( \''.$id.'\' == data[\'search-grid-id\'] ) { #>selected="selected"<# } #>>'.$name.'</option>'."\n";
}
}
?>
</select>
<div class="div13"></div>
<label for="search-style"><?php _e('Overlay Skin', EG_TEXTDOMAIN); ?></label><!--
--><select name="search-style[]">
<?php
foreach($my_skins as $handle => $name){
echo '<option value="'.$handle.'" <# if ( \''.$handle.'\' == data[\'search-style\'] ) { #>selected="selected"<# } #>>'.$name.'</option>'."\n";
}
?>
</select>
<div class="div13"></div>
<?php add_action('essgrid_add_search_global_settings', (object)$settings); ?>
<div class="div13"></div>
<div class="esg-btn esg-red eg-btn-remove-setting"><i class="eg-icon-trash"></i><?php _e('Remove', EG_TEXTDOMAIN); ?></div>
</div>
</div>
</div>
</script>
<script type="text/html" id="tmpl-esg-shortcode-settings-wrap">
<div class="custom-tbc-container"> <!-- SETTINGS - GLOBAL SEARCH RULE -->
<div class="eg-cs-tbc-left"><esg-llabel><span><?php echo _e('Search Rule', EG_TEXTDOMAIN); ?></span></esg-llabel></div>
<div class="eg-cs-tbc" >
<div class="esg-search-rule">
<label for="sc-handle"><?php _e('Handle', EG_TEXTDOMAIN); ?></label><input type="text" value="{{ data['sc-handle'] }}" name="sc-handle[]" />
<div class="div13"></div>
<label for="sc-grid-id"><?php _e('Choose Grid To Use', EG_TEXTDOMAIN); ?></label><select name="sc-grid-id[]">
<?php
if(!empty($grids)){
foreach($grids as $id => $name){
echo '<option value="'.$id.'" <# if ( \''.$id.'\' == data[\'sc-grid-id\'] ) { #>selected="selected"<# } #>>'.$name.'</option>'."\n";
}
}
?>
</select>
<div class="div13"></div>
<label for="sc-style"><?php _e('Overlay Skin', EG_TEXTDOMAIN); ?></label><select name="sc-style[]">
<?php
foreach($my_skins as $handle => $name){
echo '<option value="'.$handle.'" <# if ( \''.$handle.'\' == data[\'sc-style\'] ) { #>selected="selected"<# } #>>'.$name.'</option>'."\n";
}
?>
</select>
<div class="div13"></div>
<label for="sc-html"><?php _e('HTML Markup', EG_TEXTDOMAIN); ?></label><textarea style="width: 400px;" name="sc-html[]">{{ data['sc-html'] }}</textarea>
<div class="div13"></div>
<label for="sc-shortcode"><?php _e('Generated ShortCode', EG_TEXTDOMAIN); ?></label><input type="text" value="" name="sc-shortcode[]" readonly="readonly" style="width: 400px;" />
<?php add_action('essgrid_add_search_shortcode_settings', (object)$settings); ?>
<div class="div13"></div>
<div class="esg-btn esg-red eg-btn-remove-setting"><i class="eg-icon-trash"></i><?php _e('Remove', EG_TEXTDOMAIN); ?></div>
</div>
</div>
</div>
</script>
<script type="text/javascript">
try{
jQuery('.mce-notification-error').remove();
jQuery('#wpbody-content >.notice').remove();
} catch(e) {
}
jQuery('document').ready(function() {
punchgs.TweenLite.fromTo(jQuery('.save-wrap-settings'),1,{autoAlpha:0,x:50},{autoAlpha:1,x:0,ease:punchgs.Power3.easeInOut,delay:2});
jQuery.each(jQuery('.sws-toolbar-button'),function(ind,elem) {
punchgs.TweenLite.fromTo(elem,0.7,{x:50},{x:0,ease:punchgs.Power3.easeInOut,delay:2.2+(ind*0.15)});
})
jQuery('.sws-toolbar-button').hover(function() {
punchgs.TweenLite.to(jQuery(this),0.3,{x:-110,ease:punchgs.Power3.easeInOut});
},
function() {
punchgs.TweenLite.to(jQuery(this),0.3,{x:0,ease:punchgs.Power3.easeInOut});
});
jQuery(document).on('click','#eg-global-settings-menu li',function() {
jQuery('#eg-global-settings-menu .selected-esg-setting').removeClass('selected-esg-setting');
this.classList.add('selected-esg-setting');
var aes = jQuery('.active-esc'),
newaes=jQuery('#'+this.dataset.toshow);
punchgs.TweenLite.to(aes,0.1,{autoAlpha:0});
aes.removeClass("active-esc");
punchgs.TweenLite.fromTo(newaes,0.3,{autoAlpha:0},{autoAlpha:1,overwrite:"all"});
newaes.addClass("active-esc");
})
});
window.ESG = window.ESG===undefined ? {} : window.ESG;
ESG.F = ESG.F === undefined ? {} : ESG.F;
ESG.ENV = ESG.ENV === undefined ? {} : ESG.ENV;
ESG.V = ESG.V === undefined ? {} : ESG.V;
ESG.S = ESG.S === undefined ? {} : ESG.S;
ESG.C = ESG.C === undefined ? {} : ESG.C;
ESG.LIB = ESG.LIB===undefined ? { nav_skins:[], item_skins:{}, nav_originals:{}} : ESG.LIB;
ESG.CM = ESG.CM===undefined ? {apiJS:null, ajaxCSS:null, navCSS:null} : ESG.CM;
ESG.WIN = ESG.WIN === undefined ? jQuery(window) : ESG.WIN;
ESG.DOC = ESG.DOC === undefined ? jQuery(document) : ESG.DOC;
ESG.ENV.SearchSettings = <?php echo json_encode($settings); ?>;
ESG.ENV.CustomMetas = <?php echo json_encode($custom_metas); ?>;
ESG.ENV.LinkMetas = <?php echo json_encode($link_metas); ?>;
jQuery(function(){AdminEssentials.initSearchSettings();});
jQuery(function(){AdminEssentials.initCustomMeta();});
jQuery(function(){AdminEssentials.initGoogleFonts();});
AdminEssentials.initGlobalSettings();
</script>