2007-06-05 05:08:27 +00:00
<? php
2008-08-16 07:27:34 +00:00
/**
* Edit Link Categories Administration Panel.
*
* @package WordPress
* @subpackage Administration
*/
/** WordPress Administration Bootstrap */
2010-04-18 06:14:45 +00:00
require_once ( './admin.php' );
2007-06-05 05:08:27 +00:00
2008-08-20 04:06:36 +00:00
// Handle bulk actions
if ( isset ( $_GET [ 'action' ]) && isset ( $_GET [ 'delete' ]) ) {
2008-02-14 09:34:19 +00:00
check_admin_referer ( 'bulk-link-categories' );
2008-09-29 09:26:21 +00:00
$doaction = $_GET [ 'action' ] ? $_GET [ 'action' ] : $_GET [ 'action2' ];
2008-02-14 09:34:19 +00:00
if ( ! current_user_can ( 'manage_categories' ) )
wp_die ( __ ( 'Cheatin’ uh?' ));
2008-09-29 09:26:21 +00:00
if ( 'delete' == $doaction ) {
2009-12-03 01:43:49 +00:00
$cats = ( array ) $_GET [ 'delete' ];
$default_cat_id = get_option ( 'default_link_category' );
2008-08-20 04:06:36 +00:00
2009-12-03 01:43:49 +00:00
foreach ( $cats as $cat_ID ) {
$cat_ID = ( int ) $cat_ID ;
2008-08-20 04:06:36 +00:00
// Don't delete the default cats.
if ( $cat_ID == $default_cat_id )
2009-12-03 01:43:49 +00:00
wp_die ( sprintf ( __ ( "Can’t delete the <strong>%s</strong> category: this is the default one" ), get_term_field ( 'name' , $cat_ID , 'link_category' ) ) );
2008-08-20 04:06:36 +00:00
wp_delete_term ( $cat_ID , 'link_category' , array ( 'default' => $default_cat_id ));
}
$location = 'edit-link-categories.php' ;
if ( $referer = wp_get_referer () ) {
if ( false !== strpos ( $referer , 'edit-link-categories.php' ) )
$location = $referer ;
}
$location = add_query_arg ( 'message' , 6 , $location );
wp_redirect ( $location );
exit ();
2008-02-14 09:34:19 +00:00
}
2010-03-19 21:29:21 +00:00
} elseif ( ! empty ( $_GET [ '_wp_http_referer' ]) ) {
2008-09-29 09:26:21 +00:00
wp_redirect ( remove_query_arg ( array ( '_wp_http_referer' , '_wpnonce' ), stripslashes ( $_SERVER [ 'REQUEST_URI' ]) ) );
2008-03-02 20:17:30 +00:00
exit ;
2008-02-14 09:34:19 +00:00
}
2008-01-04 20:18:55 +00:00
$title = __ ( 'Link Categories' );
2007-06-05 05:08:27 +00:00
2008-11-12 09:35:50 +00:00
wp_enqueue_script ( 'admin-categories' );
2008-10-05 04:43:52 +00:00
if ( current_user_can ( 'manage_categories' ) )
wp_enqueue_script ( 'inline-edit-tax' );
2008-02-14 09:34:19 +00:00
2007-06-05 05:08:27 +00:00
require_once ( 'admin-header.php' );
$messages [ 1 ] = __ ( 'Category added.' );
$messages [ 2 ] = __ ( 'Category deleted.' );
$messages [ 3 ] = __ ( 'Category updated.' );
$messages [ 4 ] = __ ( 'Category not added.' );
$messages [ 5 ] = __ ( 'Category not updated.' );
2008-09-28 04:11:27 +00:00
$messages [ 6 ] = __ ( 'Categories deleted.' ); ?>
2007-06-05 05:08:27 +00:00
2008-11-05 20:30:26 +00:00
<div class="wrap nosubsub">
2008-11-26 13:51:25 +00:00
<?php screen_icon(); ?>
2009-05-18 15:11:07 +00:00
<h2><?php echo esc_html( $title );
2008-12-04 12:01:02 +00:00
if ( isset($_GET['s']) && $_GET['s'] )
2009-05-18 15:11:07 +00:00
printf( '<span class="subtitle">' . __('Search results for “%s”') . '</span>', esc_html( stripslashes($_GET['s']) ) ); ?>
2008-12-04 12:01:02 +00:00
</h2>
2008-11-05 20:30:26 +00:00
2008-09-28 04:11:27 +00:00
<?php if ( isset($_GET['message']) && ( $msg = (int) $_GET['message'] ) ) : ?>
2009-12-26 09:00:58 +00:00
<div id="message" class="updated"><p><?php echo $messages[$msg]; ?></p></div>
2008-09-28 04:11:27 +00:00
<?php $_SERVER['REQUEST_URI'] = remove_query_arg(array('message'), $_SERVER['REQUEST_URI']);
endif; ?>
2008-02-13 07:32:50 +00:00
2008-10-27 01:22:24 +00:00
<form class="search-form" action="" method="get">
2008-10-03 00:13:12 +00:00
<p class="search-box">
2009-05-12 22:40:56 +00:00
<label class="screen-reader-text" for="link-category-search-input"><?php _e( 'Search Categories' ); ?>:</label>
2009-04-16 04:41:05 +00:00
<input type="text" id="link-category-search-input" name="s" value="<?php _admin_search_query(); ?>" />
2009-05-05 19:43:53 +00:00
<input type="submit" value="<?php esc_attr_e( 'Search Categories' ); ?>" class="button" />
2008-10-02 18:03:45 +00:00
</p>
2008-10-03 00:13:12 +00:00
</form>
<br class="clear" />
2008-10-02 18:03:45 +00:00
2008-10-26 09:08:52 +00:00
<div id="col-container">
<div id="col-right">
<div class="col-wrap">
2008-10-03 00:13:12 +00:00
<form id="posts-filter" action="" method="get">
2008-02-13 07:32:50 +00:00
<div class="tablenav">
<?php
2008-09-21 20:41:25 +00:00
$pagenum = isset( $_GET['pagenum'] ) ? absint( $_GET['pagenum'] ) : 0;
2008-02-13 07:32:50 +00:00
if ( empty($pagenum) )
$pagenum = 1;
2010-01-15 23:49:09 +00:00
if ( ! isset( $catsperpage ) || $catsperpage < 0 )
2008-02-13 07:33:56 +00:00
$catsperpage = 20;
2008-02-13 07:32:50 +00:00
$page_links = paginate_links( array(
'base' => add_query_arg( 'pagenum', '%#%' ),
'format' => '',
2008-11-27 00:28:24 +00:00
'prev_text' => __('«'),
'next_text' => __('»'),
2008-02-13 07:32:50 +00:00
'total' => ceil(wp_count_terms('link_category') / $catsperpage),
'current' => $pagenum
));
if ( $page_links )
echo "<div class='tablenav-pages'>$page_links</div>";
?>
2008-10-24 18:25:46 +00:00
<div class="alignleft actions">
2008-08-20 04:06:36 +00:00
<select name="action">
2008-12-04 21:57:56 +00:00
<option value="" selected="selected"><?php _e('Bulk Actions'); ?></option>
2008-08-20 04:06:36 +00:00
<option value="delete"><?php _e('Delete'); ?></option>
</select>
2009-05-05 19:43:53 +00:00
<input type="submit" value="<?php esc_attr_e('Apply'); ?>" name="doaction" id="doaction" class="button-secondary action" />
2008-02-14 09:34:19 +00:00
<?php wp_nonce_field('bulk-link-categories'); ?>
2008-02-13 07:32:50 +00:00
</div>
2008-03-14 23:58:31 +00:00
<br class="clear" />
2008-02-13 07:32:50 +00:00
</div>
2008-10-03 00:13:12 +00:00
<div class="clear"></div>
2008-02-13 07:32:50 +00:00
2008-11-17 18:01:00 +00:00
<table class="widefat fixed" cellspacing="0">
2007-06-05 05:08:27 +00:00
<thead>
<tr>
2008-11-17 19:16:26 +00:00
<?php print_column_headers('edit-link-categories'); ?>
2007-06-05 05:08:27 +00:00
</tr>
</thead>
2008-09-29 09:26:21 +00:00
<tfoot>
<tr>
2008-11-17 19:16:26 +00:00
<?php print_column_headers('edit-link-categories', false); ?>
2008-09-29 09:26:21 +00:00
</tr>
</tfoot>
2007-10-31 03:53:32 +00:00
<tbody id="the-list" class="list:link-cat">
2007-06-05 05:08:27 +00:00
<?php
2008-02-13 07:32:50 +00:00
$start = ($pagenum - 1) * $catsperpage;
$args = array('offset' => $start, 'number' => $catsperpage, 'hide_empty' => 0);
if ( !empty( $_GET['s'] ) )
$args['search'] = $_GET['s'];
$categories = get_terms( 'link_category', $args );
2007-06-05 05:08:27 +00:00
if ( $categories ) {
$output = '';
foreach ( $categories as $category ) {
$output .= link_cat_row($category);
}
echo $output;
unset($category);
}
?>
</tbody>
</table>
2008-09-18 05:41:45 +00:00
2008-02-13 07:32:50 +00:00
<div class="tablenav">
<?php
if ( $page_links )
echo "<div class='tablenav-pages'>$page_links</div>";
?>
2008-09-29 09:26:21 +00:00
2008-10-24 18:25:46 +00:00
<div class="alignleft actions">
2008-09-29 09:26:21 +00:00
<select name="action2">
2008-12-04 21:57:56 +00:00
<option value="" selected="selected"><?php _e('Bulk Actions'); ?></option>
2008-09-29 09:26:21 +00:00
<option value="delete"><?php _e('Delete'); ?></option>
</select>
2009-05-05 19:43:53 +00:00
<input type="submit" value="<?php esc_attr_e('Apply'); ?>" name="doaction2" id="doaction2" class="button-secondary action" />
2008-09-29 09:26:21 +00:00
</div>
2008-03-14 23:58:31 +00:00
<br class="clear" />
2008-02-13 07:32:50 +00:00
</div>
2008-03-23 06:41:43 +00:00
<br class="clear" />
2008-09-29 09:26:21 +00:00
</form>
2008-12-03 08:50:50 +00:00
<div class="form-wrap">
<p><?php printf(__('<strong>Note:</strong><br />Deleting a category does not delete the links in that category. Instead, links that were only assigned to the deleted category are set to the category <strong>%s</strong>.'), get_term_field('name', get_option('default_link_category'), 'link_category')) ?></p>
</div>
2008-10-26 09:08:52 +00:00
</div>
</div><!-- /col-right -->
<div id="col-left">
<div class="col-wrap">
2008-11-05 17:44:58 +00:00
<?php if ( current_user_can('manage_categories') ) {
2008-11-02 23:52:49 +00:00
$category = (object) array(); $category->parent = 0; do_action('add_link_category_form_pre', $category); ?>
2008-10-26 09:08:52 +00:00
<div class="form-wrap">
2009-04-22 07:29:01 +00:00
<h3><?php _e('Add Link Category'); ?></h3>
2008-10-26 09:08:52 +00:00
<div id="ajax-response"></div>
<form name="addcat" id="addcat" class="add:the-list: validate" method="post" action="link-category.php">
<input type="hidden" name="action" value="addcat" />
<?php wp_original_referer_field(true, 'previous'); wp_nonce_field('add-link-category'); ?>
2008-02-13 07:32:50 +00:00
2008-10-26 09:08:52 +00:00
<div class="form-field form-required">
2009-04-22 07:29:01 +00:00
<label for="name"><?php _e('Link Category name') ?></label>
2010-03-28 01:42:34 +00:00
<input name="name" id="link-name" type="text" value="" size="40" aria-required="true" />
2007-06-05 05:08:27 +00:00
</div>
2010-03-16 17:17:55 +00:00
<?php if ( !global_terms_enabled() ) { ?>
2008-10-26 09:08:52 +00:00
<div class="form-field">
2009-04-22 07:29:01 +00:00
<label for="slug"><?php _e('Link Category slug') ?></label>
2010-03-28 01:42:34 +00:00
<input name="slug" id="link-slug" type="text" value="" size="40" />
2008-11-04 03:22:24 +00:00
<p><?php _e('The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'); ?></p>
2008-10-26 09:08:52 +00:00
</div>
2010-01-12 21:11:52 +00:00
<?php } ?>
2008-10-26 09:08:52 +00:00
<div class="form-field">
<label for="description"><?php _e('Description (optional)') ?></label>
2010-03-28 01:42:34 +00:00
<textarea name="description" id="link-description" rows="5" cols="40"></textarea>
2009-11-19 22:16:16 +00:00
<p><?php _e('The description is not prominent by default; however, some themes may show it.'); ?></p>
2008-10-26 09:08:52 +00:00
</div>
2009-05-05 19:43:53 +00:00
<p class="submit"><input type="submit" class="button" name="submit" value="<?php esc_attr_e('Add Category'); ?>" /></p>
2008-10-26 09:08:52 +00:00
<?php do_action('edit_link_category_form', $category); ?>
</form>
</div>
<?php } ?>
</div>
</div><!-- /col-left -->
</div><!-- /col-container -->
</div><!-- /wrap -->
2007-06-05 05:08:27 +00:00
2010-01-24 11:00:27 +00:00
<?php inline_edit_term_row('edit-link-categories', 'link_category'); ?>
2010-04-18 06:14:45 +00:00
<?php include('./admin-footer.php'); ?>