]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/edit-tag-form.php
Wordpress 3.1
[autoinstalls/wordpress.git] / wp-admin / edit-tag-form.php
index efef02bcabbb03048c5efb96c1badf29cee120f5..daac92371da4336c25762006c0714b415ae7a396 100644 (file)
@@ -6,17 +6,29 @@
  * @subpackage Administration
  */
 
+// don't load directly
+if ( !defined('ABSPATH') )
+       die('-1');
+
 if ( empty($tag_ID) ) { ?>
-       <div id="message" class="updated fade"><p><strong><?php _e('A tag was not selected for editing.'); ?></strong></p></div>
+       <div id="message" class="updated"><p><strong><?php _e( 'You did not select an item for editing.' ); ?></strong></p></div>
 <?php
        return;
 }
 
-do_action('edit_tag_form_pre', $tag); ?>
+// Back compat hooks
+if ( 'category' == $taxonomy )
+       do_action('edit_category_form_pre', $tag );
+elseif ( 'link_category' == $taxonomy )
+       do_action('edit_link_category_form_pre', $tag );
+else
+       do_action('edit_tag_form_pre', $tag);
+
+do_action($taxonomy . '_pre_edit_form', $tag, $taxonomy);  ?>
 
 <div class="wrap">
 <?php screen_icon(); ?>
-<h2><?php _e('Edit Tag'); ?></h2>
+<h2><?php echo $tax->labels->edit_item; ?></h2>
 <div id="ajax-response"></div>
 <form name="edittag" id="edittag" method="post" action="edit-tags.php" class="validate">
 <input type="hidden" name="action" value="editedtag" />
@@ -25,23 +37,57 @@ do_action('edit_tag_form_pre', $tag); ?>
 <?php wp_original_referer_field(true, 'previous'); wp_nonce_field('update-tag_' . $tag_ID); ?>
        <table class="form-table">
                <tr class="form-field form-required">
-                       <th scope="row" valign="top"><label for="name"><?php _e('Tag name') ?></label></th>
+                       <th scope="row" valign="top"><label for="name"><?php _ex('Name', 'Taxonomy Name'); ?></label></th>
                        <td><input name="name" id="name" type="text" value="<?php if ( isset( $tag->name ) ) echo esc_attr($tag->name); ?>" size="40" aria-required="true" />
-            <p class="description"><?php _e('The name is how the tag appears on your site.'); ?></p></td>
+                       <p class="description"><?php _e('The name is how it appears on your site.'); ?></p></td>
                </tr>
+<?php if ( !global_terms_enabled() ) { ?>
                <tr class="form-field">
-                       <th scope="row" valign="top"><label for="slug"><?php _e('Tag slug') ?></label></th>
+                       <th scope="row" valign="top"><label for="slug"><?php _ex('Slug', 'Taxonomy Slug'); ?></label></th>
                        <td><input name="slug" id="slug" type="text" value="<?php if ( isset( $tag->slug ) ) echo esc_attr(apply_filters('editable_slug', $tag->slug)); ?>" size="40" />
-            <p class="description"><?php _e('The &#8220;slug&#8221; is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'); ?></p></td>
+                       <p class="description"><?php _e('The &#8220;slug&#8221; is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'); ?></p></td>
+               </tr>
+<?php } ?>
+<?php if ( is_taxonomy_hierarchical($taxonomy) ) : ?>
+               <tr class="form-field">
+                       <th scope="row" valign="top"><label for="parent"><?php _ex('Parent', 'Taxonomy Parent'); ?></label></th>
+                       <td>
+                               <?php wp_dropdown_categories(array('hide_empty' => 0, 'hide_if_empty' => false, 'name' => 'parent', 'orderby' => 'name', 'taxonomy' => $taxonomy, 'selected' => $tag->parent, 'exclude_tree' => $tag->term_id, 'hierarchical' => true, 'show_option_none' => __('None'))); ?><br />
+                               <?php if ( 'category' == $taxonomy ) : ?>
+                               <span class="description"><?php _e('Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.'); ?></span>
+                               <?php endif; ?>
+                       </td>
                </tr>
+<?php endif; // is_taxonomy_hierarchical() ?>
                <tr class="form-field">
-                       <th scope="row" valign="top"><label for="description"><?php _e('Description') ?></label></th>
-                       <td><textarea name="description" id="description" rows="5" cols="50" style="width: 97%;"><?php echo esc_html($tag->description); ?></textarea><br />
-            <span class="description"><?php _e('The description is not prominent by default, however some themes may show it.'); ?></span></td>
+                       <th scope="row" valign="top"><label for="description"><?php _ex('Description', 'Taxonomy Description'); ?></label></th>
+                       <td><textarea name="description" id="description" rows="5" cols="50" style="width: 97%;"><?php echo $tag->description; // textarea_escaped ?></textarea><br />
+                       <span class="description"><?php _e('The description is not prominent by default, however some themes may show it.'); ?></span></td>
                </tr>
-               <?php do_action('edit_tag_form_fields', $tag); ?>
+               <?php
+               // Back compat hooks
+               if ( 'category' == $taxonomy )
+                       do_action('edit_category_form_fields', $tag);
+               if ( 'link_category' == $taxonomy )
+                       do_action('edit_link_category_form_fields', $tag);
+               else
+                       do_action('edit_tag_form_fields', $tag);
+
+               do_action($taxonomy . '_edit_form_fields', $tag, $taxonomy);
+               ?>
        </table>
-<p class="submit"><input type="submit" class="button-primary" name="submit" value="<?php esc_attr_e('Update Tag'); ?>" /></p>
-<?php do_action('edit_tag_form', $tag); ?>
+<?php
+// Back compat hooks
+if ( 'category' == $taxonomy )
+       do_action('edit_category_form', $tag);
+if ( 'link_category' == $taxonomy )
+       do_action('edit_link_category_form', $tag);
+else
+       do_action('edit_tag_form', $tag);
+
+do_action($taxonomy . '_edit_form', $tag, $taxonomy);
+
+submit_button( __('Update') );
+?>
 </form>
 </div>