2012-02-25 05:12:43 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Customize Controls
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Customize
|
|
|
|
* @since 3.4.0
|
|
|
|
*/
|
|
|
|
|
2012-06-26 20:48:18 +02:00
|
|
|
define( 'IFRAME_REQUEST', true );
|
|
|
|
|
2012-05-23 19:56:42 +02:00
|
|
|
require_once( './admin.php' );
|
|
|
|
if ( ! current_user_can( 'edit_theme_options' ) )
|
2012-05-23 23:00:02 +02:00
|
|
|
wp_die( __( 'Cheatin’ uh?' ) );
|
2012-02-25 05:12:43 +01:00
|
|
|
|
2012-06-08 20:45:12 +02:00
|
|
|
wp_reset_vars( array( 'url', 'return' ) );
|
|
|
|
$url = urldecode( $url );
|
|
|
|
$url = wp_validate_redirect( $url, home_url( '/' ) );
|
|
|
|
if ( $return )
|
|
|
|
$return = wp_validate_redirect( urldecode( $return ) );
|
|
|
|
if ( ! $return )
|
|
|
|
$return = $url;
|
|
|
|
|
2012-05-23 19:56:42 +02:00
|
|
|
global $wp_scripts, $wp_customize;
|
|
|
|
|
2012-02-25 05:12:43 +01:00
|
|
|
$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' );
|
|
|
|
|
|
|
|
// Let's roll.
|
|
|
|
@header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset'));
|
|
|
|
|
|
|
|
wp_user_settings();
|
|
|
|
_wp_admin_html_begin();
|
|
|
|
|
2012-06-06 23:45:17 +02:00
|
|
|
$body_class = '';
|
|
|
|
|
|
|
|
if ( wp_is_mobile() ) :
|
|
|
|
$body_class .= ' mobile';
|
|
|
|
|
|
|
|
?><meta name="viewport" id="viewport-meta" content="width=device-width, initial-scale=0.8, minimum-scale=0.5, maximum-scale=1.2"><?php
|
|
|
|
endif;
|
|
|
|
|
|
|
|
$is_ios = wp_is_mobile() && preg_match( '/iPad|iPod|iPhone/', $_SERVER['HTTP_USER_AGENT'] );
|
|
|
|
|
|
|
|
if ( $is_ios )
|
|
|
|
$body_class .= ' ios';
|
|
|
|
|
2012-11-08 23:01:06 +01:00
|
|
|
if ( is_rtl() )
|
|
|
|
$body_class .= ' rtl';
|
|
|
|
$body_class .= ' locale-' . sanitize_html_class( strtolower( str_replace( '_', '-', get_locale() ) ) );
|
|
|
|
|
2012-05-23 19:56:42 +02:00
|
|
|
$admin_title = sprintf( __( '%1$s — WordPress' ), strip_tags( sprintf( __( 'Customize %s' ), $wp_customize->theme()->display('Name') ) ) );
|
2012-02-25 05:12:43 +01:00
|
|
|
?><title><?php echo $admin_title; ?></title><?php
|
|
|
|
|
|
|
|
do_action( 'customize_controls_print_styles' );
|
|
|
|
do_action( 'customize_controls_print_scripts' );
|
|
|
|
?>
|
|
|
|
</head>
|
2012-06-06 23:45:17 +02:00
|
|
|
<body class="<?php echo esc_attr( $body_class ); ?>">
|
|
|
|
<div class="wp-full-overlay expanded">
|
2012-04-30 17:46:17 +02:00
|
|
|
<form id="customize-controls" class="wrap wp-full-overlay-sidebar">
|
2012-11-17 16:11:29 +01:00
|
|
|
|
2012-05-15 03:03:31 +02:00
|
|
|
<div id="customize-header-actions" class="wp-full-overlay-header">
|
2012-05-24 05:29:51 +02:00
|
|
|
<?php
|
2012-05-24 16:44:13 +02:00
|
|
|
$save_text = $wp_customize->is_theme_active() ? __( 'Save & Publish' ) : __( 'Save & Activate' );
|
2012-11-06 15:47:25 +01:00
|
|
|
submit_button( $save_text, 'primary save', 'save', false );
|
2012-05-24 05:29:51 +02:00
|
|
|
?>
|
2012-09-26 21:57:44 +02:00
|
|
|
<span class="spinner"></span>
|
2012-06-08 20:45:12 +02:00
|
|
|
<a class="back button" href="<?php echo esc_url( $return ? $return : admin_url( 'themes.php' ) ); ?>">
|
2012-05-24 05:29:51 +02:00
|
|
|
<?php _e( 'Cancel' ); ?>
|
2012-04-16 16:02:28 +02:00
|
|
|
</a>
|
|
|
|
</div>
|
2012-11-17 16:11:29 +01:00
|
|
|
|
2012-05-26 22:47:55 +02:00
|
|
|
<?php
|
|
|
|
$screenshot = $wp_customize->theme()->get_screenshot();
|
|
|
|
$cannot_expand = ! ( $screenshot || $wp_customize->theme()->get('Description') );
|
|
|
|
?>
|
|
|
|
|
2012-11-06 15:47:25 +01:00
|
|
|
<div class="wp-full-overlay-sidebar-content" tabindex="-1">
|
2012-05-26 22:47:55 +02:00
|
|
|
<div id="customize-info" class="customize-section<?php if ( $cannot_expand ) echo ' cannot-expand'; ?>">
|
2012-11-06 15:47:25 +01:00
|
|
|
<div class="customize-section-title" aria-label="<?php esc_attr_e( 'Theme Customizer Options' ); ?>" tabindex="0">
|
2012-05-30 18:57:44 +02:00
|
|
|
<span class="preview-notice"><?php
|
|
|
|
/* translators: %s is the theme name in the Customize/Live Preview pane */
|
|
|
|
echo sprintf( __( 'You are previewing %s' ), '<strong class="theme-name">' . $wp_customize->theme()->display('Name') . '</strong>' );
|
|
|
|
?></span>
|
2012-05-15 03:03:31 +02:00
|
|
|
</div>
|
2012-05-26 22:47:55 +02:00
|
|
|
<?php if ( ! $cannot_expand ) : ?>
|
2012-05-15 03:03:31 +02:00
|
|
|
<div class="customize-section-content">
|
2012-05-26 22:47:55 +02:00
|
|
|
<?php if ( $screenshot ) : ?>
|
2012-05-15 03:03:31 +02:00
|
|
|
<img class="theme-screenshot" src="<?php echo esc_url( $screenshot ); ?>" />
|
|
|
|
<?php endif; ?>
|
|
|
|
|
2012-05-23 19:56:42 +02:00
|
|
|
<?php if ( $wp_customize->theme()->get('Description') ): ?>
|
|
|
|
<div class="theme-description"><?php echo $wp_customize->theme()->display('Description'); ?></div>
|
2012-05-15 03:03:31 +02:00
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
2012-05-26 22:47:55 +02:00
|
|
|
<?php endif; ?>
|
2012-03-04 03:06:11 +01:00
|
|
|
</div>
|
2012-02-25 05:12:43 +01:00
|
|
|
|
2012-05-15 03:03:31 +02:00
|
|
|
<div id="customize-theme-controls"><ul>
|
|
|
|
<?php
|
2012-05-23 19:56:42 +02:00
|
|
|
foreach ( $wp_customize->sections() as $section )
|
2012-05-15 03:03:31 +02:00
|
|
|
$section->maybe_render();
|
|
|
|
?>
|
|
|
|
</ul></div>
|
|
|
|
</div>
|
2012-02-25 05:12:43 +01:00
|
|
|
|
2012-05-15 03:03:31 +02:00
|
|
|
<div id="customize-footer-actions" class="wp-full-overlay-footer">
|
2012-04-16 16:02:28 +02:00
|
|
|
<a href="#" class="collapse-sidebar button-secondary" title="<?php esc_attr_e('Collapse Sidebar'); ?>">
|
|
|
|
<span class="collapse-sidebar-arrow"></span>
|
2012-06-05 22:57:02 +02:00
|
|
|
<span class="collapse-sidebar-label"><?php _e('Collapse'); ?></span>
|
2012-04-16 16:02:28 +02:00
|
|
|
</a>
|
2012-02-25 05:12:43 +01:00
|
|
|
</div>
|
|
|
|
</form>
|
2012-04-30 17:46:17 +02:00
|
|
|
<div id="customize-preview" class="wp-full-overlay-main"></div>
|
2012-02-25 05:12:43 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
do_action( 'customize_controls_print_footer_scripts' );
|
|
|
|
|
2012-05-18 22:09:53 +02:00
|
|
|
// If the frontend and the admin are served from the same domain, load the
|
|
|
|
// preview over ssl if the customizer is being loaded over ssl. This avoids
|
|
|
|
// insecure content warnings. This is not attempted if the admin and frontend
|
|
|
|
// are on different domains to avoid the case where the frontend doesn't have
|
2012-05-24 21:17:49 +02:00
|
|
|
// ssl certs. Domain mapping plugins can allow other urls in these conditions
|
|
|
|
// using the customize_allowed_urls filter.
|
|
|
|
|
|
|
|
$allowed_urls = array( home_url('/') );
|
2012-05-18 22:09:53 +02:00
|
|
|
$admin_origin = parse_url( admin_url() );
|
2012-05-24 21:17:49 +02:00
|
|
|
$home_origin = parse_url( home_url() );
|
2012-05-24 23:13:21 +02:00
|
|
|
$cross_domain = ( strtolower( $admin_origin[ 'host' ] ) != strtolower( $home_origin[ 'host' ] ) );
|
2012-05-24 21:17:49 +02:00
|
|
|
|
2012-05-24 23:13:21 +02:00
|
|
|
if ( is_ssl() && ! $cross_domain )
|
2012-05-24 21:17:49 +02:00
|
|
|
$allowed_urls[] = home_url( '/', 'https' );
|
2012-05-18 22:09:53 +02:00
|
|
|
|
2012-05-24 21:17:49 +02:00
|
|
|
$allowed_urls = array_unique( apply_filters( 'customize_allowed_urls', $allowed_urls ) );
|
2012-05-18 22:09:53 +02:00
|
|
|
|
2012-05-24 23:13:21 +02:00
|
|
|
$fallback_url = add_query_arg( array(
|
|
|
|
'preview' => 1,
|
|
|
|
'template' => $wp_customize->get_template(),
|
|
|
|
'stylesheet' => $wp_customize->get_stylesheet(),
|
|
|
|
'preview_iframe' => true,
|
|
|
|
'TB_iframe' => 'true'
|
|
|
|
), home_url( '/' ) );
|
|
|
|
|
2012-06-08 21:22:11 +02:00
|
|
|
$login_url = add_query_arg( array(
|
|
|
|
'interim-login' => 1,
|
|
|
|
'customize-login' => 1
|
|
|
|
), wp_login_url() );
|
|
|
|
|
2012-02-25 05:12:43 +01:00
|
|
|
$settings = array(
|
2012-05-16 07:55:54 +02:00
|
|
|
'theme' => array(
|
2012-05-23 19:56:42 +02:00
|
|
|
'stylesheet' => $wp_customize->get_stylesheet(),
|
|
|
|
'active' => $wp_customize->is_theme_active(),
|
2012-05-16 07:55:54 +02:00
|
|
|
),
|
|
|
|
'url' => array(
|
2012-06-08 20:45:12 +02:00
|
|
|
'preview' => esc_url( $url ? $url : home_url( '/' ) ),
|
2012-05-24 23:13:21 +02:00
|
|
|
'parent' => esc_url( admin_url() ),
|
2012-06-12 20:39:16 +02:00
|
|
|
'activated' => admin_url( 'themes.php?activated=true&previewed' ),
|
2012-05-24 23:13:21 +02:00
|
|
|
'ajax' => esc_url( admin_url( 'admin-ajax.php', 'relative' ) ),
|
|
|
|
'allowed' => array_map( 'esc_url', $allowed_urls ),
|
|
|
|
'isCrossDomain' => $cross_domain,
|
|
|
|
'fallback' => $fallback_url,
|
2012-06-08 20:45:12 +02:00
|
|
|
'home' => esc_url( home_url( '/' ) ),
|
2012-06-08 21:22:11 +02:00
|
|
|
'login' => $login_url,
|
2012-05-16 07:55:54 +02:00
|
|
|
),
|
2012-06-06 23:45:17 +02:00
|
|
|
'browser' => array(
|
|
|
|
'mobile' => wp_is_mobile(),
|
|
|
|
'ios' => $is_ios,
|
|
|
|
),
|
2012-03-28 06:14:09 +02:00
|
|
|
'settings' => array(),
|
2012-03-06 23:48:07 +01:00
|
|
|
'controls' => array(),
|
2012-06-26 20:48:18 +02:00
|
|
|
'nonce' => array(
|
|
|
|
'save' => wp_create_nonce( 'save-customize_' . $wp_customize->get_stylesheet() ),
|
|
|
|
'preview' => wp_create_nonce( 'preview-customize_' . $wp_customize->get_stylesheet() )
|
|
|
|
),
|
2012-02-25 05:12:43 +01:00
|
|
|
);
|
|
|
|
|
2012-05-23 19:56:42 +02:00
|
|
|
foreach ( $wp_customize->settings() as $id => $setting ) {
|
2012-03-28 06:14:09 +02:00
|
|
|
$settings['settings'][ $id ] = array(
|
2012-05-16 22:59:02 +02:00
|
|
|
'value' => $setting->js_value(),
|
2012-04-25 18:04:51 +02:00
|
|
|
'transport' => $setting->transport,
|
2012-03-06 23:48:07 +01:00
|
|
|
);
|
2012-03-28 06:14:09 +02:00
|
|
|
}
|
|
|
|
|
2012-05-23 19:56:42 +02:00
|
|
|
foreach ( $wp_customize->controls() as $id => $control ) {
|
2012-03-29 08:35:54 +02:00
|
|
|
$control->to_json();
|
|
|
|
$settings['controls'][ $id ] = $control->json;
|
2012-02-25 05:12:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|
|
|
|
<script type="text/javascript">
|
2012-05-07 22:03:39 +02:00
|
|
|
var _wpCustomizeSettings = <?php echo json_encode( $settings ); ?>;
|
2012-02-25 05:12:43 +01:00
|
|
|
</script>
|
2012-06-06 23:45:17 +02:00
|
|
|
</div>
|
2012-02-25 05:12:43 +01:00
|
|
|
</body>
|
|
|
|
</html>
|