File: /home/kashmira/public_html/wp-content/plugins/td-composer/includes/templates/frontend.tpl.php
<?php
/**
* Created by PhpStorm.
* User: tagdiv
* Date: 11.02.2016
* Time: 13:04
*/
/*
* frontend.tpl.php can't be used without 'tdc' class
*/
global $title, $post;
$post = tdc_state::get_post();
$title = $post->post_title;
// check if we have a post set in the state.
if (empty($post)) {
echo "Invalid post ID, or permission denied";
die;
}
add_thickbox();
wp_enqueue_media( array( 'post' => $post->ID ) );
require_once( ABSPATH . 'wp-admin/admin-header.php' );
//$postContent = str_replace( '\'', '\\\'', $post->post_content );
$postContent = $post->post_content;
/*
* Important!
* 'vc_column_text' and 'td_block_with_title' are not self enclosed shortcodes, having their contents inside of them.
* So, because this content has \r,\n or \r\n characters inside, it can't be used as it is for window.tdcPostSettings.postContent. It needs to be formatted as wordpress does,
* changing these characters to paragraphs.
*/
if ( ! function_exists( 'td_replace_vc_column_text' ) ) {
function td_replace_vc_column_text( $matches ) {
return '[vc_column_text' . $matches[ 1 ] . ']' . base64_encode( $matches[ 2 ] ) . '[/vc_column_text]';
}
}
if ( shortcode_exists( 'vc_column_text' ) && has_shortcode( $postContent, 'vc_column_text' ) ) {
// Double regex instead of one regex (preg_match and preg_replace_callback) - with one regex we need to parse content for replacing text, to supply what does the second regex
// This first regex check is to allow second regex replacement to apply only when 'vc_column_text' has content
preg_match("/\[vc_column_text(.*)\](.*)\[\/vc_column_text\]/sU", $postContent, $matches);
if ( is_array( $matches ) && count( $matches ) ) {
$postContent = preg_replace_callback( "/\[vc_column_text(.*)\](.*)\[\/vc_column_text\]/sU", 'td_replace_vc_column_text', $postContent );
}
}
if ( ! function_exists( 'td_replace_td_block_text_with_title' ) ) {
function td_replace_td_block_text_with_title( $matches ) {
return '[td_block_text_with_title' . $matches[ 1 ] . ']' . base64_encode( $matches[ 2 ] ) . '[/td_block_text_with_title]';
}
}
if ( shortcode_exists( 'td_block_text_with_title' ) && has_shortcode( $postContent, 'td_block_text_with_title' ) ) {
// Double regex instead of one regex (preg_match and preg_replace_callback) - with one regex we need to parse content for replacing text, to supply what does the second regex
// This first regex check is to allow second regex replacement to apply only when 'td_block_text_with_title' has content
preg_match("/\[td_block_text_with_title(.*)\](.*)\[\/td_block_text_with_title\]/sU", $postContent, $matches);
if ( is_array( $matches ) && count( $matches ) ) {
$postContent = preg_replace_callback("/\[td_block_text_with_title(.*)\](.*)\[\/td_block_text_with_title\]/sU", 'td_replace_td_block_text_with_title', $postContent);
}
}
$postContent = str_replace( array( "\r\n", "\n", "\r" ), array( "\r\n'+'" ), $postContent );
//@todo - refactorizare aici json_encode
//<link rel="stylesheet" href="http://basehold.it/22">
// Add shortcodes name to be displayed into sidebar panel
$tdbTemplateType = tdc_util::get_get_val('tdbTemplateType');
$shortcodes = array();
$tdc_mapped_shortcodes = tdc_mapper::get_mapped_shortcodes();
foreach ( $tdc_mapped_shortcodes as &$mapped_shortcode ) {
if ( in_array( $tdbTemplateType, ['cpt', 'cpt_tax'] ) && isset( $mapped_shortcode['tdc_category'] ) ) {
switch ( $mapped_shortcode[ 'tdc_category' ] ) {
case 'Single post':
if ( !in_array( $mapped_shortcode['base'], ['tdb_single_categories' , 'tdb_single_tags'] ) ) {
$mapped_shortcode['name'] = str_replace( 'Single Post', 'CPT', $mapped_shortcode['name'] );
}
break;
case 'Category page':
$mapped_shortcode['name'] = str_replace( 'Category', 'Taxonomy', $mapped_shortcode['name'] );
$mapped_shortcode['name'] = str_replace( 'Subcategories', 'Subtaxonomies', $mapped_shortcode['name'] );
break;
}
}
$shortcodes[ $mapped_shortcode[ 'base' ] ] = $mapped_shortcode[ 'name' ];
}
//var_dump(wp_get_sidebars_widgets());
function get_data_shortcode_settings( $mapped_shortcode) {
$data_shortcode_settings = '';
if ( isset( $mapped_shortcode['tdc_start_values'] ) ) {
$data_shortcode_settings .= 'data-start-values="' . $mapped_shortcode['tdc_start_values'] . '" ';
}
if ( isset( $mapped_shortcode['tdc_row_start_values'] ) ) {
$data_shortcode_settings .= ' data-row-start-values="' . $mapped_shortcode['tdc_row_start_values'] . '" ';
}
return $data_shortcode_settings;
}
/**
* Get the url in format //domain.com/.. without 'http' and 'https', because url of iframe does not redirect from http to https
*
* @param $post_id
*
* @return mixed
*/
function get_post_url( $post_id ) {
return str_replace( array( 'http:', 'https:' ), '', get_permalink( $post_id ) );
}
$tdc_mobile_header_id = '';
$tdc_header_template_content = '';
$is_mobile = false;
$is_mobile_template = get_post_meta( $post->ID, 'tdc_is_mobile_template', true);
if ( ! empty($is_mobile_template) && '1' === $is_mobile_template ) {
$is_mobile = true;
}
if ( 'header' === $tdbTemplateType && 'publish' === get_post_status( $post ) ) {
$tdc_header_template_id = $post->ID;
$tdc_header_template_content = get_post_field('post_content', $tdc_header_template_id );
} else {
$tdc_header_template_id = get_post_meta( $post->ID, 'tdc_header_template_id', true );
if ( empty( $tdc_header_template_id ) ) {
// Use the global header template if it's set
$tdc_header_template_id = '';
$global_header_template_id = td_api_header_style::get_header_template_id( $is_mobile );
if ( ! empty( $global_header_template_id ) && td_global::is_tdb_template( $global_header_template_id, true ) ) {
$global_header_template_id = td_global::tdb_get_template_id( $global_header_template_id );
$tdc_mobile_header_id = get_post_meta( $global_header_template_id, 'header_mobile_menu_id', true );
}
} else if ( 'no_header' !== $tdc_header_template_id ) {
$post_status = get_post_status( $tdc_header_template_id );
if ( 'publish' === $post_status ) {
$tdc_header_template_content = get_post_field( 'post_content', $tdc_header_template_id );
$tdc_mobile_header_id = get_post_meta( $tdc_header_template_id, 'header_mobile_menu_id', true );
} else {
// Use the global header template if it's set
$tdc_header_template_id = '';
$global_header_template_id = td_api_header_style::get_header_template_id( $is_mobile );
if ( ! empty( $global_header_template_id ) && td_global::is_tdb_template( $global_header_template_id, true ) ) {
$global_header_template_id = td_global::tdb_get_template_id( $global_header_template_id );
$tdc_mobile_header_id = get_post_meta( $global_header_template_id, 'header_mobile_menu_id', true );
}
}
}
}
if ( 'footer' === $tdbTemplateType && 'publish' === get_post_status( $post ) ) {
$tdc_footer_template_id = $post->ID;
$tdc_footer_template_content = '';//$post->post_content;
$tdc_footer_template_content = get_post_field('post_content', $tdc_footer_template_id );
} else {
$tdc_footer_template_id = get_post_meta( $post->ID, 'tdc_footer_template_id', true );
$tdc_footer_template_content = '';
if ( empty( $tdc_footer_template_id ) ) {
$tdc_footer_template_id = '';
} else if ( 'no_footer' !== $tdc_footer_template_id ) {
$post_status = get_post_status( $tdc_footer_template_id );
if ( 'publish' === $post_status ) {
$tdc_footer_template_content = get_post_field('post_content', $tdc_footer_template_id );
} else {
// Use the global footer template if it's set
$tdc_footer_template_id = '';
}
}
}
$tdb_template_settings_meta = array();
$tdb_template_settings_meta = get_post_meta( $post->ID, 'tdb_template_settings', true );
if( empty( $tdb_template_settings_meta ) ) {
$tdb_template_settings_meta = array();
}
$tdb_p_infinite_load_status = td_util::get_option('tdb_p_autoload_status');
$tdb_p_infinite_type = td_util::get_option('tdb_p_autoload_type');
$tdb_p_infinite_count = td_util::get_option('tdb_p_autoload_count');
?>
<script type="text/javascript">
// Add 'td_composer' class to html element
window.document.documentElement.className += ' td_composer';
// "Starting in Chrome 51, a custom string will no longer be shown to the user. Chrome will still show a dialog to prevent users from losing data, but it’s contents will be set by the browser instead of the web page."
// https://developers.google.com/web/updates/2016/04/chrome-51-deprecations?hl=en#remove-custom-messages-in-onbeforeload-dialogs
window.onbeforeunload = function ( event) {
if ( ! tdcMain.getContentModified() ) {
return;
}
return 'Dialog text here';
};
window.tdcPostSettings = {
postId: '<?php echo $post->ID; ?>',
postUrl: '<?php echo get_post_url($post->ID); ?>',
postContent: '<?php echo base64_encode( $postContent ) ?>',
postMetaDirtyContent: '<?php echo get_post_meta( $post->ID, 'tdc_dirty_content', true ) ?>',
postMetaVcJsStatus: '<?php echo get_post_meta( $post->ID, '_wpb_vc_js_status', true ) ?>',
shortcodes: <?php echo json_encode( $shortcodes ) ?>,
tdbLoadDataFromId: <?php echo json_encode(tdc_util::get_get_val('tdbLoadDataFromId')) ?>,
tdbTemplateType: <?php echo json_encode( $tdbTemplateType ) ?>,
headerTemplateId: '<?php echo $tdc_header_template_id ?>',
headerTemplateContent: '<?php echo $tdc_header_template_content ?>',
footerTemplateId: '<?php echo $tdc_footer_template_id ?>',
footerTemplateContent: '<?php echo base64_encode( $tdc_footer_template_content ) ?>',
mobileMenuId: '<?php echo $tdc_mobile_header_id ?>',
tdbPInfiniteLoadStatus: '<?php echo $tdb_p_infinite_load_status ?>',
tdbPInfiniteType: '<?php echo $tdb_p_infinite_type ?>',
tdbPInfiniteCount: '<?php echo $tdb_p_infinite_count ?>',
isMobileTemplate: '<?php echo $is_mobile ? '1' : '0' ?>',
tdbTemplateSettings: <?php echo json_encode( $tdb_template_settings_meta ) ?>,
};
// Set the local storage to show inline the iframe wrapper and the sidebar
window.localStorage.setItem( 'tdc_live_iframe_wrapper_inline', 1 );
</script>
<?php
// tdc-icon-sidebar-open is outside of the sidebar, because the sidebar has overflow hidden
?>
<!-- the composer sidebar -->
<div id="tdc-property-info">
<div class="tdc-property-info-arrow"></div>
<div class="tdc-property-info-inner"></div>
</div>
<div class="tdc-sidebar-open" title="Show sidebar">
<span class="tdc-icon-sidebar-open"></span>
</div>
<div id="tdc-sidebar" class="tdc-sidebar-inline">
<div class="tdc-top-buttons">
<div class="tdc-add-element" title="Add a new element in the viewport">
<span class="tdc-sidebar-icon tdc-icon-add"></span>
<span class="tdc-header-label tdc-text-add">Add</span>
</div>
<?php
// load the preview for the current content if we're editing a template with content
$tdbLoadDataFromId = tdc_util::get_get_val('tdbLoadDataFromId');
$tdbTemplateType = tdc_util::get_get_val('tdbTemplateType');
$preview_url = '';
if ( $tdbLoadDataFromId !== false ) {
switch ( $tdbTemplateType ) {
case 'single':
case 'woo_product':
case 'woo_shop_base':
case 'cpt':
$preview_url = get_permalink( $tdbLoadDataFromId );
break;
case 'woo_archive':
$term = get_term( intval( $tdbLoadDataFromId ) );
$preview_url = get_term_link( $term->term_id, $term->taxonomy );
break;
case 'category':
case 'cpt_tax':
$preview_url = get_category_link( $tdbLoadDataFromId );
break;
case 'author':
$preview_url = get_author_posts_url( $tdbLoadDataFromId );
break;
case 'search':
$preview_url = get_search_link( $tdbLoadDataFromId );
break;
case 'woo_search_archive':
$preview_url = add_query_arg( 'post_type', 'product', get_search_link( $tdbLoadDataFromId ) );
break;
case 'date':
$preview_url = get_year_link( $tdbLoadDataFromId );
break;
case 'tag':
$preview_url = get_tag_link( $tdbLoadDataFromId );
break;
case 'attachment':
$preview_url = get_attachment_link( $tdbLoadDataFromId );
break;
case 'module':
$preview_url = get_permalink($post->ID);
break;
}
} else {
$preview_url = get_permalink($post->ID);
}
?>
<?php if (TD_THEME_NAME !== 'Newsmag' && defined( 'TD_CLOUD_LIBRARY' ) ) { ?>
<a class="tdc-sidebar-w-button tdb-load-template tdc-header-link tdc-load-cloud" href="#" title="Add an element from the cloud library">
<span class="tdc-sidebar-icon tdc-icon-cloud"></span>
<span class="tdc-header-label tdc-text-cloud">Cloud</span>
</a>
<a class="tdc-sidebar-w-button tdc-zone-button tdc-header-link tdc-header-manager" href="#" title="Open the zone manager">
<span class="tdc-sidebar-icon tdc-icon-header"></span>
<span class="tdc-header-label tdc-text-header">Manager</span>
</a>
<?php } ?>
<a class="tdc-header-link tdc-close-page" href="#" title="Close the composer and switch to backend">
<span class="tdc-sidebar-icon tdc-icon-close"></span>
<span class="tdc-header-label tdc-text-close">Close</span>
</a>
<?php
$enableSaveDropdown = false;
$save_btn_class = 'tdc-save-all';
if( 'Newspaper' === TD_THEME_NAME && defined( 'TD_CLOUD_LIBRARY' ) ) {
if( tdb_state_template::get_template_type() == 'header' ) {
$save_btn_class = 'tdc-save-header';
} else if( tdb_state_template::get_template_type() == 'footer' ) {
$save_btn_class = 'tdc-save-footer';
} else if( tdb_state_template::get_template_type() == 'module' ) {
$save_btn_class = 'tdc-save-content';
} else {
$enableSaveDropdown = true;
}
}
?>
<a class="tdc-header-link tdc-save-page <?php echo ( $enableSaveDropdown ? 'tdc-header-link-dropdown ' : '' ) . $save_btn_class; ?>" href="#" title="Save the page content CTRL + S">
<span class="tdc-sidebar-icon tdc-icon-save"></span>
<span class="tdc-header-label tdc-text-save">Save</span>
<?php if( 'Newspaper' === TD_THEME_NAME && defined( 'TD_CLOUD_LIBRARY' ) && $enableSaveDropdown ) { ?>
<span class="tdc-header-link-sub-menu" title="">
<span class="tdc-header-link-sub-menu-item tdc-save-all">Save all</span>
<span class="tdc-header-link-sub-menu-sep"></span>
<span class="tdc-header-link-sub-menu-item tdc-save-header">Save header</span>
<span class="tdc-header-link-sub-menu-item tdc-save-footer">Save footer</span>
<span class="tdc-header-link-sub-menu-item tdc-save-content">Save content</span>
</span>
<?php } ?>
</a>
<a class="tdc-header-link tdc-view-page" href="<?php echo $preview_url ?>" target="_blank" title="View the page. Save the content before it">
<span class="tdc-sidebar-icon tdc-icon-view"></span>
<span class="tdc-header-label tdc-text-view">View</span>
</a>
</div>
<div class="tdc-empty-sidebar">
<div class="tdc-start-tips tdc-intro">
<img src="<?php echo td_util::get_wl_val('tds_wl_logo', TDC_URL . '/assets/images/sidebar/tagdiv-composer.png')?>">
<span>Welcome to <br><?php echo td_util::get_wl_val('tds_wl_brand', 'TagDiv')?> Composer!</span>
<p>Get started by adding elements, go to <span>Add</span> and begin dragging your items. You can edit by clicking on any element in the preview area.</p>
</div>
<div class="tdc-sidebar-w-button tdc-add-element" title="Add new element in the viewport">Add Element</div>
<style>
.tdc-empty-sidebar .tdc-intro {
margin-bottom: 0;
}
.tdc-empty-sidebar .tdc-start-tips p {
font-size:11px;
line-height: 18px;
margin: 10px 0;
}
.tdc-empty-sidebar .tdc-start-tips img {
width: 50px;
margin: 30px auto 10px;
}
.tdc-empty-sidebar .tdc-start-tips span {
font-size:17px;
line-height: 23px;
}
.tdc-empty-sidebar .tdc-sidebar-w-button.tdc-add-element {
margin-top: 15px;
}
.tdc-start-tips:not(.tdc-intro) p {
display: none;
}
.tdc-empty-sidebar .tdb-load-template {
margin-top: 15px;
}
.tdb-template-meta {
position: absolute;
top: -3px;
box-sizing: border-box;
margin-left: 12px;
color: #fff;
font-size: 10px;
}
.tdb-template-meta span {
opacity: 0.7;
}
.tdb-template-meta-arrow {
margin: 0 2px 0 -3px;
}
</style>
<?php
// array list of templates that use the 'Page Settings' button
$supported_template_types = array( 'page', 'single' );
if ( !in_array($tdbTemplateType, $supported_template_types ) ) {
?>
<style>
.tdc-main-menu {
display: none;
}
</style>
<?php
}
$current_post_type = get_post_type( $post );
if ( false !== $tdbTemplateType ) {
$current_post_type = $tdbTemplateType;
}
$post_title = get_the_title( $post );
if ( empty( $post_title ) ) {
$post_title = '"Empty title"';
}
?>
<div class="tdb-template-meta">
<span class="tdb-template-meta-cat"><?php echo $current_post_type ?></span>
<span class="tdb-template-meta-arrow tdc-breadcrumb-arrow"></span>
<span id="tdb-template-name"><?php echo $post_title; ?></span>
<a href="#" title="Edit page/template name" id="tdb-template-name-edit">Edit Title</a>
<?php
if ( 'Newspaper' === TD_THEME_NAME && td_global::is_tdb_registered() ) {
$data_mobile_template_id = '';
$data_mobile_template_url = '';
$is_mobile_template = get_post_meta( $post->ID, 'tdc_is_mobile_template', true );
$post_type_name = ( 'page' === $current_post_type ? 'Page' : 'Template' );
if ( empty( $is_mobile_template ) && !in_array( $current_post_type, array( 'module', 'header' ) ) ) {
$tdc_mobile_template_id = get_post_meta( $post->ID, 'tdc_mobile_template_id', true );
$mobile_button = 'Create Mobile ' . $post_type_name;
if ( ! empty( $tdc_mobile_template_id ) && get_post( $tdc_mobile_template_id ) instanceof WP_Post && 'publish' === get_post_status( $tdc_mobile_template_id ) ) {
$data_mobile_template_id = ' data-mobile-template-id="' . $tdc_mobile_template_id . '" ';
$data_mobile_template_url = ' data-mobile-template-url="' . admin_url( 'post.php?post_id=' . $tdc_mobile_template_id . '&td_action=tdc&tdbTemplateType=' . $current_post_type ) . '" ';
$mobile_button = 'Edit Mobile ' . $post_type_name;
}
?>
<a href="#" title="<?php echo $mobile_button ?>"
id="tdb-template-mobile" <?php echo $data_mobile_template_id . $data_mobile_template_url ?>><?php echo $mobile_button ?></a>
<?php
}
}
?>
</div>
<?php do_action('tdc_welcome_panel_text')?>
<?php if ( TD_THEME_NAME === 'Newsmag' && td_util::get_option('td_banners_status') !== 'off' ) { ?>
<a class="td-services-link" href="https://tagdiv.com/submit-a-request/?utm_source=tdc&utm_medium=banner&utm_campaign=custom_work&utm_content=start_screen" title="Get free quote" target="_blank">
<img style="margin-top:20px; border-radius: 3px;" class="td-services-img" alt="" src="https://cloud.tagdiv.com/services-img/banner-composer.png">
</a>
<?php } ?>
</div>
<!-- the inspector -->
<div class="tdc-inspector-wrap">
<div class="tdc-inspector">
<!-- breadcrumbs browser -->
<div class="tdc-breadcrumbs">
<div id="tdc-breadcrumb-zone">
<a class="tdc-breadcrumb-item" href="#" title="The parent zone">zone</a>
</div>
<div id="tdc-breadcrumb-row">
<a class="tdc-breadcrumb-item" href="#" title="The parent row">row</a>
</div>
<div id="tdc-breadcrumb-column">
<span class="tdc-breadcrumb-arrow"></span>
<a class="tdc-breadcrumb-item" href="#" title="The parent column">column</a>
</div>
<div id="tdc-breadcrumb-inner-row">
<span class="tdc-breadcrumb-arrow"></span>
<a class="tdc-breadcrumb-item" href="#" title="The parent inner row">inner-row</a>
</div>
<div id="tdc-breadcrumb-inner-column">
<span class="tdc-breadcrumb-arrow"></span>
<a class="tdc-breadcrumb-item" href="#" title="The parent inner column">inner-column</a>
</div>
</div>
<div class="tdc-current-element-head" title="This is the type (shortcode) of the current selected element">
</div>
<div class="tdc-param-switch-wrap">
<?php if (TD_DEPLOY_MODE == 'dev') { ?>
<div class="tdc-param-switch tdc-param-name-switch" title="Show param names next to block attributes."><div class="tdc-param-switch-ball"></div></div>
<?php } ?>
<div class="tdc-param-switch tdc-param-info-switch <?php if( !get_option('td_param_info_show') || get_option('td_param_info_show') == 'enabled' ) { echo 'tdc-param-switch-active'; } ?>" title="Show Parameters Video Tooltips"><div class="tdc-param-switch-ball"></div></div>
</div>
<div class="tdc-current-element-siblings">
</div>
<div class="tdc-tabs-wrapper">
</div>
</div>
</div>
<div class="tdc-sidebar-bottom">
<div class="tdc-sidebar-bottom-button tdc-sidebar-close" title="Hide sidebar">
<span class="tdc-icon-sidebar-close"></span>
</div>
<div class="tdc-sidebar-bottom-button tdc-bullet" title="On/Off full viewport">
<span class="tdc-icon-bullet"></span>
</div>
<div class="tdc-sidebar-info"></div>
<div class="tdc-extends">
<div class="tdc-sidebar-bottom-button tdc-restore-undo" title="Restore content">
<span class="tdc-icon-restore-undo" title="Undo CTRL + Z"></span>
</div>
<div class="tdc-sidebar-bottom-button tdc-restore-redo" title="Restore content">
<span class="tdc-icon-restore-redo" title="Redo CTRL + SHIFT + Z"></span>
</div>
<?php
// Extensions add button in sidebar (to open content)
do_action( 'tdc_extension_sidebar_bottom' );
?>
</div>
</div>
<div id="tdc-restore">
Restore
</div>
<div id="tdc-restore-content">
<?php
ob_start();
?>
<script>
(function() {
window.addEventListener('load', function() {
jQuery.when(tdcStore.get(tdcRecycle.snapshotPath + '-' + <?php echo $post->ID ?> )).done(function (request) {
if ('undefined' !== typeof request.readyState && 'done' === request.readyState && 'undefined' !== typeof request.result) {
var tdc_history = request.result.content;
if ('undefined' !== typeof tdc_history) {
tdc_history = JSON.parse(tdc_history);
if (Array.isArray(tdc_history)) {
var buffer = '';
tdc_history.sort(function (a, b) {
return b['timestamp'] - a['timestamp'];
});
tdc_history.forEach(function (restore_point) {
buffer += '<div class="tdc-snapshot">';
buffer += '<div style="width:150px;float:left" data-timestamp="' + restore_point['timestamp'] + '">' + restore_point['timestamp'] + '</div>';
buffer += '<div style="width:350px;float:left">Before Restore point</div>';
buffer += '<div class="tdc-snapshot-shortcode" style="display:none">' + restore_point['shortcode'] + '</div>';
buffer += '<div class="tdc-snapshot-header" style="display:none">' + restore_point['headerTemplateData'] + '</div>';
buffer += '</div>';
});
jQuery('#tdc-restore-content').html(buffer);
tdcRecycle.init();
}
} else {
tdcRecycle.init();
}
} else {
tdcRecycle.init();
}
});
});
})();
</script>
<?php
echo ob_get_clean();
?>
</div>
<!-- modal window -->
<div class="tdc-sidebar-modal tdc-sidebar-modal-elements" data-button_class="tdc-add-element">
<div class="tdc-sidebar-modal-search" title="Search for elements in list">
<input type="text" placeholder="Search" name="Search" autocomplete="off">
<span class="tdc-modal-magnifier"></span>
</div>
<div class="tdc-sidebar-modal-content">
<!-- sidebar elements list -->
<div class="tdc-sidebar-elements">
<?php
$top_mapped_shortcodes = array();
$block_mapped_shortcodes = array();
$big_grids_mapped_shortcodes = array();
$header_mapped_shortcodes = array();
$extended_mapped_shortcodes = array();
$custom_forms_mapped_shortcodes = array();
$external_mapped_shortcodes = array();
$multipurpose_mapped_shortcodes = array();
$single_post_mapped_shortcodes = array();
$category_page_mapped_shortcodes = array();
$tag_page_mapped_shortcodes = array();
$author_page_mapped_shortcodes = array();
$archive_page_mapped_shortcodes = array();
$search_page_mapped_shortcodes = array();
$attachment_page_mapped_shortcodes = array();
$common_page_el_mapped_shortcodes = array();
$template_shortcodes = array(
// 'template_1' => array(
// 'name' => 'Template 1',
// 'content' => base64_encode(json_encode('[vc_row full_width="stretch_row"][vc_column width="1/4"][vc_row_inner][vc_column_inner width="1/2"][td_block_2][/vc_column_inner][vc_column_inner width="1/2"][td_block_1][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width="1/4"][/vc_column][vc_column width="1/4"][/vc_column][vc_column width="1/4"][/vc_column][/vc_row]')),
// ),
);
$td_woo_single_shortcodes = array();
$td_woo_archive_shortcodes = array();
$td_woo_search_archive_shortcodes = array();
$td_woo_common_shortcodes = array();
$cpt_mapped_shortcodes = [];
$cpt_tax_mapped_shortcodes = [];
$template_shortcodes = apply_filters( 'tdc_template_shortcodes', $template_shortcodes );
$td_woo_single_shortcodes = apply_filters( 'td_woo_single_shortcodes', $td_woo_single_shortcodes );
$td_woo_archive_shortcodes = apply_filters( 'td_woo_archive_shortcodes', $td_woo_archive_shortcodes );
$td_woo_search_archive_shortcodes = apply_filters( 'td_woo_search_archive_shortcodes', $td_woo_search_archive_shortcodes );
$td_woo_common_shortcodes = apply_filters( 'td_woo_common_shortcodes', $td_woo_common_shortcodes );
$modules_shortcodes = array();
foreach ( $tdc_mapped_shortcodes as &$mapped_shortcode ) {
$shortcode_base = $mapped_shortcode['base'];
if ( 'vc_column' === $shortcode_base || 'vc_column_inner' === $shortcode_base ) {
continue;
}
if ( 'vc_row' === $shortcode_base || 'vc_row_inner' === $shortcode_base || 'vc_empty_space' === $shortcode_base ) {
$top_mapped_shortcodes[$shortcode_base] = $mapped_shortcode;
continue;
}
if ( isset( $mapped_shortcode['tdc_category'] ) ) {
switch( $mapped_shortcode['tdc_category'] ) {
case 'Blocks':
$block_mapped_shortcodes[] = $mapped_shortcode;
break;
case 'Big Grids':
$big_grids_mapped_shortcodes[] = $mapped_shortcode;
break;
case 'Header shortcodes':
$header_mapped_shortcodes[] = $mapped_shortcode;
break;
case 'Extended':
$extended_mapped_shortcodes[] = $mapped_shortcode;
break;
case 'Custom forms':
$custom_forms_mapped_shortcodes[] = $mapped_shortcode;
break;
case 'Single post':
if ( $shortcode_base == 'tdb_single_acf_field' && !class_exists( 'ACF' ) ) {
break;
}
if ( !in_array($shortcode_base, ['tdb_single_ctags']) ) {
$single_post_mapped_shortcodes[] = $mapped_shortcode;
}
// this adds share shortcode for woo single product templates
if ( 'tdb_single_post_share' === $shortcode_base && 'woo_product' === $tdbTemplateType ) {
$td_woo_single_shortcodes[] = $mapped_shortcode;
}
if (!in_array($mapped_shortcode['base'], ['tdb_single_categories' , 'tdb_single_tags', 'tdb_single_review_overview', 'tdb_single_review_overall', 'tdb_single_review_summary'])) {
$cpt_mapped_shortcodes[] = $mapped_shortcode;
}
break;
case 'Category page':
$category_page_mapped_shortcodes[] = $mapped_shortcode;
$cpt_tax_mapped_shortcodes[] = $mapped_shortcode;
break;
case 'Tag page':
$tag_page_mapped_shortcodes[] = $mapped_shortcode;
break;
case 'Author page':
$author_page_mapped_shortcodes[] = $mapped_shortcode;
break;
case 'Search page':
$search_page_mapped_shortcodes[] = $mapped_shortcode;
break;
case 'Attachment page':
$attachment_page_mapped_shortcodes[] = $mapped_shortcode;
break;
case 'Common page elements':
$common_page_el_mapped_shortcodes[] = $mapped_shortcode;
break;
case 'WooCommerce Single':
$td_woo_single_shortcodes[] = $mapped_shortcode;
break;
case 'WooCommerce Search Archive':
$td_woo_search_archive_shortcodes[] = $mapped_shortcode;
break;
case 'WooCommerce Archive':
$td_woo_archive_shortcodes[] = $mapped_shortcode;
break;
case 'WooCommerce Common':
$td_woo_common_shortcodes[] = $mapped_shortcode;
break;
case 'Multipurpose':
$multipurpose_mapped_shortcodes[] = $mapped_shortcode;
break;
case 'External':
$external_mapped_shortcodes[] = $mapped_shortcode;
break;
case 'Modules elements':
$modules_shortcodes[] = $mapped_shortcode;
break;
}
}
}
function tdc_sort_name( $mapped_shortcode_1, $mapped_shortcode_2 ) {
return strcmp( $mapped_shortcode_1['name'], $mapped_shortcode_2['name'] );
}
usort( $extended_mapped_shortcodes, 'tdc_sort_name');
usort( $custom_forms_mapped_shortcodes, 'tdc_sort_name');
usort( $external_mapped_shortcodes, 'tdc_sort_name');
usort( $multipurpose_mapped_shortcodes, 'tdc_sort_name');
// Row
$data_shortcode_settings = get_data_shortcode_settings( $top_mapped_shortcodes['vc_row'] );
echo '<div class="tdc-sidebar-element tdc-row-temp" data-shortcode-name="' . $top_mapped_shortcodes['vc_row']['base'] . '" ' . $data_shortcode_settings . '>' .
'<div class="tdc-element-ico tdc-ico-' . $top_mapped_shortcodes['vc_row']['base'] . '"></div>' .
'<div class="tdc-element-id">' . $top_mapped_shortcodes['vc_row']['name'] . '</div>' .
'</div>';
// Inner Row
$data_shortcode_settings = get_data_shortcode_settings( $top_mapped_shortcodes['vc_row_inner'] );
echo '<div class="tdc-sidebar-element tdc-element-inner-row-temp" data-shortcode-name="' . $top_mapped_shortcodes['vc_row_inner']['base'] . '" ' . $data_shortcode_settings . '>' .
'<div class="tdc-element-ico tdc-ico-' . $top_mapped_shortcodes['vc_row_inner']['base'] . '"></div>' .
'<div class="tdc-element-id">' . $top_mapped_shortcodes['vc_row_inner']['name'] . '</div>' .
'</div>';
// Empty space
$data_shortcode_settings = get_data_shortcode_settings( $top_mapped_shortcodes['vc_empty_space'] );
echo '<div class="tdc-sidebar-element tdc-element" data-shortcode-name="' . $top_mapped_shortcodes['vc_empty_space']['base'] . '" ' . $data_shortcode_settings . '>' .
'<div class="tdc-element-ico tdc-ico-' . $top_mapped_shortcodes['vc_empty_space']['base'] . '"></div>' .
'<div class="tdc-element-id">' . $top_mapped_shortcodes['vc_empty_space']['name'] . '</div>' .
'</div>';
if ( 'module' === $tdbTemplateType ) {
if ( !empty( $modules_shortcodes ) ) {
// modules tpl shortcodes separator
echo '<div class="tdc-sidebar-separator">Modules shortcodes</div>';
foreach ( $modules_shortcodes as $mapped_shortcode ) {
if ( isset( $mapped_shortcode['map_in_td_composer'] ) && true === $mapped_shortcode['map_in_td_composer'] ) {
$data_row_start_values = '';
if ( isset( $mapped_shortcode['tdc_in_row'] ) && true === $mapped_shortcode['tdc_in_row'] ) {
$tdc_class = 'tdc-element-with-row tdc-row-temp';
if ( isset( $mapped_shortcode['tdc_row_start_values'] ) ) {
$data_row_start_values = ' data-row-start-values="' . $mapped_shortcode['tdc_row_start_values'] . '" ';
}
} else {
$tdc_class = 'tdc-element';
}
$data_shortcode_settings = get_data_shortcode_settings( $mapped_shortcode );
$buffer =
'<div class="tdc-sidebar-element ' . $tdc_class . '" data-shortcode-name="' . $mapped_shortcode['base'] . '" ' . $data_shortcode_settings . '>' .
'<div class="tdc-element-ico tdc-ico-' . $mapped_shortcode['base'] . '"></div>' .
'<div class="tdc-element-id">' . $mapped_shortcode['name'] . '</div>' .
'</div>';
echo $buffer;
}
}
}
if( !empty( $common_page_el_mapped_shortcodes ) ) {
// common tpl shortcodes separator
echo '<div class="tdc-sidebar-separator">Common Page Elements shortcodes</div>';
// Here will be displayed the common page shortcodes
foreach ( $common_page_el_mapped_shortcodes as $mapped_shortcode ) {
if(
$mapped_shortcode['base'] === 'tdb_single_custom_field' ||
$mapped_shortcode['base'] === 'tdb_gallery'
) {
$data_row_start_values = '';
if ( isset( $mapped_shortcode['tdc_in_row'] ) && true === $mapped_shortcode['tdc_in_row'] ) {
$tdc_class = 'tdc-element-with-row tdc-row-temp';
if ( isset( $mapped_shortcode['tdc_row_start_values'] ) ) {
$data_row_start_values = ' data-row-start-values="' . $mapped_shortcode['tdc_row_start_values'] . '" ';
}
} else {
$tdc_class = 'tdc-element';
}
$data_shortcode_settings = get_data_shortcode_settings( $mapped_shortcode );
$buffer =
'<div class="tdc-sidebar-element ' . $tdc_class . '" data-shortcode-name="' . $mapped_shortcode['base'] . '" ' . $data_shortcode_settings . '>' .
'<div class="tdc-element-ico tdc-ico-' . $mapped_shortcode['base'] . '"></div>' .
'<div class="tdc-element-id">' . $mapped_shortcode['name'] . '</div>' .
'</div>';
echo $buffer;
}
}
}
if ( !empty( $multipurpose_mapped_shortcodes ) ) {
// multipurpose shortcodes separator
echo '<div class="tdc-sidebar-separator">Multipurpose shortcodes</div>';
// Here will be displayed the multipurpose shortcodes
foreach ( $multipurpose_mapped_shortcodes as $mapped_shortcode ) {
if(
$mapped_shortcode['base'] === 'tdm_block_button' ||
$mapped_shortcode['base'] === 'tdm_block_column_title' ||
$mapped_shortcode['base'] === 'tdm_block_icon' ||
$mapped_shortcode['base'] === 'tdm_block_inline_text' ||
$mapped_shortcode['base'] === 'tdm_block_list' ||
$mapped_shortcode['base'] === 'tdm_block_inline_image'
) {
$data_row_start_values = '';
if ( isset( $mapped_shortcode['tdc_in_row'] ) && true === $mapped_shortcode['tdc_in_row'] ) {
$tdc_class = 'tdc-element-with-row tdc-row-temp';
} else {
$tdc_class = 'tdc-element';
}
$data_shortcode_settings = get_data_shortcode_settings( $mapped_shortcode );
$buffer =
'<div class="tdc-sidebar-element ' . $tdc_class . '" data-shortcode-name="' . $mapped_shortcode['base'] . '" ' . $data_shortcode_settings . '>' .
'<div class="tdc-element-ico tdc-ico-' . $mapped_shortcode['base'] . '"></div>' .
'<div class="tdc-element-id">' . $mapped_shortcode['name'] . '</div>' .
'</div>';
echo $buffer;
}
}
}
} else {
if ( !empty( $header_mapped_shortcodes ) ) {
// header tpl shortcodes separator
echo '<div class="tdc-sidebar-separator">Header shortcodes</div>';
foreach ( $header_mapped_shortcodes as $mapped_shortcode ) {
if ( isset( $mapped_shortcode['map_in_td_composer'] ) && true === $mapped_shortcode['map_in_td_composer'] ) {
$data_row_start_values = '';
if ( isset( $mapped_shortcode['tdc_in_row'] ) && true === $mapped_shortcode['tdc_in_row'] ) {
$tdc_class = 'tdc-element-with-row tdc-row-temp';
if ( isset( $mapped_shortcode['tdc_row_start_values'] ) ) {
$data_row_start_values = ' data-row-start-values="' . $mapped_shortcode['tdc_row_start_values'] . '" ';
}
} else {
$tdc_class = 'tdc-element';
}
$data_shortcode_settings = get_data_shortcode_settings( $mapped_shortcode );
$buffer =
'<div class="tdc-sidebar-element ' . $tdc_class . '" data-shortcode-name="' . $mapped_shortcode['base'] . '" ' . $data_shortcode_settings . '>' .
'<div class="tdc-element-ico tdc-ico-' . $mapped_shortcode['base'] . '"></div>' .
'<div class="tdc-element-id">' . $mapped_shortcode['name'] . '</div>' .
'</div>';
echo $buffer;
}
}
}
if ( !empty( $single_post_mapped_shortcodes ) && 'single' === $tdbTemplateType ) {
// single post page tpl shortcodes separator
echo '<div class="tdc-sidebar-separator">Single Post shortcodes</div>';
// Here will be displayed the extended shortcodes
foreach ( $single_post_mapped_shortcodes as $mapped_shortcode ) {
if ( in_array( $mapped_shortcode['base'], array( 'tdb_single_related', 'tdb_single_related_author', 'tdb_single_user_review_replies_list', 'tdb_single_user_review_reply_form', 'tdb_single_user_review_ratings'))) {
continue;
}
$data_row_start_values = '';
if ( isset( $mapped_shortcode['tdc_in_row'] ) && true === $mapped_shortcode['tdc_in_row'] ) {
$tdc_class = 'tdc-element-with-row tdc-row-temp';
if ( isset( $mapped_shortcode['tdc_row_start_values'] ) ) {
$data_row_start_values = ' data-row-start-values="' . $mapped_shortcode['tdc_row_start_values'] . '" ';
}
} else {
$tdc_class = 'tdc-element';
}
$data_shortcode_settings = get_data_shortcode_settings( $mapped_shortcode );
$buffer =
'<div class="tdc-sidebar-element ' . $tdc_class . '" data-shortcode-name="' . $mapped_shortcode['base'] . '" ' . $data_shortcode_settings . '>' .
'<div class="tdc-element-ico tdc-ico-' . $mapped_shortcode['base'] . '"></div>' .
'<div class="tdc-element-id">' . $mapped_shortcode['name'] . '</div>' .
'</div>';
echo $buffer;
}
}
if ( !empty( $cpt_mapped_shortcodes ) && 'cpt' === $tdbTemplateType ) {
// cpt single page tpl shortcodes separator
echo '<div class="tdc-sidebar-separator">CPT shortcodes</div>';
// Here will be displayed the extended shortcodes
foreach ( $cpt_mapped_shortcodes as $mapped_shortcode ) {
if ( in_array( $mapped_shortcode['base'], array( 'tdb_single_related', 'tdb_single_related_author'))) {
continue;
}
if(
get_post_type($tdbLoadDataFromId) != 'tdc-review' &&
(
$mapped_shortcode['base'] === 'tdb_single_user_review_replies_list' ||
$mapped_shortcode['base'] === 'tdb_single_user_review_reply_form' ||
$mapped_shortcode['base'] === 'tdb_single_user_review_ratings'
)
)
continue;
$data_row_start_values = '';
if ( isset( $mapped_shortcode['tdc_in_row'] ) && true === $mapped_shortcode['tdc_in_row'] ) {
$tdc_class = 'tdc-element-with-row tdc-row-temp';
if ( isset( $mapped_shortcode['tdc_row_start_values'] ) ) {
$data_row_start_values = ' data-row-start-values="' . $mapped_shortcode['tdc_row_start_values'] . '" ';
}
} else {
$tdc_class = 'tdc-element';
}
$data_shortcode_settings = get_data_shortcode_settings( $mapped_shortcode );
$buffer =
'<div class="tdc-sidebar-element ' . $tdc_class . '" data-shortcode-name="' . $mapped_shortcode['base'] . '" ' . $data_shortcode_settings . '>' .
'<div class="tdc-element-ico tdc-ico-' . $mapped_shortcode['base'] . '"></div>' .
'<div class="tdc-element-id">' . $mapped_shortcode['name'] . '</div>' .
'</div>';
echo $buffer;
}
}
if ( !empty( $category_page_mapped_shortcodes ) && 'category' === $tdbTemplateType ) {
// cat tpl page shortcodes separator
echo '<div class="tdc-sidebar-separator">Category Page shortcodes</div>';
// Here will be displayed the extended shortcodes
foreach ( $category_page_mapped_shortcodes as $mapped_shortcode ) {
if ( in_array( $mapped_shortcode['base'], array(
'tdb_category_grid_1',
'tdb_category_grid_2',
'tdb_category_grid_3',
'tdb_category_grid_4',
'tdb_category_grid_5',
'tdb_category_grid_6',
'tdb_category_grid_7',
'tdb_category_grid_8',
'tdb_category_grid_9',
'tdb_category_grid_10',
))
) {
continue;
}
$data_row_start_values = '';
if ( isset( $mapped_shortcode['tdc_in_row'] ) && true === $mapped_shortcode['tdc_in_row'] ) {
$tdc_class = 'tdc-element-with-row tdc-row-temp';
if ( isset( $mapped_shortcode['tdc_row_start_values'] ) ) {
$data_row_start_values = ' data-row-start-values="' . $mapped_shortcode['tdc_row_start_values'] . '" ';
}
} else {
$tdc_class = 'tdc-element';
}
$data_shortcode_settings = get_data_shortcode_settings( $mapped_shortcode );
$buffer =
'<div class="tdc-sidebar-element ' . $tdc_class . '" data-shortcode-name="' . $mapped_shortcode['base'] . '" ' . $data_shortcode_settings . '>' .
'<div class="tdc-element-ico tdc-ico-' . $mapped_shortcode['base'] . '"></div>' .
'<div class="tdc-element-id">' . $mapped_shortcode['name'] . '</div>' .
'</div>';
echo $buffer;
}
}
if ( !empty( $tag_page_mapped_shortcodes ) && 'tag' === $tdbTemplateType ) {
// tag tpl page shortcodes separator
echo '<div class="tdc-sidebar-separator">Tag Page shortcodes</div>';
// Here will be displayed the extended shortcodes
foreach ( $tag_page_mapped_shortcodes as $mapped_shortcode ) {
$data_row_start_values = '';
if ( isset( $mapped_shortcode['tdc_in_row'] ) && true === $mapped_shortcode['tdc_in_row'] ) {
$tdc_class = 'tdc-element-with-row tdc-row-temp';
if ( isset( $mapped_shortcode['tdc_row_start_values'] ) ) {
$data_row_start_values = ' data-row-start-values="' . $mapped_shortcode['tdc_row_start_values'] . '" ';
}
} else {
$tdc_class = 'tdc-element';
}
$data_shortcode_settings = get_data_shortcode_settings( $mapped_shortcode );
$buffer =
'<div class="tdc-sidebar-element ' . $tdc_class . '" data-shortcode-name="' . $mapped_shortcode['base'] . '" ' . $data_shortcode_settings . '>' .
'<div class="tdc-element-ico tdc-ico-' . $mapped_shortcode['base'] . '"></div>' .
'<div class="tdc-element-id">' . $mapped_shortcode['name'] . '</div>' .
'</div>';
echo $buffer;
}
}
if ( !empty( $cpt_tax_mapped_shortcodes ) && 'cpt_tax' === $tdbTemplateType ) {
// cpt tax tpl page shortcodes separator
echo '<div class="tdc-sidebar-separator">Custom Taxonomy shortcodes</div>';
// Here will be displayed the extended shortcodes
foreach ( $cpt_tax_mapped_shortcodes as $mapped_shortcode ) {
if ( in_array( $mapped_shortcode['base'], array(
'tdb_category_grid_1',
'tdb_category_grid_2',
'tdb_category_grid_3',
'tdb_category_grid_4',
'tdb_category_grid_5',
'tdb_category_grid_6',
'tdb_category_grid_7',
'tdb_category_grid_8',
'tdb_category_grid_9',
'tdb_category_grid_10',
))
) {
continue;
}
$data_row_start_values = '';
if ( isset( $mapped_shortcode['tdc_in_row'] ) && true === $mapped_shortcode['tdc_in_row'] ) {
$tdc_class = 'tdc-element-with-row tdc-row-temp';
if ( isset( $mapped_shortcode['tdc_row_start_values'] ) ) {
$data_row_start_values = ' data-row-start-values="' . $mapped_shortcode['tdc_row_start_values'] . '" ';
}
} else {
$tdc_class = 'tdc-element';
}
$data_shortcode_settings = get_data_shortcode_settings( $mapped_shortcode );
$buffer =
'<div class="tdc-sidebar-element ' . $tdc_class . '" data-shortcode-name="' . $mapped_shortcode['base'] . '" ' . $data_shortcode_settings . '>' .
'<div class="tdc-element-ico tdc-ico-' . $mapped_shortcode['base'] . '"></div>' .
'<div class="tdc-element-id">' . $mapped_shortcode['name'] . '</div>' .
'</div>';
echo $buffer;
}
}
if ( !empty( $author_page_mapped_shortcodes ) && 'author' === $tdbTemplateType ) {
// author tpl page shortcodes separator
echo '<div class="tdc-sidebar-separator">Author Page shortcodes</div>';
// Here will be displayed the author page shortcodes
foreach ( $author_page_mapped_shortcodes as $mapped_shortcode ) {
$data_row_start_values = '';
if ( isset( $mapped_shortcode['tdc_in_row'] ) && true === $mapped_shortcode['tdc_in_row'] ) {
$tdc_class = 'tdc-element-with-row tdc-row-temp';
if ( isset( $mapped_shortcode['tdc_row_start_values'] ) ) {
$data_row_start_values = ' data-row-start-values="' . $mapped_shortcode['tdc_row_start_values'] . '" ';
}
} else {
$tdc_class = 'tdc-element';
}
$data_shortcode_settings = get_data_shortcode_settings( $mapped_shortcode );
$buffer =
'<div class="tdc-sidebar-element ' . $tdc_class . '" data-shortcode-name="' . $mapped_shortcode['base'] . '" ' . $data_shortcode_settings . '>' .
'<div class="tdc-element-ico tdc-ico-' . $mapped_shortcode['base'] . '"></div>' .
'<div class="tdc-element-id">' . $mapped_shortcode['name'] . '</div>' .
'</div>';
echo $buffer;
}
}
if ( !empty( $search_page_mapped_shortcodes ) && 'search' === $tdbTemplateType ) {
// search tpl page shortcodes separator
echo '<div class="tdc-sidebar-separator">Search Page shortcodes</div>';
// Here will be displayed the search page shortcodes
foreach ( $search_page_mapped_shortcodes as $mapped_shortcode ) {
$data_row_start_values = '';
if ( isset( $mapped_shortcode['tdc_in_row'] ) && true === $mapped_shortcode['tdc_in_row'] ) {
$tdc_class = 'tdc-element-with-row tdc-row-temp';
if ( isset( $mapped_shortcode['tdc_row_start_values'] ) ) {
$data_row_start_values = ' data-row-start-values="' . $mapped_shortcode['tdc_row_start_values'] . '" ';
}
} else {
$tdc_class = 'tdc-element';
}
$data_shortcode_settings = get_data_shortcode_settings( $mapped_shortcode );
$buffer =
'<div class="tdc-sidebar-element ' . $tdc_class . '" data-shortcode-name="' . $mapped_shortcode['base'] . '" ' . $data_shortcode_settings . '>' .
'<div class="tdc-element-ico tdc-ico-' . $mapped_shortcode['base'] . '"></div>' .
'<div class="tdc-element-id">' . $mapped_shortcode['name'] . '</div>' .
'</div>';
echo $buffer;
}
}
if ( !empty( $attachment_page_mapped_shortcodes ) && 'attachment' === $tdbTemplateType ) {
// attachment tpl page shortcodes separator
echo '<div class="tdc-sidebar-separator">Attachment Page shortcodes</div>';
// Here will be displayed the search page shortcodes
foreach ( $attachment_page_mapped_shortcodes as $mapped_shortcode ) {
$data_row_start_values = '';
if ( isset( $mapped_shortcode['tdc_in_row'] ) && true === $mapped_shortcode['tdc_in_row'] ) {
$tdc_class = 'tdc-element-with-row tdc-row-temp';
if ( isset( $mapped_shortcode['tdc_row_start_values'] ) ) {
$data_row_start_values = ' data-row-start-values="' . $mapped_shortcode['tdc_row_start_values'] . '" ';
}
} else {
$tdc_class = 'tdc-element';
}
$data_shortcode_settings = get_data_shortcode_settings( $mapped_shortcode );
$buffer =
'<div class="tdc-sidebar-element ' . $tdc_class . '" data-shortcode-name="' . $mapped_shortcode['base'] . '" ' . $data_shortcode_settings . '>' .
'<div class="tdc-element-ico tdc-ico-' . $mapped_shortcode['base'] . '"></div>' .
'<div class="tdc-element-id">' . $mapped_shortcode['name'] . '</div>' .
'</div>';
echo $buffer;
}
}
if ( !empty( $common_page_el_mapped_shortcodes ) && ! empty( $tdbTemplateType ) && 'page' !== $tdbTemplateType ) {
// common tpl shortcodes separator
echo '<div class="tdc-sidebar-separator">Common Page Elements shortcodes</div>';
// Here will be displayed the common page shortcodes
foreach ( $common_page_el_mapped_shortcodes as $mapped_shortcode ) {
if (
'single' === $tdbTemplateType &&
( $mapped_shortcode['base'] === 'tdb_loop' ||
$mapped_shortcode['base'] === 'tdb_loop_2' ||
$mapped_shortcode['base'] === 'tdb_filters_loop' ||
$mapped_shortcode['base'] === 'tdb_flex_loop_builder' ||
$mapped_shortcode['base'] === 'tdb_filters_loop_sorting_options' ||
$mapped_shortcode['base'] === 'tdb_filters_list' ||
$mapped_shortcode['base'] === 'tdb_filters'
)
)
continue;
if (
'attachment' === $tdbTemplateType &&
( $mapped_shortcode['base'] === 'tdb_loop' ||
$mapped_shortcode['base'] === 'tdb_loop_2' ||
$mapped_shortcode['base'] === 'tdb_filters_loop' ||
$mapped_shortcode['base'] === 'tdb_flex_loop_builder' ||
$mapped_shortcode['base'] === 'tdb_filters_loop_sorting_options' ||
$mapped_shortcode['base'] === 'tdb_filters_list' ||
$mapped_shortcode['base'] === 'tdb_filters'
)
)
continue;
if (
'404' === $tdbTemplateType &&
( $mapped_shortcode['base'] === 'tdb_title' ||
$mapped_shortcode['base'] === 'tdb_loop' ||
$mapped_shortcode['base'] === 'tdb_loop_2' ||
$mapped_shortcode['base'] === 'tdb_filters_loop' ||
$mapped_shortcode['base'] === 'tdb_flex_loop_builder' ||
$mapped_shortcode['base'] === 'tdb_filters_loop_sorting_options' ||
$mapped_shortcode['base'] === 'tdb_filters_list' ||
$mapped_shortcode['base'] === 'tdb_filters'
)
)
continue;
if( (
'header' === $tdbTemplateType ||
'footer' === $tdbTemplateType ||
'404' === $tdbTemplateType ||
'date' === $tdbTemplateType ||
'search' === $tdbTemplateType ||
'woo_search_archive' === $tdbTemplateType ||
'woo_shop_base' === $tdbTemplateType
) &&
(
$mapped_shortcode['base'] === 'tdb_single_custom_field' ||
$mapped_shortcode['base'] === 'tdb_gallery'
)
)
continue;
$data_row_start_values = '';
if ( isset( $mapped_shortcode['tdc_in_row'] ) && true === $mapped_shortcode['tdc_in_row'] ) {
$tdc_class = 'tdc-element-with-row tdc-row-temp';
if ( isset( $mapped_shortcode['tdc_row_start_values'] ) ) {
$data_row_start_values = ' data-row-start-values="' . $mapped_shortcode['tdc_row_start_values'] . '" ';
}
} else {
$tdc_class = 'tdc-element';
}
$data_shortcode_settings = get_data_shortcode_settings( $mapped_shortcode );
$buffer =
'<div class="tdc-sidebar-element ' . $tdc_class . '" data-shortcode-name="' . $mapped_shortcode['base'] . '" ' . $data_shortcode_settings . '>' .
'<div class="tdc-element-ico tdc-ico-' . $mapped_shortcode['base'] . '"></div>' .
'<div class="tdc-element-id">' . $mapped_shortcode['name'] . '</div>' .
'</div>';
echo $buffer;
}
}
if ( !empty( $td_woo_single_shortcodes ) && !empty( $tdbTemplateType ) && 'woo_product' === $tdbTemplateType ) {
// woo single product tpl page shortcodes separator
echo '<div class="tdc-sidebar-separator">WooCommerce shortcodes</div>';
// Here will be displayed the WooCommerce Single Product template type shortcodes
foreach ( $td_woo_single_shortcodes as $mapped_shortcode ) {
$data_row_start_values = '';
if ( isset( $mapped_shortcode['tdc_in_row'] ) && true === $mapped_shortcode['tdc_in_row'] ) {
$tdc_class = 'tdc-element-with-row tdc-row-temp';
if ( isset( $mapped_shortcode['tdc_row_start_values'] ) ) {
$data_row_start_values = ' data-row-start-values="' . $mapped_shortcode['tdc_row_start_values'] . '" ';
}
} else {
$tdc_class = 'tdc-element';
}
$data_shortcode_settings = get_data_shortcode_settings( $mapped_shortcode );
$buffer =
'<div class="tdc-sidebar-element ' . $tdc_class . '" data-shortcode-name="' . $mapped_shortcode['base'] . '" ' . $data_shortcode_settings . '>' .
'<div class="tdc-element-ico tdc-ico-' . $mapped_shortcode['base'] . '"></div>' .
'<div class="tdc-element-id">' . $mapped_shortcode['name'] . '</div>' .
'</div>';
echo $buffer;
}
}
if ( !empty( $td_woo_archive_shortcodes ) && ! empty( $tdbTemplateType ) && 'woo_archive' === $tdbTemplateType ) {
// woocommerce shortcodes separator
echo '<div class="tdc-sidebar-separator">WooCommerce shortcodes</div>';
// Here will be displayed the WooCommerce Products Archives template type shortcodes
foreach ( $td_woo_archive_shortcodes as $mapped_shortcode ) {
$data_row_start_values = '';
if ( isset( $mapped_shortcode['tdc_in_row'] ) && true === $mapped_shortcode['tdc_in_row'] ) {
$tdc_class = 'tdc-element-with-row tdc-row-temp';
if ( isset( $mapped_shortcode['tdc_row_start_values'] ) ) {
$data_row_start_values = ' data-row-start-values="' . $mapped_shortcode['tdc_row_start_values'] . '" ';
}
} else {
$tdc_class = 'tdc-element';
}
$data_shortcode_settings = get_data_shortcode_settings( $mapped_shortcode );
$buffer =
'<div class="tdc-sidebar-element ' . $tdc_class . '" data-shortcode-name="' . $mapped_shortcode['base'] . '" ' . $data_shortcode_settings . '>' .
'<div class="tdc-element-ico tdc-ico-' . $mapped_shortcode['base'] . '"></div>' .
'<div class="tdc-element-id">' . $mapped_shortcode['name'] . '</div>' .
'</div>';
echo $buffer;
}
}
if ( !empty( $td_woo_search_archive_shortcodes ) && !empty( $tdbTemplateType ) && 'woo_search_archive' === $tdbTemplateType ) {
// woo search archive tpl page shortcodes separator
echo '<div class="tdc-sidebar-separator">WooCommerce shortcodes</div>';
// Here will be displayed the WooCommerce Products Archives template type shortcodes
foreach ( $td_woo_search_archive_shortcodes as $mapped_shortcode ) {
$data_row_start_values = '';
if ( isset( $mapped_shortcode['tdc_in_row'] ) && true === $mapped_shortcode['tdc_in_row'] ) {
$tdc_class = 'tdc-element-with-row tdc-row-temp';
if ( isset( $mapped_shortcode['tdc_row_start_values'] ) ) {
$data_row_start_values = ' data-row-start-values="' . $mapped_shortcode['tdc_row_start_values'] . '" ';
}
} else {
$tdc_class = 'tdc-element';
}
$data_shortcode_settings = get_data_shortcode_settings( $mapped_shortcode );
$buffer =
'<div class="tdc-sidebar-element ' . $tdc_class . '" data-shortcode-name="' . $mapped_shortcode['base'] . '" ' . $data_shortcode_settings . '>' .
'<div class="tdc-element-ico tdc-ico-' . $mapped_shortcode['base'] . '"></div>' .
'<div class="tdc-element-id">' . $mapped_shortcode['name'] . '</div>' .
'</div>';
echo $buffer;
}
}
if ( !empty( $td_woo_common_shortcodes ) && ! empty( $tdbTemplateType ) && in_array( $tdbTemplateType, array( 'woo_product', 'woo_archive', 'woo_search_archive', 'woo_shop_base' ) ) ) {
// woo common tpl page shortcodes separator
echo '<div class="tdc-sidebar-separator">WooCommerce Common shortcodes</div>';
// Here will be displayed the WooCommerce common type shortcodes
foreach ( $td_woo_common_shortcodes as $mapped_shortcode ) {
//if ( !in_array( $tdbTemplateType, array( 'woo_product', 'woo_archive', 'woo_search_archive', 'woo_shop_base' ) ) )
//continue;
$data_row_start_values = '';
if ( isset( $mapped_shortcode['tdc_in_row'] ) && true === $mapped_shortcode['tdc_in_row'] ) {
$tdc_class = 'tdc-element-with-row tdc-row-temp';
if ( isset( $mapped_shortcode['tdc_row_start_values'] ) ) {
$data_row_start_values = ' data-row-start-values="' . $mapped_shortcode['tdc_row_start_values'] . '" ';
}
} else {
$tdc_class = 'tdc-element';
}
$data_shortcode_settings = get_data_shortcode_settings( $mapped_shortcode );
$buffer = '<div class="tdc-sidebar-element ' . $tdc_class . '" data-shortcode-name="' . $mapped_shortcode['base'] . '" ' . $data_shortcode_settings . '>' .
'<div class="tdc-element-ico tdc-ico-' . $mapped_shortcode['base'] . '"></div>' .
'<div class="tdc-element-id">' . $mapped_shortcode['name'] . '</div>' .
'</div>';
echo $buffer;
}
}
if ( !empty( $block_mapped_shortcodes ) ) {
// blocks shortcodes separator
echo '<div class="tdc-sidebar-separator">Block shortcodes</div>';
foreach ( $block_mapped_shortcodes as $mapped_shortcode ) {
if ( isset( $mapped_shortcode['map_in_td_composer'] ) && true === $mapped_shortcode['map_in_td_composer'] ) {
$data_row_start_values = '';
if ( isset( $mapped_shortcode['tdc_in_row'] ) && true === $mapped_shortcode['tdc_in_row'] ) {
$tdc_class = 'tdc-element-with-row tdc-row-temp';
} else {
$tdc_class = 'tdc-element';
}
$data_shortcode_settings = get_data_shortcode_settings( $mapped_shortcode );
$buffer =
'<div class="tdc-sidebar-element ' . $tdc_class . '" data-shortcode-name="' . $mapped_shortcode['base'] . '" ' . $data_shortcode_settings . '>' .
'<div class="tdc-element-ico tdc-ico-' . $mapped_shortcode['base'] . '"></div>' .
'<div class="tdc-element-id">' . $mapped_shortcode['name'] . '</div>' .
'</div>';
echo $buffer;
}
}
}
if ( !empty( $big_grids_mapped_shortcodes ) ) {
// big grids shortcodes separator
echo '<div class="tdc-sidebar-separator">Big Grid shortcodes</div>';
foreach ( $big_grids_mapped_shortcodes as $mapped_shortcode ) {
if ( isset( $mapped_shortcode['map_in_td_composer'] ) && true === $mapped_shortcode['map_in_td_composer'] ) {
$data_row_start_values = '';
if ( isset( $mapped_shortcode['tdc_in_row'] ) && true === $mapped_shortcode['tdc_in_row'] ) {
$tdc_class = 'tdc-element-with-row tdc-row-temp';
if ( isset( $mapped_shortcode['tdc_row_start_values'] ) ) {
$data_row_start_values = ' data-row-start-values="' . $mapped_shortcode['tdc_row_start_values'] . '" ';
}
} else {
$tdc_class = 'tdc-element';
}
$data_shortcode_settings = get_data_shortcode_settings( $mapped_shortcode );
$buffer =
'<div class="tdc-sidebar-element ' . $tdc_class . '" data-shortcode-name="' . $mapped_shortcode['base'] . '" ' . $data_shortcode_settings . '>' .
'<div class="tdc-element-ico tdc-ico-' . $mapped_shortcode['base'] . '"></div>' .
'<div class="tdc-element-id">' . $mapped_shortcode['name'] . '</div>' .
'</div>';
echo $buffer;
}
}
}
if ( !empty( $extended_mapped_shortcodes ) ) {
// extended shortcodes separator
echo '<div class="tdc-sidebar-separator">Extended shortcodes</div>';
// Here will be displayed the extended shortcodes
foreach ( $extended_mapped_shortcodes as $mapped_shortcode ) {
$data_row_start_values = '';
if ( isset( $mapped_shortcode['tdc_in_row'] ) && true === $mapped_shortcode['tdc_in_row'] ) {
$tdc_class = 'tdc-element-with-row tdc-row-temp';
if ( isset( $mapped_shortcode['tdc_row_start_values'] ) ) {
$data_row_start_values = ' data-row-start-values="' . $mapped_shortcode['tdc_row_start_values'] . '" ';
}
} else {
$tdc_class = 'tdc-element';
}
$data_shortcode_settings = get_data_shortcode_settings( $mapped_shortcode );
$buffer =
'<div class="tdc-sidebar-element ' . $tdc_class . '" data-shortcode-name="' . $mapped_shortcode['base'] . '" ' . $data_shortcode_settings . '>' .
'<div class="tdc-element-ico tdc-ico-' . $mapped_shortcode['base'] . '"></div>' .
'<div class="tdc-element-id">' . $mapped_shortcode['name'] . '</div>' .
'</div>';
echo $buffer;
}
}
if ( !empty( $custom_forms_mapped_shortcodes ) ) {
// custom forms shortcodes separator
echo '<div class="tdc-sidebar-separator">Custom forms shortcodes</div>';
// Here will be displayed the extended shortcodes
foreach ( $custom_forms_mapped_shortcodes as $mapped_shortcode ) {
$data_row_start_values = '';
if ( isset( $mapped_shortcode['tdc_in_row'] ) && true === $mapped_shortcode['tdc_in_row'] ) {
$tdc_class = 'tdc-element-with-row tdc-row-temp';
if ( isset( $mapped_shortcode['tdc_row_start_values'] ) ) {
$data_row_start_values = ' data-row-start-values="' . $mapped_shortcode['tdc_row_start_values'] . '" ';
}
} else {
$tdc_class = 'tdc-element';
}
$data_shortcode_settings = get_data_shortcode_settings( $mapped_shortcode );
$buffer =
'<div class="tdc-sidebar-element ' . $tdc_class . '" data-shortcode-name="' . $mapped_shortcode['base'] . '" ' . $data_shortcode_settings . '>' .
'<div class="tdc-element-ico tdc-ico-' . $mapped_shortcode['base'] . '"></div>' .
'<div class="tdc-element-id">' . $mapped_shortcode['name'] . '</div>' .
'</div>';
echo $buffer;
}
}
if ( !empty( $external_mapped_shortcodes ) ) {
// external shortcodes separator
echo '<div class="tdc-sidebar-separator">External shortcodes</div>';
if ( 'page' === $tdbTemplateType ) {
foreach ( $common_page_el_mapped_shortcodes as $common_page_el_mapped_shortcode ) {
if (
$common_page_el_mapped_shortcode['base'] === 'tdb_loop' ||
$common_page_el_mapped_shortcode['base'] === 'tdb_loop_2' ||
$common_page_el_mapped_shortcode['base'] === 'tdb_filters_loop' ||
$common_page_el_mapped_shortcode['base'] === 'tdb_flex_loop_builder' ||
$common_page_el_mapped_shortcode['base'] === 'tdb_filters_loop_sorting_options' ||
$common_page_el_mapped_shortcode['base'] === 'tdb_filters_list' ||
$common_page_el_mapped_shortcode['base'] === 'tdb_filters' ||
$common_page_el_mapped_shortcode['base'] === 'tdb_breadcrumbs' ||
$common_page_el_mapped_shortcode['base'] === 'tdb_title' ||
$common_page_el_mapped_shortcode['base'] === 'tdb_woo_menu_cart' ||
$common_page_el_mapped_shortcode['base'] === 'tdb_single_post_share' ||
$common_page_el_mapped_shortcode['base'] === 'tdb_single_custom_field' ||
$common_page_el_mapped_shortcode['base'] === 'tdb_gallery'
) {
$external_mapped_shortcodes[] = $common_page_el_mapped_shortcode;
}
}
foreach ( $single_post_mapped_shortcodes as $single_post_mapped_shortcode ) {
if (
$single_post_mapped_shortcode['base'] === 'tdb_single_user_reviews_form' ||
$single_post_mapped_shortcode['base'] === 'tdb_single_user_reviews_overall' ||
$single_post_mapped_shortcode['base'] === 'tdb_single_user_reviews_list' ||
$single_post_mapped_shortcode['base'] === 'tdb_single_user_review_replies_list' ||
$single_post_mapped_shortcode['base'] === 'tdb_single_user_review_reply_form' ||
$single_post_mapped_shortcode['base'] === 'tdb_single_user_review_ratings' ||
$single_post_mapped_shortcode['base'] === 'tdb_single_location_display'
) {
$external_mapped_shortcodes[] = $single_post_mapped_shortcode;
}
}
}
// Here will be displayed the external shortcodes
foreach ( $external_mapped_shortcodes as $mapped_shortcode ) {
$data_row_start_values = '';
if ( isset( $mapped_shortcode['tdc_in_row'] ) && true === $mapped_shortcode['tdc_in_row'] ) {
$tdc_class = 'tdc-element-with-row tdc-row-temp';
} else {
$tdc_class = 'tdc-element';
}
$data_shortcode_settings = get_data_shortcode_settings( $mapped_shortcode );
$buffer =
'<div class="tdc-sidebar-element ' . $tdc_class . '" data-shortcode-name="' . $mapped_shortcode['base'] . '" ' . $data_shortcode_settings . '>' .
'<div class="tdc-element-ico tdc-ico-' . $mapped_shortcode['base'] . '"></div>' .
'<div class="tdc-element-id">' . $mapped_shortcode['name'] . '</div>' .
'</div>';
echo $buffer;
}
}
if ( !empty( $multipurpose_mapped_shortcodes ) ) {
// multipurpose shortcodes separator
echo '<div class="tdc-sidebar-separator">Multipurpose shortcodes</div>';
// Here will be displayed the multipurpose shortcodes
foreach ( $multipurpose_mapped_shortcodes as $mapped_shortcode ) {
$data_row_start_values = '';
if ( isset( $mapped_shortcode['tdc_in_row'] ) && true === $mapped_shortcode['tdc_in_row'] ) {
$tdc_class = 'tdc-element-with-row tdc-row-temp';
} else {
$tdc_class = 'tdc-element';
}
$data_shortcode_settings = get_data_shortcode_settings( $mapped_shortcode );
$buffer =
'<div class="tdc-sidebar-element ' . $tdc_class . '" data-shortcode-name="' . $mapped_shortcode['base'] . '" ' . $data_shortcode_settings . '>' .
'<div class="tdc-element-ico tdc-ico-' . $mapped_shortcode['base'] . '"></div>' .
'<div class="tdc-element-id">' . $mapped_shortcode['name'] . '</div>' .
'</div>';
echo $buffer;
}
}
if ( !empty( $template_shortcodes ) ) {
// template shortcodes separator
echo '<div class="tdc-sidebar-separator">Template shortcodes</div>';
// Here will be displayed the template shortcodes
foreach ( $template_shortcodes as $template_id => $template_shortcode ) {
$buffer =
'<div class="tdc-sidebar-element tdc-row-temp" data-template-content="' . $template_shortcode['content'] . '" data-shortcode-name="vc_row">' .
'<div class="tdc-element-ico tdc-ico-template"></div>' .
'<div class="tdc-element-id">' . $template_shortcode['name'] . '</div>' .
'</div>';
echo $buffer;
}
}
}
// saved shortcodes separator
echo '<div class="tdc-sidebar-separator tdc-sidebar-saved-shortcodes">Saved shortcodes</div>';
?>
</div>
</div>
</div>
<!-- modal window -->
<div class="tdc-sidebar-modal tdc-sidebar-modal-menu" data-button_class="tdc-main-menu">
<div class="tdc-sidebar-modal-content">
<div id="tdc-theme-panel">
<?php
require_once( plugin_dir_path( __FILE__ ) . '../panel/tdc_header.php');
?>
</div>
</div>
</div>
<div id="tdc-icon-selector">
<div class="tdc-icon-selector-head">
<select class="tdc-icon-selector-lib"><option value="">All</option>
<?php
foreach ( tdc_config::$font_settings as $font_id => $font_settings ) {
if ( 'Newspaper' !== TD_THEME_NAME && 'font_newspaper' == $font_id ) {
continue;
}
echo '<option value="' . $font_id . '">' . $font_settings['name'] . '</option>';
}
?>
</select>
<div class="tdc-icon-selector-wrap">
<input class="tdc-icon-selector-filter" placeholder="Search icon..." type="text"/>
</div>
</div>
<div class="tdc-icon-selector-content-wrap">
<div class="tdc-icon-selector-content">
<?php
$buffer = '';
foreach ( tdc_config::$font_settings as $font_id => $font_settings ) {
if ( 'Newspaper' !== TD_THEME_NAME && 'font_newspaper' == $font_id ) {
continue;
}
$buffer .= '<div class="tdc-font-separator" data-font_id="' . $font_id . '">' . $font_settings['name'] . '</div>';
ob_start();
include_once( $font_settings['template_file'] );
$buffer .= ob_get_clean();
}
echo $buffer;
?>
</div>
</div>
</div>
<div id="tdc-palette">
<input type="text" val="" id="tdc-palette-color-picker"/>
</div>
<div id="tdc-gradient">
<input type="text" val="" id="tdc-gradient-color-picker"/>
</div>
<div id="tdc-font-list">
</div>
<div id="tdc-editor-css" style="z-index: 2; height: 100%; width: 100%;"></div>
<?php
// Extensions add content
do_action( 'tdc_extension_content' );
?>
</div>
<div id="tdc-context-menu">
<ul>
<li class="tdc-current-type separator"></li>
<li class="tdc-cut-shortcode">Cut<span>CTRL + X</span></li>
<li class="tdc-copy-shortcode">Copy<span>CTRL + C</span></li>
<li class="tdc-paste-shortcode-before">Paste Before<span>CTRL + SHIFT + V</span></li>
<li class="tdc-paste-shortcode-after separator space">Paste After<span>CTRL + V</span></li>
<li class="tdc-copy-style active">Copy Style<i class="td-icon-right-arrow"></i><ul class="tdc-copy-list-attrs tdc-list-atts"></ul></li>
<li class="tdc-paste-style separator space">Paste Style<i class="td-icon-right-arrow"></i><ul class="tdc-paste-list-attrs tdc-list-atts"></ul></li>
<li class="tdc-reset-style separator space">Reset Style</li>
<li class="tdc-save-shortcode">Save as Element<span>SHIFT + S</span></li>
<li class="tdc-delete-shortcode">Delete<span>DEL</span></li>
<li class="tdc-clone-shortcode">Duplicate<span>CTRL + D</span></li>
<li class="tdc-clear-shortcode">Clear</li>
</ul>
</div>
<!-- The live iFrame loads in this wrapper :) -->
<div id="tdc-live-iframe-wrapper" class="tdc-live-iframe-wrapper-inline"></div>
<div id="tdc-iframe-cover"></div>
<div style="height: 1px; visibility: hidden; overflow: hidden;">
<?php
//$is_IE = false; // used by wp-admin/edit-form-advanced.php
//require_once ABSPATH . 'wp-admin/edit-form-advanced.php';
?>
</div>
<div id="tdc-menu-settings">
<header class="tdb-wm-header-drag">
<div class="title"></div>
<div class="tdc-iframe-close-button"></div>
</header>
<div class="content"></div>
<footer>
<div class="tdc-iframe-apply-button"></div>
<div class="tdc-iframe-ok-button"></div>
</footer>
</div>
<div id="tdc-wpeditor">
<header class="tdb-wm-header-drag">
<div id="title">WP Editor</div>
<div class="tdc-iframe-close-button"></div>
</header>
<div class="content"></div>
</div>
<div id="tdc-page-settings">
<header class="tdb-wm-header-drag">
<div class="title"></div>
<div class="tdc-iframe-close-button"></div>
</header>
<div class="content"></div>
<footer>
<div class="tdc-iframe-apply-button"></div>
<div class="tdc-iframe-ok-button"></div>
</footer>
</div>
<div id="tdc-ace-editor" style="display: none;">
<header class="tdb-wm-header-drag">
<div class="title">HTML Code Editor</div>
<div class="close"></div>
</header>
<div class="content"></div>
<footer>
<div class="tdw-resize"></div>
</footer>
</div>
<div id="tdc-zone">
<div class="content">
<div class="tdc-wm-box tdc-template-wrap" data-manage="header">
<div class="tdc-wm-box-title tdc-wm-box-supertitle"><span>Header templates</span></div>
<div class="tdc-wm-box-descr">Choose header template</div>
<div class="tdc-template-select tdc-header-template-select">
<div class="tdc-template-current tdc-header-template-current"></div>
<div class="tdc-template-list tdc-header-template-list" style="height: auto !important;">
<div class="tdc-template-el" data-value=""><div class="tdc-template-el-title tdc-template-header-name">Global Template</div></div>
<div class="tdc-template-el" data-value="no_header"><div class="tdc-template-el-title tdc-template-header-name">No Header</div></div>
<?php
if ( tdc_state::get_start_composer_for_mobile() ) {
?>
<div class="tdc-convert-wrap tdc-templates-header-desktop">
<p>Select a Header from your templates to create a blank or with content Mobile Header</p>
<div class="tdc-convert-list-wrap">
<div class="tdc-convert-list-button tdc-templates-header-desktop-button">Convert template<svg xmlns="http://www.w3.org/2000/svg" width="5" height="5" viewBox="0 0 5 5"><path d="M5,3H3V5H2V3H0V2H2V0H3V2H5V3Z" fill="#fff"/></svg></div>
<div class="tdc-convert-list tdc-templates-header-desktop-list"></div>
</div>
</div>
<?php
}
?>
<div class="tdc-templates-header">
<div class="tdc-templates-header-item"><span>Cloud Templates</span></div>
<div class="tdc-templates-header-item"><span>Global</span></div>
</div>
</div>
<div class="tdc-template-cloud tdc-header-template-cloud">Import header</div>
</div>
<div class="tdc-header-template-zones">
<div class="tdc-header-zone">
<div class="tdc-zone-group">
<div class="tdc-zone tdc-zone-active" data-type="tdc_header_desktop">
<div class="tdc-zone-title">Main menu</div>
<div class="tdc-zone-icon tdc-zone-icon-mainm"></div>
</div>
<div class="tdc-zone tdc-zone-sticky-inactive" data-type="tdc_header_desktop_sticky">
<div class="tdc-zone-title">Main menu sticky</div>
<div class="tdc-zone-icon tdc-zone-icon-mainms"></div>
<div class="tdc-zone-sticky-info">
<div class="tdc-zone-sticky-switch">
<div class="tdc-zone-sticky-switch-ball"></div>
</div>
<div class="tdc-zone-sticky-txt" title="This option is only applicable in the composer.">Enable/disable sticky menu</div>
</div>
</div>
</div>
<div class="tdc-zone-group">
<div class="tdc-zone" data-type="tdc_header_mobile">
<div class="tdc-zone-title">Mobile menu</div>
<div class="tdc-zone-icon tdc-zone-icon-mobm"></div>
</div>
<div class="tdc-zone tdc-zone-sticky-inactive" data-type="tdc_header_mobile_sticky">
<div class="tdc-zone-title">Mobile menu sticky</div>
<div class="tdc-zone-icon tdc-zone-icon-mobms"></div>
<div class="tdc-zone-sticky-info">
<div class="tdc-zone-sticky-switch">
<div class="tdc-zone-sticky-switch-ball"></div>
</div>
<div class="tdc-zone-sticky-txt" title="This option is only applicable in the composer.">Enable/disable sticky menu</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tdc-wm-box tdc-template-wrap" data-manage="footer">
<div class="tdc-wm-box-title tdc-wm-box-supertitle"><span>Footer templates</span></div>
<div class="tdc-wm-box-descr">Choose footer template</div>
<div class="tdc-template-select tdc-footer-template-select">
<div class="tdc-template-current tdc-footer-template-current"></div>
<div class="tdc-template-list tdc-footer-template-list" style="height: auto !important;">
<div class="tdc-template-el" data-value=""><div class="tdc-template-el-title tdc-template-footer-name">Global Template</div></div>
<div class="tdc-template-el" data-value="no_footer"><div class="tdc-template-el-title tdc-template-footer-name">No Footer</div></div>
<?php
if ( tdc_state::get_start_composer_for_mobile() ) {
?>
<div class="tdc-convert-wrap tdc-templates-footer-desktop">
<p>Select a Footer from your templates to create a blank or with content Mobile Footer</p>
<div class="tdc-convert-list-wrap">
<div class="tdc-convert-list-button tdc-templates-footer-desktop-button">Convert template<svg xmlns="http://www.w3.org/2000/svg" width="5" height="5" viewBox="0 0 5 5"><path d="M5,3H3V5H2V3H0V2H2V0H3V2H5V3Z" fill="#fff"/></svg></div>
<div class="tdc-convert-list tdc-templates-footer-desktop-list"></div>
</div>
</div>
<?php
}
?>
<div class="tdc-templates-header">
<div class="tdc-templates-header-item"><span>Cloud Templates</span></div>
<div class="tdc-templates-header-item"><span>Global</span></div>
</div>
</div>
<div class="tdc-template-cloud tdc-footer-template-cloud">Import footer</div>
</div>
</div>
</div>
</div>
<?php
require_once( ABSPATH . 'wp-admin/admin-footer.php' );