File "settings-template.php"
Full Path: /home/jlklyejr/public_html/wp-content/test/wp-content/plugins/kirki/kirki-packages/settings/templates/settings-template.php
File size: 1.63 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Settings page template.
*
* @package Kirki
*/
defined( 'ABSPATH' ) || die( "Can't access directly" );
return function () {
?>
<div class="wrap heatbox-wrap kirki-settings-page" data-setup-udb-nonce="<?php echo esc_attr( wp_create_nonce( 'Kirki_Prepare_Install_Udb' ) ); ?>">
<div class="heatbox-header heatbox-has-tab-nav heatbox-margin-bottom">
<div class="heatbox-container heatbox-container-center">
<div class="logo-container">
<div>
<span class="title">
<?php _e( 'Kirki Customizer Framework', 'kirki' ); ?>
<span class="version"><?php echo esc_html( KIRKI_VERSION ); ?></span>
</span>
<p class="subtitle"><?php _e( 'The #1 Customizer Toolkit for WordPress Theme Developers.', 'kirki' ); ?></p>
</div>
<div>
<img src="<?php echo esc_url( KIRKI_PLUGIN_URL ); ?>/assets/images/kirki-logo.jpg">
</div>
</div>
<nav>
<ul class="heatbox-tab-nav">
<li class="heatbox-tab-nav-item kirki-settings-panel">
<a href="#settings"><?php _e( 'Settings', 'kirki' ); ?></a>
</li>
</ul>
</nav>
</div>
</div>
<div class="heatbox-container heatbox-container-center heatbox-column-container">
<div class="heatbox-main heatbox-panel-wrapper">
<!-- Faking H1 tag to place admin notices -->
<h1 style="display: none;"></h1>
<div class="heatbox-admin-panel kirki-settings-panel">
<?php
require __DIR__ . '/metaboxes/clear-font-cache.php';
?>
</div>
</div>
<div class="heatbox-sidebar">
<?php require __DIR__ . '/metaboxes/documentation.php'; ?>
</div>
</div>
</div>
<?php
};