root/tags/1.5.1/wp-admin/edit-tag-form.php

Revision 1218, 1.8 kB (checked in by donncha, 9 months ago)

Merged with WordPress? 2.5, unstable, only for testing

Line 
1 <?php
2 if ( ! empty($tag_ID) ) {
3     $heading = __('Edit Tag');
4     $submit_text = __('Edit Tag');
5     $form = '<form name="edittag" id="edittag" method="post" action="edit-tags.php" class="validate">';
6     $action = 'editedtag';
7     $nonce_action = 'update-tag_' . $tag_ID;
8     do_action('edit_tag_form_pre', $tag);
9 } else {
10     $heading = __('Add Tag');
11     $submit_text = __('Add Tag');
12     $form = '<form name="addtag" id="addtag" method="post" action="edit-tags.php" class="add:the-list: validate">';
13     $action = 'addtag';
14     $nonce_action = 'add-tag';
15     do_action('add_tag_form_pre', $tag);
16 }
17 ?>
18
19 <div class="wrap">
20 <h2><?php echo $heading ?></h2>
21 <div id="ajax-response"></div>
22 <?php echo $form ?>
23 <input type="hidden" name="action" value="<?php echo $action ?>" />
24 <input type="hidden" name="tag_ID" value="<?php echo $tag->term_id ?>" />
25 <?php wp_original_referer_field(true, 'previous'); wp_nonce_field($nonce_action); ?>
26     <table class="form-table">
27         <tr class="form-field form-required">
28             <th scope="row" valign="top"><label for="name"><?php _e('Tag name') ?></label></th>
29             <td><input name="name" id="name" type="text" value="<?php echo attribute_escape($tag->name); ?>" size="40" />
30             <p><?php _e('The name is how the tag appears on your site.'); ?></p></td>
31         </tr>
32         <tr class="form-field">
33             <th scope="row" valign="top"><label for="slug"><?php _e('Tag slug') ?></label></th>
34             <td><input name="slug" id="slug" type="text" value="<?php echo attribute_escape($tag->slug); ?>" size="40" />
35             <p><?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>
36         </tr>
37     </table>
38 <p class="submit"><input type="submit" class="button" name="submit" value="<?php echo $submit_text ?>" /></p>
39 <?php do_action('edit_tag_form', $tag); ?>
40 </form>
41 </div>
42
Note: See TracBrowser for help on using the browser.