]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/edit-tag-form.php
WordPress 3.8.1
[autoinstalls/wordpress.git] / wp-admin / edit-tag-form.php
1 <?php
2 /**
3  * Edit tag form for inclusion in administration panels.
4  *
5  * @package WordPress
6  * @subpackage Administration
7  */
8
9 // don't load directly
10 if ( !defined('ABSPATH') )
11         die('-1');
12
13 if ( empty($tag_ID) ) { ?>
14         <div id="message" class="updated"><p><strong><?php _e( 'You did not select an item for editing.' ); ?></strong></p></div>
15 <?php
16         return;
17 }
18
19 // Back compat hooks
20 if ( 'category' == $taxonomy ) {
21         do_action( 'edit_category_form_pre', $tag );
22 } elseif ( 'link_category' == $taxonomy ) {
23         do_action( 'edit_link_category_form_pre', $tag );
24 } else {
25         do_action( 'edit_tag_form_pre', $tag );
26 }
27 do_action( "{$taxonomy}_pre_edit_form", $tag, $taxonomy ); ?>
28
29 <div class="wrap">
30 <h2><?php echo $tax->labels->edit_item; ?></h2>
31 <div id="ajax-response"></div>
32 <form name="edittag" id="edittag" method="post" action="edit-tags.php" class="validate"<?php do_action( $taxonomy . '_term_edit_form_tag' ); ?>>
33 <input type="hidden" name="action" value="editedtag" />
34 <input type="hidden" name="tag_ID" value="<?php echo esc_attr($tag->term_id) ?>" />
35 <input type="hidden" name="taxonomy" value="<?php echo esc_attr($taxonomy) ?>" />
36 <?php wp_original_referer_field(true, 'previous'); wp_nonce_field('update-tag_' . $tag_ID); ?>
37         <table class="form-table">
38                 <tr class="form-field form-required">
39                         <th scope="row" valign="top"><label for="name"><?php _ex('Name', 'Taxonomy Name'); ?></label></th>
40                         <td><input name="name" id="name" type="text" value="<?php if ( isset( $tag->name ) ) echo esc_attr($tag->name); ?>" size="40" aria-required="true" />
41                         <p class="description"><?php _e('The name is how it appears on your site.'); ?></p></td>
42                 </tr>
43 <?php if ( !global_terms_enabled() ) { ?>
44                 <tr class="form-field">
45                         <th scope="row" valign="top"><label for="slug"><?php _ex('Slug', 'Taxonomy Slug'); ?></label></th>
46                         <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" />
47                         <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>
48                 </tr>
49 <?php } ?>
50 <?php if ( is_taxonomy_hierarchical($taxonomy) ) : ?>
51                 <tr class="form-field">
52                         <th scope="row" valign="top"><label for="parent"><?php _ex('Parent', 'Taxonomy Parent'); ?></label></th>
53                         <td>
54                                 <?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'))); ?>
55                                 <?php if ( 'category' == $taxonomy ) : ?>
56                                 <p 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.'); ?></p>
57                                 <?php endif; ?>
58                         </td>
59                 </tr>
60 <?php endif; // is_taxonomy_hierarchical() ?>
61                 <tr class="form-field">
62                         <th scope="row" valign="top"><label for="description"><?php _ex('Description', 'Taxonomy Description'); ?></label></th>
63                         <td><textarea name="description" id="description" rows="5" cols="50" class="large-text"><?php echo $tag->description; // textarea_escaped ?></textarea><br />
64                         <span class="description"><?php _e('The description is not prominent by default; however, some themes may show it.'); ?></span></td>
65                 </tr>
66                 <?php
67                 // Back compat hooks
68                 if ( 'category' == $taxonomy )
69                         do_action('edit_category_form_fields', $tag);
70                 elseif ( 'link_category' == $taxonomy )
71                         do_action('edit_link_category_form_fields', $tag);
72                 else
73                         do_action('edit_tag_form_fields', $tag);
74
75                 do_action($taxonomy . '_edit_form_fields', $tag, $taxonomy);
76                 ?>
77         </table>
78 <?php
79 // Back compat hooks
80 if ( 'category' == $taxonomy )
81         do_action('edit_category_form', $tag);
82 elseif ( 'link_category' == $taxonomy )
83         do_action('edit_link_category_form', $tag);
84 else
85         do_action('edit_tag_form', $tag);
86
87 do_action($taxonomy . '_edit_form', $tag, $taxonomy);
88
89 submit_button( __('Update') );
90 ?>
91 </form>
92 </div>
93 <script type="text/javascript">
94 try{document.forms.edittag.name.focus();}catch(e){}
95 </script>