X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/bf5c68485ef07868ad0a91168ecd0092af7661ae..refs/tags/wordpress-3.4:/wp-admin/theme-editor.php diff --git a/wp-admin/theme-editor.php b/wp-admin/theme-editor.php index 7b31745b..8eab0751 100644 --- a/wp-admin/theme-editor.php +++ b/wp-admin/theme-editor.php @@ -42,80 +42,68 @@ get_current_screen()->set_help_sidebar( '

' . __('Support Forums') . '

' ); -wp_reset_vars(array('action', 'redirect', 'profile', 'error', 'warning', 'a', 'file', 'theme', 'dir')); +wp_reset_vars( array( 'action', 'error', 'file', 'theme' ) ); -$themes = get_themes(); +if ( $theme ) + $stylesheet = urldecode( $theme ); +else + $stylesheet = get_stylesheet(); -if (empty($theme)) { - $theme = get_current_theme(); -} else { - $theme = stripslashes($theme); -} +$theme = wp_get_theme( $stylesheet ); -if ( ! isset($themes[$theme]) ) - wp_die(__('The requested theme does not exist.')); +if ( ! $theme->exists() ) + wp_die( __( 'The requested theme does not exist.' ) ); -$allowed_files = array_merge( $themes[$theme]['Stylesheet Files'], $themes[$theme]['Template Files'] ); +if ( $theme->errors() && 'theme_no_stylesheet' == $theme->errors()->get_error_code() ) + wp_die( __( 'The requested theme does not exist.' ) . ' ' . $theme->errors()->get_error_message() ); + +$allowed_files = $theme->get_files( 'php', 1 ); +$has_templates = ! empty( $allowed_files ); +$style_files = $theme->get_files( 'css' ); +$allowed_files['style.css'] = $style_files['style.css']; +$allowed_files += $style_files; if ( empty( $file ) ) { - if ( false !== array_search( $themes[$theme]['Stylesheet Dir'] . '/style.css', $allowed_files ) ) - $file = $themes[$theme]['Stylesheet Dir'] . '/style.css'; - else - $file = $allowed_files[0]; + $relative_file = 'style.css'; + $file = $allowed_files['style.css']; } else { - $file = stripslashes($file); - if ( 'theme' == $dir ) { - $file = dirname(dirname($themes[$theme]['Template Dir'])) . $file ; - } else if ( 'style' == $dir) { - $file = dirname(dirname($themes[$theme]['Stylesheet Dir'])) . $file ; - } + $relative_file = urldecode( stripslashes( $file ) ); + $file = $theme->get_stylesheet_directory() . '/' . $relative_file; } -validate_file_to_edit($file, $allowed_files); -$scrollto = isset($_REQUEST['scrollto']) ? (int) $_REQUEST['scrollto'] : 0; -$file_show = basename( $file ); - -switch($action) { +validate_file_to_edit( $file, $allowed_files ); +$scrollto = isset( $_REQUEST['scrollto'] ) ? (int) $_REQUEST['scrollto'] : 0; +switch( $action ) { case 'update': - - check_admin_referer('edit-theme_' . $file . $theme); - - $newcontent = stripslashes($_POST['newcontent']); - $theme = urlencode($theme); - if (is_writeable($file)) { + check_admin_referer( 'edit-theme_' . $file . $stylesheet ); + $newcontent = stripslashes( $_POST['newcontent'] ); + $location = 'theme-editor.php?file=' . urlencode( $relative_file ) . '&theme=' . urlencode( $stylesheet ) . '&scrollto=' . $scrollto; + if ( is_writeable( $file ) ) { //is_writable() not always reliable, check return value. see comments @ http://uk.php.net/is_writable - $f = fopen($file, 'w+'); - if ($f !== FALSE) { - fwrite($f, $newcontent); - fclose($f); - $location = "theme-editor.php?file=$file&theme=$theme&a=te&scrollto=$scrollto"; - } else { - $location = "theme-editor.php?file=$file&theme=$theme&scrollto=$scrollto"; + $f = fopen( $file, 'w+' ); + if ( $f !== false ) { + fwrite( $f, $newcontent ); + fclose( $f ); + $location .= '&updated=true'; + $theme->cache_delete(); } - } else { - $location = "theme-editor.php?file=$file&theme=$theme&scrollto=$scrollto"; } - - $location = wp_kses_no_null($location); - $strip = array('%0d', '%0a', '%0D', '%0A'); - $location = _deep_replace($strip, $location); - header("Location: $location"); - exit(); - + wp_redirect( $location ); + exit; break; default: - require_once(ABSPATH . 'wp-admin/admin-header.php'); + require_once( ABSPATH . 'wp-admin/admin-header.php' ); - update_recently_edited($file); + update_recently_edited( $file ); - if ( !is_file($file) ) - $error = 1; + if ( ! is_file( $file ) ) + $error = true; $content = ''; - if ( !$error && filesize($file) > 0 ) { + if ( ! $error && filesize( $file ) > 0 ) { $f = fopen($file, 'r'); $content = fread($f, filesize($file)); @@ -134,14 +122,14 @@ default: } ?> - -

+ +

($file_show)" : $file_show; - -$is_child_theme = $themes[$theme]['Template'] != $themes[$theme]['Stylesheet']; +$description = get_file_description( $file ); +$file_show = array_search( $file, array_filter( $allowed_files ) ); +if ( $description != $file_show ) + $description .= ' (' . $file_show . ')'; ?>
@@ -149,19 +137,19 @@ $is_child_theme = $themes[$theme]['Template'] != $themes[$theme]['Stylesheet'];
-

+

display('Name'); if ( $description ) echo ': ' . $description; ?>

@@ -170,78 +158,62 @@ $is_child_theme = $themes[$theme]['Template'] != $themes[$theme]['Stylesheet'];

+errors() ) + echo '

' . __( 'This theme is broken.' ) . ' ' . $theme->errors()->get_error_message() . '

'; +?>
parent() ) : ?>

- -

+ parent() ) : ?> +

get_template() ) ) . '">' . $theme->parent()->display('Name') . '' ); ?>

-

- \n\t

" . _x( 'Styles', 'Theme stylesheets in theme editor' ) . "

\n\t + endforeach; +?> +
- +

' . __('Oops, no such file exists! Double check the name and try again, merci.') . '

'; +else : ?> - -
+ +
- - + +
- +
- +
- + get_stylesheet() == get_template() ) : ?>

@@ -254,9 +226,7 @@ if ($allowed_files) :

' . __('Oops, no such file exists! Double check the name and try again, merci.') . '

'; - } +endif; // $error ?>
@@ -272,4 +242,4 @@ jQuery(document).ready(function($){ break; } -include(ABSPATH . "wp-admin/admin-footer.php"); +include(ABSPATH . 'wp-admin/admin-footer.php' );