2007-06-05 05:08:27 +00:00
<? php
2008-08-16 07:27:34 +00:00
/**
* Edit link category form for inclusion in administration panels.
*
* @package WordPress
* @subpackage Administration
*/
2008-09-21 20:41:25 +00:00
/**
* @var object
*/
if ( ! isset ( $category ) )
$category = ( object ) array ();
2007-06-05 05:08:27 +00:00
if ( ! empty ( $cat_ID ) ) {
2008-08-16 07:27:34 +00:00
/**
* @var string
*/
2008-11-26 23:35:23 +00:00
$heading = '<h2>' . __ ( 'Edit Link Category' ) . '</h2>' ;
2008-12-09 09:07:36 +00:00
$submit_text = __ ( 'Update Category' );
2008-03-18 19:20:18 +00:00
$form = '<form name="editcat" id="editcat" method="post" action="link-category.php" class="validate">' ;
2007-06-05 05:08:27 +00:00
$action = 'editedcat' ;
$nonce_action = 'update-link-category_' . $cat_ID ;
do_action ( 'edit_link_category_form_pre' , $category );
} else {
2008-11-26 23:35:23 +00:00
$heading = '<h2>' . __ ( 'Add Link Category' ) . '</h2>' ;
2008-02-20 19:30:55 +00:00
$submit_text = __ ( 'Add Category' );
2008-03-18 19:20:18 +00:00
$form = '<form name="addcat" id="addcat" class="add:the-list: validate" method="post" action="link-category.php">' ;
2007-06-05 05:08:27 +00:00
$action = 'addcat' ;
$nonce_action = 'add-link-category' ;
do_action ( 'add_link_category_form_pre' , $category );
}
2008-09-21 20:41:25 +00:00
/**
* @ignore
* @since 2.7
* @internal Used to prevent errors in page when no category is being edited.
*
* @param object $category
*/
function _fill_empty_link_category ( & $category ) {
if ( ! isset ( $category -> name ) )
$category -> name = '' ;
if ( ! isset ( $category -> slug ) )
$category -> slug = '' ;
if ( ! isset ( $category -> description ) )
$category -> description = '' ;
}
_fill_empty_link_category ( $category );
2007-06-05 05:08:27 +00:00
?>
<div class="wrap">
2008-11-26 23:35:23 +00:00
<?php screen_icon(); ?>
2008-09-29 22:06:23 +00:00
<?php echo $heading ?>
2007-06-05 05:08:27 +00:00
<div id="ajax-response"></div>
<?php echo $form ?>
<input type="hidden" name="action" value="<?php echo $action ?>" />
<input type="hidden" name="cat_ID" value="<?php echo $category->term_id ?>" />
2008-03-26 22:21:01 +00:00
<?php wp_original_referer_field(true, 'previous'); wp_nonce_field($nonce_action); ?>
2008-02-24 04:33:10 +00:00
<table class="form-table">
2007-11-01 06:23:16 +00:00
<tr class="form-field form-required">
2008-02-20 20:30:39 +00:00
<th scope="row" valign="top"><label for="name"><?php _e('Category name') ?></label></th>
2008-05-04 21:28:12 +00:00
<td><input name="name" id="name" type="text" value="<?php echo $category->name; ?>" size="40" aria-required="true" /></td>
2007-06-05 05:08:27 +00:00
</tr>
2007-11-01 06:23:16 +00:00
<tr class="form-field">
2008-02-20 20:30:39 +00:00
<th scope="row" valign="top"><label for="slug"><?php _e('Category slug') ?></label></th>
2008-11-17 20:22:40 +00:00
<td><input name="slug" id="slug" type="text" value="<?php echo attribute_escape(apply_filters('editable_slug', $category->slug)); ?>" size="40" /><br />
2008-03-07 10:05:54 +00:00
<?php _e('The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'); ?></td>
2007-06-05 05:08:27 +00:00
</tr>
2007-11-01 06:23:16 +00:00
<tr class="form-field">
2008-02-20 20:30:39 +00:00
<th scope="row" valign="top"><label for="description"><?php _e('Description (optional)') ?></label></th>
2007-06-05 05:08:27 +00:00
<td><textarea name="description" id="description" rows="5" cols="50" style="width: 97%;"><?php echo $category->description; ?></textarea></td>
</tr>
</table>
2008-12-09 09:07:36 +00:00
<p class="submit"><input type="submit" class="button-primary" name="submit" value="<?php echo $submit_text ?>" /></p>
2007-06-05 05:08:27 +00:00
<?php do_action('edit_link_category_form', $category); ?>
</form>
</div>