2012-02-24 23:12:43 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Customize Controls
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Customize
|
|
|
|
* @since 3.4.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ( ! defined( 'ABSPATH' ) )
|
|
|
|
die;
|
|
|
|
|
|
|
|
global $wp_scripts;
|
|
|
|
|
|
|
|
$registered = $wp_scripts->registered;
|
|
|
|
$wp_scripts = new WP_Scripts;
|
|
|
|
$wp_scripts->registered = $registered;
|
|
|
|
|
|
|
|
add_action( 'customize_controls_print_scripts', 'print_head_scripts', 20 );
|
|
|
|
add_action( 'customize_controls_print_footer_scripts', '_wp_footer_scripts' );
|
|
|
|
add_action( 'customize_controls_print_styles', 'print_admin_styles', 20 );
|
|
|
|
|
|
|
|
do_action( 'customize_controls_init' );
|
|
|
|
|
|
|
|
wp_enqueue_script( 'customize-controls' );
|
|
|
|
wp_enqueue_style( 'customize-controls' );
|
|
|
|
|
|
|
|
do_action( 'customize_controls_enqueue_scripts' );
|
|
|
|
|
2012-02-28 16:41:19 -05:00
|
|
|
$theme = wp_get_theme();
|
2012-02-29 15:31:56 -05:00
|
|
|
$screenshot = $theme->get_screenshot();
|
2012-02-24 23:12:43 -05:00
|
|
|
|
|
|
|
// Let's roll.
|
|
|
|
@header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset'));
|
|
|
|
|
|
|
|
wp_user_settings();
|
|
|
|
_wp_admin_html_begin();
|
|
|
|
|
|
|
|
$admin_title = sprintf( __( '%1$s — WordPress' ), strip_tags( sprintf( __( 'Customize %s' ), $theme['Name'] ) ) );
|
|
|
|
?><title><?php echo $admin_title; ?></title><?php
|
|
|
|
|
|
|
|
do_action( 'customize_controls_print_styles' );
|
|
|
|
do_action( 'customize_controls_print_scripts' );
|
|
|
|
?>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<form id="customize-controls" method="post" class="wrap" target="_parent" action="<?php echo esc_url( add_query_arg( 'save', '1', admin_url( 'themes.php' ) ) ); ?>">
|
|
|
|
<?php wp_nonce_field( 'customize_controls' ); ?>
|
|
|
|
<input type="hidden" name="customize" value="on" />
|
|
|
|
<input type="hidden" id="customize-template" name="template" value="<?php echo esc_attr( $theme['Template'] ); ?>" />
|
|
|
|
<input type="hidden" id="customize-stylesheet" name="stylesheet" value="<?php echo esc_attr( $theme['Stylesheet'] ); ?>" />
|
2012-03-03 23:57:24 -05:00
|
|
|
|
|
|
|
<div id="customize-header-actions" class="customize-section"> </div>
|
2012-02-24 23:12:43 -05:00
|
|
|
|
|
|
|
<div id="customize-info" class="customize-section">
|
2012-03-03 21:06:11 -05:00
|
|
|
<div class="customize-section-title">
|
2012-03-03 21:40:18 -05:00
|
|
|
<?php if ( $screenshot ) : ?>
|
|
|
|
<img class="theme-screenshot" src="<?php echo esc_url( $screenshot ); ?>" />
|
|
|
|
<?php endif; ?>
|
2012-02-24 23:12:43 -05:00
|
|
|
<strong class="theme-name"><?php echo $theme['Name']; ?></strong>
|
|
|
|
<span class="theme-by"><?php printf( __( 'By %s' ), $theme['Author'] ); ?></span>
|
2012-03-03 21:06:11 -05:00
|
|
|
</div>
|
|
|
|
<div class="customize-section-content">
|
|
|
|
<?php if ( $screenshot ) : ?>
|
|
|
|
<img class="theme-screenshot" src="<?php echo esc_url( $screenshot ); ?>" />
|
|
|
|
<?php endif; ?>
|
2012-03-03 21:40:18 -05:00
|
|
|
|
|
|
|
<?php if ( $theme->description ): ?>
|
|
|
|
<div class="theme-description"><?php echo $theme->description; ?></div>
|
|
|
|
<?php endif; ?>
|
2012-03-03 21:06:11 -05:00
|
|
|
</div>
|
2012-02-24 23:12:43 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="customize-theme-controls"><ul>
|
|
|
|
<?php
|
|
|
|
foreach ( $this->sections as $section )
|
|
|
|
$section->render();
|
|
|
|
?>
|
|
|
|
</ul></div>
|
|
|
|
|
2012-03-03 23:57:24 -05:00
|
|
|
<div id="customize-footer-actions" class="customize-section">
|
2012-02-24 23:12:43 -05:00
|
|
|
<?php
|
|
|
|
submit_button( __( 'Save' ), 'primary', 'save', false );
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<div id="customize-preview">
|
|
|
|
<iframe name="customize-target"></iframe>
|
|
|
|
</div>
|
|
|
|
<?php
|
|
|
|
|
|
|
|
do_action( 'customize_controls_print_footer_scripts' );
|
|
|
|
|
2012-02-29 17:43:12 -05:00
|
|
|
// Check current scheme and load the preview with the same scheme
|
|
|
|
$scheme = is_ssl() ? 'https' : 'http';
|
2012-02-24 23:12:43 -05:00
|
|
|
$settings = array(
|
2012-02-29 18:28:13 -05:00
|
|
|
'preview' => esc_url( home_url( '/', $scheme ) ),
|
2012-02-24 23:12:43 -05:00
|
|
|
'values' => array(),
|
|
|
|
'prefix' => WP_Customize_Setting::name_prefix,
|
|
|
|
);
|
|
|
|
|
|
|
|
foreach ( $this->settings as $id => $setting ) {
|
|
|
|
$settings['values'][ $id ] = $setting->value();
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|
|
|
|
<script type="text/javascript">
|
|
|
|
(function() {
|
|
|
|
if ( typeof wp === 'undefined' || ! wp.customize )
|
|
|
|
return;
|
|
|
|
|
|
|
|
wp.customize.settings = <?php echo json_encode( $settings ); ?>;
|
|
|
|
})();
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|