]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/theme-editor.php
Wordpress 2.8-scripts
[autoinstalls/wordpress.git] / wp-admin / theme-editor.php
index fa16d7db760bb22acd86198a4b3a6f961300e5c8..db79d786ea1fded62d83b5181d40a98453d97e3d 100644 (file)
@@ -1,4 +1,12 @@
 <?php
+/**
+ * Theme editor administration panel.
+ *
+ * @package WordPress
+ * @subpackage Administration
+ */
+
+/** WordPress Administration Bootstrap */
 require_once('admin.php');
 
 $title = __("Edit Themes");
@@ -69,17 +77,33 @@ default:
        if ( !current_user_can('edit_themes') )
                wp_die('<p>'.__('You do not have sufficient permissions to edit themes for this blog.').'</p>');
 
+       if ( use_codepress() )
+               wp_enqueue_script( 'codepress' );
+
        require_once('admin-header.php');
 
        update_recently_edited($file);
 
-       if (!is_file($real_file))
+       if ( !is_file($real_file) )
                $error = 1;
 
-       if (!$error && filesize($real_file) > 0) {
+       if ( !$error && filesize($real_file) > 0 ) {
                $f = fopen($real_file, 'r');
                $content = fread($f, filesize($real_file));
-               $content = htmlspecialchars($content);
+
+               if ( '.php' == substr( $real_file, strrpos( $real_file, '.' ) ) ) {
+                       $functions = wp_doc_link_parse( $content );
+
+                       $docs_select = '<select name="docs-list" id="docs-list">';
+                       $docs_select .= '<option value="">' . esc_attr__( 'Function Name...' ) . '</option>';
+                       foreach ( $functions as $function ) {
+                               $docs_select .= '<option value="' . esc_attr( urlencode( $function ) ) . '">' . htmlspecialchars( $function ) . '()</option>';
+                       }
+                       $docs_select .= '</select>';
+               }
+
+               $content = htmlspecialchars( $content );
+               $codepress_lang = codepress_get_lang($real_file);
        }
 
        ?>
@@ -88,12 +112,13 @@ default:
 <?php endif;
 
 $description = get_file_description($file);
-$desc_header = ( $description != $file_show ) ? "$description</strong> (%s)" : "%s";
+$desc_header = ( $description != $file_show ) ? "<strong>$description</strong> (%s)" : "%s";
 ?>
 <div class="wrap">
+<?php screen_icon(); ?>
+<h2><?php echo esc_html( $title ); ?></h2>
 <div class="bordertitle">
-       <h2><?php _e('Theme Editor'); ?></h2>
-       <form id="themeselector" name="theme" action="theme-editor.php" method="post">
+       <form id="themeselector" action="theme-editor.php" method="post">
                <strong><label for="theme"><?php _e('Select theme to edit:'); ?> </label></strong>
                <select name="theme" id="theme">
 <?php
@@ -101,17 +126,17 @@ $desc_header = ( $description != $file_show ) ? "$description</strong> (%s)" : "
        $theme_name = $a_theme['Name'];
        if ($theme_name == $theme) $selected = " selected='selected'";
        else $selected = '';
-       $theme_name = attribute_escape($theme_name);
+       $theme_name = esc_attr($theme_name);
        echo "\n\t<option value=\"$theme_name\" $selected>$theme_name</option>";
 }
 ?>
                </select>
-               <input type="submit" name="Submit" value="<?php _e('Select') ?>" class="button" />
+               <input type="submit" name="Submit" value="<?php esc_attr_e('Select') ?>" class="button" />
        </form>
 </div>
 <div class="tablenav">
 <div class="alignleft">
-<big><strong><?php echo sprintf($desc_header, $file_show); ?></big>
+<big><?php echo sprintf($desc_header, $file_show); ?></big>
 </div>
 <br class="clear" />
 </div>
@@ -124,25 +149,47 @@ if ($allowed_files) :
 ?>
        <h4><?php _e('Templates'); ?></h4>
        <ul>
-<?php foreach($themes[$theme]['Template Files'] as $template_file) :
-               $description = get_file_description($template_file);
+<?php
+       $template_mapping = array();
+       $template_dir = $themes[$theme]['Template Dir'];
+       foreach ( $themes[$theme]['Template Files'] as $template_file ) {
+               $description = trim( get_file_description($template_file) );
                $template_show = basename($template_file);
                $filedesc = ( $description != $template_file ) ? "$description <span class='nonessential'>($template_show)</span>" : "$description";
                $filedesc = ( $template_file == $file ) ? "<span class='highlight'>$description <span class='nonessential'>($template_show)</span></span>" : $filedesc;
-               ?>
+
+               // If we have two files of the same name prefer the one in the Template Directory
+               // This means that we display the correct files for child themes which overload Templates as well as Styles
+               if( array_key_exists($description, $template_mapping ) ) {
+                       if ( false !== strpos( $template_file, $template_dir ) )  {
+                               $template_mapping[ $description ] = array( $template_file, $filedesc );
+                       }
+               } else {
+                       $template_mapping[ $description ] = array( $template_file, $filedesc );
+               }
+       }
+       ksort( $template_mapping );
+       while ( list( $template_sorted_key, list( $template_file, $filedesc ) ) = each( $template_mapping ) ) :
+       ?>
                <li><a href="theme-editor.php?file=<?php echo "$template_file"; ?>&amp;theme=<?php echo urlencode($theme) ?>"><?php echo $filedesc ?></a></li>
-<?php endforeach; ?>
+<?php endwhile; ?>
        </ul>
-       <h4><?php echo _c('Styles|Theme stylesheets in theme editor'); ?></h4>
+       <h4><?php /* translators: Theme stylesheets in theme editor */ echo _x('Styles', 'Theme stylesheets in theme editor'); ?></h4>
        <ul>
-<?php foreach($themes[$theme]['Stylesheet Files'] as $style_file) :
-               $description = get_file_description($style_file);
+<?php
+       $template_mapping = array();
+       foreach ( $themes[$theme]['Stylesheet Files'] as $style_file ) {
+               $description = trim( get_file_description($style_file) );
                $style_show = basename($style_file);
                $filedesc = ( $description != $style_file ) ? "$description <span class='nonessential'>($style_show)</span>" : "$description";
                $filedesc = ( $style_file == $file ) ? "<span class='highlight'>$description <span class='nonessential'>($style_show)</span></span>" : $filedesc;
+               $template_mapping[ $description ] = array( $style_file, $filedesc );
+       }
+       ksort( $template_mapping );
+       while ( list( $template_sorted_key, list( $style_file, $filedesc ) ) = each( $template_mapping ) ) :
                ?>
                <li><a href="theme-editor.php?file=<?php echo "$style_file"; ?>&amp;theme=<?php echo urlencode($theme) ?>"><?php echo $filedesc ?></a></li>
-<?php endforeach; ?>
+<?php endwhile; ?>
        </ul>
 <?php endif; ?>
 </div>
@@ -151,17 +198,24 @@ if ($allowed_files) :
        ?>
        <form name="template" id="template" action="theme-editor.php" method="post">
        <?php wp_nonce_field('edit-theme_' . $file . $theme) ?>
-                <div><textarea cols="70" rows="25" name="newcontent" id="newcontent" tabindex="1"><?php echo $content ?></textarea>
+                <div><textarea cols="70" rows="25" name="newcontent" id="newcontent" tabindex="1" class="codepress <?php echo $codepress_lang ?>"><?php echo $content ?></textarea>
                 <input type="hidden" name="action" value="update" />
-                <input type="hidden" name="file" value="<?php echo $file ?>" />
-                <input type="hidden" name="theme" value="<?php echo $theme ?>" />
+                <input type="hidden" name="file" value="<?php echo esc_attr($file) ?>" />
+                <input type="hidden" name="theme" value="<?php echo esc_attr($theme) ?>" />
                 </div>
+       <?php if ( isset($functions ) && count($functions) ) { ?>
+               <div id="documentation">
+               <label for="docs-list"><?php _e('Documentation:') ?></label>
+               <?php echo $docs_select; ?>
+               <input type="button" class="button" value=" <?php esc_attr_e( 'Lookup' ); ?> " onclick="if ( '' != jQuery('#docs-list').val() ) { window.open( 'http://api.wordpress.org/core/handbook/1.0/?function=' + escape( jQuery( '#docs-list' ).val() ) + '&locale=<?php echo urlencode( get_locale() ) ?>&version=<?php echo urlencode( $wp_version ) ?>&redirect=true'); }" />
+               </div>
+       <?php } ?>
 
                <div>
 <?php if ( is_writeable($real_file) ) : ?>
                        <p class="submit">
 <?php
-       echo "<input type='submit' name='submit' value='" . __('Update File') . "' tabindex='2' />";
+       echo "<input type='submit' name='submit' class='button-primary' value='" . esc_attr__('Update File') . "' tabindex='2' />";
 ?>
 </p>
 <?php else : ?>