summaryrefslogtreecommitdiffstats
path: root/wp-admin/edit-tag-form.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2008-03-19 12:35:25 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2008-03-19 12:35:25 +0000
commit50b00028bd207f461d6ed02f7868eccb5c6b8fe1 (patch)
tree003311f94f815dddbc39f91ba25b959f6ef18524 /wp-admin/edit-tag-form.php
parent63f0f49bde74f02cdfc79140a7f101173f33322b (diff)
downloadwordpress-mu-50b00028bd207f461d6ed02f7868eccb5c6b8fe1.tar.gz
wordpress-mu-50b00028bd207f461d6ed02f7868eccb5c6b8fe1.tar.xz
wordpress-mu-50b00028bd207f461d6ed02f7868eccb5c6b8fe1.zip
Add and delete WP 2.5 files. *DON'T SVN UPDATE!*
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1214 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-admin/edit-tag-form.php')
-rw-r--r--wp-admin/edit-tag-form.php41
1 files changed, 41 insertions, 0 deletions
diff --git a/wp-admin/edit-tag-form.php b/wp-admin/edit-tag-form.php
new file mode 100644
index 0000000..c3a6665
--- /dev/null
+++ b/wp-admin/edit-tag-form.php
@@ -0,0 +1,41 @@
+<?php
+if ( ! empty($tag_ID) ) {
+ $heading = __('Edit Tag');
+ $submit_text = __('Edit Tag');
+ $form = '<form name="edittag" id="edittag" method="post" action="edit-tags.php">';
+ $action = 'editedtag';
+ $nonce_action = 'update-tag_' . $tag_ID;
+ do_action('edit_tag_form_pre', $tag);
+} else {
+ $heading = __('Add Tag');
+ $submit_text = __('Add Tag');
+ $form = '<form name="addtag" id="addtag" method="post" action="edit-tags.php" class="add:the-list:">';
+ $action = 'addtag';
+ $nonce_action = 'add-tag';
+ do_action('add_tag_form_pre', $tag);
+}
+?>
+
+<div class="wrap">
+<h2><?php echo $heading ?></h2>
+<div id="ajax-response"></div>
+<?php echo $form ?>
+<input type="hidden" name="action" value="<?php echo $action ?>" />
+<input type="hidden" name="tag_ID" value="<?php echo $tag->term_id ?>" />
+<?php wp_nonce_field($nonce_action); ?>
+ <table class="form-table">
+ <tr class="form-field form-required">
+ <th scope="row" valign="top"><label for="name"><?php _e('Tag name') ?></label></th>
+ <td><input name="name" id="name" type="text" value="<?php echo attribute_escape($tag->name); ?>" size="40" />
+ <p><?php _e('The name is how the tag appears on your site.'); ?></p></td>
+ </tr>
+ <tr class="form-field">
+ <th scope="row" valign="top"><label for="slug"><?php _e('Tag slug') ?></label></th>
+ <td><input name="slug" id="slug" type="text" value="<?php echo attribute_escape($tag->slug); ?>" size="40" />
+ <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>
+ </tr>
+ </table>
+<p class="submit"><input type="submit" class="button" name="submit" value="<?php echo $submit_text ?>" /></p>
+<?php do_action('edit_tag_form', $tag); ?>
+</form>
+</div>