- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
64 lines
2.4 KiB
PHP
Executable File
64 lines
2.4 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Ovidiu
|
|
* Date: 7/21/2017
|
|
* Time: 12:11 PM
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Silence is golden!
|
|
}
|
|
|
|
/*
|
|
* Lightbox content for listing all the templates for a campaign design
|
|
*/
|
|
global $design;
|
|
if ( empty( $design ) ) {
|
|
$design = tve_ult_get_design( $_REQUEST[ TVE_Ult_Const::DESIGN_QUERY_KEY_NAME ] );
|
|
}
|
|
|
|
$design_type_details = TVE_Ult_Const::design_details( $design['post_type'] );
|
|
$current_template = ! empty( $design[ TVE_Ult_Const::FIELD_TEMPLATE ] ) ? $design[ TVE_Ult_Const::FIELD_TEMPLATE ] : '';
|
|
$templates = TU_Template_Manager::get_templates( $design['post_type'] );
|
|
|
|
|
|
?>
|
|
|
|
<h2 class="tcb-modal-title"><?php echo sprintf( __( 'Choose the %s template you would like to use for this design', 'thrive-ult'), $design_type_details['name'] ); ?></h2>
|
|
<div class="margin-top-20">
|
|
<?php echo __( 'If you change your the template without saving the current revision, you won\'t be able to revert back to it later.', 'thrive-ult') ?>
|
|
</div>
|
|
<div class="tve-templates-wrapper">
|
|
<div class="tve-header-tabs">
|
|
<div class="tab-item active click" data-fn="tab_click" data-content="default"><?php echo __( 'Default Templates', 'thrive-ult'); ?></div>
|
|
<div class="tab-item click" data-fn="tab_click" data-content="saved"><?php echo sprintf( __( 'Saved %s Templates', 'thrive-ult'), $design_type_details['name'] ); ?></div>
|
|
</div>
|
|
<div class="tve-tabs-content">
|
|
<div class="tve-tab-content active" data-content="default">
|
|
<div class="tve-default-templates-list expanded-set">
|
|
<?php foreach ( $templates as $data ) : ?>
|
|
<div class="tve-template-item">
|
|
<div class="template-wrapper click<?php echo $current_template == $data['key'] ? ' active' : '' ?>" data-fn="select_template" data-key="<?php echo $data['key']; ?>">
|
|
<div class="template-thumbnail" style="background-image: url('<?php echo $data['thumbnail']; ?>')"></div>
|
|
<div class="template-name">
|
|
<?php echo $data['name']; ?>
|
|
</div>
|
|
<div class="selected"></div>
|
|
</div>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
</div>
|
|
<div class="tve-tab-content" data-content="saved">
|
|
<div class="tve-saved-templates-list expanded-set"></div>
|
|
</div>
|
|
<div class="tve-template-preview"></div>
|
|
</div>
|
|
</div>
|
|
<div class="tcb-modal-footer">
|
|
<button type="button" class="tcb-right tve-button medium green click white-text" data-fn="save">
|
|
<?php echo __( 'Choose Template', 'thrive-ult') ?>
|
|
</button>
|
|
</div>
|