summaryrefslogtreecommitdiffstats
path: root/wp-admin/edit-category-form.php
diff options
context:
space:
mode:
Diffstat (limited to 'wp-admin/edit-category-form.php')
-rw-r--r--wp-admin/edit-category-form.php46
1 files changed, 46 insertions, 0 deletions
diff --git a/wp-admin/edit-category-form.php b/wp-admin/edit-category-form.php
new file mode 100644
index 0000000..9b700af
--- /dev/null
+++ b/wp-admin/edit-category-form.php
@@ -0,0 +1,46 @@
+<?php
+if ( ! empty($cat_ID) ) {
+ $heading = __('Edit Category');
+ $submit_text = __('Edit Category &raquo;');
+ $form = '<form name="editcat" id="editcat" method="post" action="categories.php">';
+ $action = 'editedcat';
+ $nonce_action = 'update-category_' . $cat_ID;
+} else {
+ $heading = __('Add Category');
+ $submit_text = __('Add Category &raquo;');
+ $form = '<form name="addcat" id="addcat" method="post" action="categories.php">';
+ $action = 'addcat';
+ $nonce_action = 'add-category';
+}
+?>
+
+<div class="wrap">
+<h2><?php echo $heading ?></h2>
+<?php echo $form ?>
+<input type="hidden" name="action" value="<?php echo $action ?>" />
+<input type="hidden" name="cat_ID" value="<?php echo $category->cat_ID ?>" />
+<?php wp_nonce_field($nonce_action); ?>
+<?php autocomplete_css(); ?>
+ <table class="editform" width="100%" cellspacing="2" cellpadding="5">
+ <tr>
+ <th width="33%" scope="row" valign="top"><label for="cat_name"><?php _e('Category name:') ?></label></th>
+ <td width="67%"><input type="text" id="cat_name" name="cat_name" value="<?php echo wp_specialchars($category->cat_name); ?>" size="40" /><div id="searchresults" class="autocomplete"></div></td>
+ </tr>
+ <tr>
+ <th scope="row" valign="top"><label for="category_parent"><?php _e('Category parent:') ?></label></th>
+ <td>
+ <select name='category_parent' id='category_parent'>
+ <option value='0' <?php if (!$category->category_parent) echo " selected='selected'"; ?>><?php _e('None') ?></option>
+ <?php wp_dropdown_cats($category->cat_ID, $category->category_parent); ?>
+ </select></td>
+ </tr>
+ <tr>
+ <th scope="row" valign="top"><label for="category_description"><?php _e('Description: (optional)') ?></label></th>
+ <td><textarea name="category_description" id="category_description" rows="5" cols="50" style="width: 97%;"><?php echo wp_specialchars($category->category_description, 1); ?></textarea></td>
+ </tr>
+ </table>
+<?php autocomplete_textbox( "wpmu-edit.php?action=searchcategories&search=", "cat_name", "searchresults" ); ?>
+<p class="submit"><input type="submit" name="submit" value="<?php echo $submit_text ?>" /></p>
+<div id="ajax-response"></div>
+</form>
+</div>