2003-05-22 14:12:53 +02:00
< ? php
2008-08-11 22:26:31 +02:00
/**
* Categories Management Panel
*
* @ package WordPress
* @ subpackage Administration
*/
/** Load WordPress Bootstrap */
2004-10-19 05:03:06 +02:00
require_once ( 'admin.php' );
2004-04-23 01:32:34 +02:00
2006-11-18 08:31:29 +01:00
$title = __ ( 'Categories' );
2008-09-29 11:26:21 +02:00
wp_reset_vars ( array ( 'action' , 'cat' ) );
2003-05-22 14:12:53 +02:00
2008-09-29 11:26:21 +02:00
if ( isset ( $_GET [ 'action' ] ) && isset ( $_GET [ 'delete' ]) && ( 'delete' == $_GET [ 'action' ] || 'delete' == $_GET [ 'action2' ] ) )
2008-02-14 10:17:00 +01:00
$action = 'bulk-delete' ;
2003-05-22 14:12:53 +02:00
switch ( $action ) {
2003-05-23 10:29:51 +02:00
case 'addcat' :
2005-07-03 21:26:51 +02:00
2006-05-03 00:36:06 +02:00
check_admin_referer ( 'add-category' );
2006-03-31 01:12:54 +02:00
2005-07-15 04:16:45 +02:00
if ( ! current_user_can ( 'manage_categories' ) )
2006-07-10 07:29:10 +02:00
wp_die ( __ ( 'Cheatin’ uh?' ));
2006-02-12 08:53:23 +01:00
2006-07-20 03:30:37 +02:00
if ( wp_insert_category ( $_POST ) ) {
wp_redirect ( 'categories.php?message=1#addcat' );
} else {
wp_redirect ( 'categories.php?message=4#addcat' );
}
2006-11-15 01:02:28 +01:00
exit ;
2003-05-22 14:12:53 +02:00
break ;
2004-12-14 10:22:21 +01:00
case 'delete' :
2006-05-03 00:36:06 +02:00
$cat_ID = ( int ) $_GET [ 'cat_ID' ];
2006-05-27 01:08:05 +02:00
check_admin_referer ( 'delete-category_' . $cat_ID );
2004-05-17 21:44:53 +02:00
2005-07-15 04:16:45 +02:00
if ( ! current_user_can ( 'manage_categories' ) )
2006-07-10 07:29:10 +02:00
wp_die ( __ ( 'Cheatin’ uh?' ));
2005-07-03 21:26:51 +02:00
2004-12-14 10:22:21 +01:00
$cat_name = get_catname ( $cat_ID );
2003-05-22 14:12:53 +02:00
2006-04-02 01:27:47 +02:00
// Don't delete the default cats.
if ( $cat_ID == get_option ( 'default_category' ) )
2006-12-27 01:51:00 +01:00
wp_die ( sprintf ( __ ( " Can’t delete the <strong>%s</strong> category: this is the default one " ), $cat_name ));
2003-05-22 14:12:53 +02:00
2005-07-03 21:26:51 +02:00
wp_delete_category ( $cat_ID );
2003-05-22 14:12:53 +02:00
2006-06-27 07:38:56 +02:00
wp_redirect ( 'categories.php?message=2' );
2006-11-15 01:02:28 +01:00
exit ;
2003-05-22 14:12:53 +02:00
break ;
2008-02-14 10:17:00 +01:00
case 'bulk-delete' :
check_admin_referer ( 'bulk-categories' );
if ( ! current_user_can ( 'manage_categories' ) )
wp_die ( __ ( 'You are not allowed to delete categories.' ) );
foreach ( ( array ) $_GET [ 'delete' ] as $cat_ID ) {
$cat_name = get_catname ( $cat_ID );
// Don't delete the default cats.
if ( $cat_ID == get_option ( 'default_category' ) )
wp_die ( sprintf ( __ ( " Can’t delete the <strong>%s</strong> category: this is the default one " ), $cat_name ));
wp_delete_category ( $cat_ID );
}
$sendback = wp_get_referer ();
$sendback = preg_replace ( '|[^a-z0-9-~+_.?#=&;,/:]|i' , '' , $sendback );
wp_redirect ( $sendback );
exit ();
break ;
2003-12-07 11:38:25 +01:00
case 'edit' :
2003-05-22 14:12:53 +02:00
2008-09-30 00:06:23 +02:00
$title = __ ( 'Edit Category' );
2006-11-19 08:56:05 +01:00
require_once ( 'admin-header.php' );
$cat_ID = ( int ) $_GET [ 'cat_ID' ];
$category = get_category_to_edit ( $cat_ID );
include ( 'edit-category-form.php' );
2003-05-22 14:12:53 +02:00
break ;
2003-05-23 10:29:51 +02:00
case 'editedcat' :
2006-05-03 00:36:06 +02:00
$cat_ID = ( int ) $_POST [ 'cat_ID' ];
2006-05-27 01:08:05 +02:00
check_admin_referer ( 'update-category_' . $cat_ID );
2006-03-31 01:12:54 +02:00
2005-07-15 04:16:45 +02:00
if ( ! current_user_can ( 'manage_categories' ) )
2006-07-10 07:29:10 +02:00
wp_die ( __ ( 'Cheatin’ uh?' ));
2006-02-12 08:53:23 +01:00
2008-10-23 02:08:42 +02:00
$location = 'categories.php' ;
if ( $referer = wp_get_original_referer () ) {
if ( false !== strpos ( $referer , 'categories.php' ) )
$location = $referer ;
}
2006-11-19 02:12:36 +01:00
if ( wp_update_category ( $_POST ) )
2008-10-23 02:08:42 +02:00
$location = add_query_arg ( 'message' , 3 , $location );
2006-11-19 02:12:36 +01:00
else
2008-10-23 02:08:42 +02:00
$location = add_query_arg ( 'message' , 5 , $location );
wp_redirect ( $location );
2004-12-09 02:02:25 +01:00
2006-11-15 01:02:28 +01:00
exit ;
2003-05-22 14:12:53 +02:00
break ;
default :
2008-09-29 11:26:21 +02:00
if ( isset ( $_GET [ '_wp_http_referer' ]) && ! empty ( $_GET [ '_wp_http_referer' ]) ) {
wp_redirect ( remove_query_arg ( array ( '_wp_http_referer' , '_wpnonce' ), stripslashes ( $_SERVER [ 'REQUEST_URI' ]) ) );
2008-03-02 21:17:30 +01:00
exit ;
2008-02-15 23:29:18 +01:00
}
2006-05-22 19:16:05 +02:00
wp_enqueue_script ( 'admin-categories' );
2008-02-14 10:17:00 +01:00
wp_enqueue_script ( 'admin-forms' );
2008-10-05 06:43:52 +02:00
if ( current_user_can ( 'manage_categories' ) )
wp_enqueue_script ( 'inline-edit-tax' );
2008-02-14 10:17:00 +01:00
2004-11-18 20:51:31 +01:00
require_once ( 'admin-header.php' );
2004-04-28 07:48:31 +02:00
$messages [ 1 ] = __ ( 'Category added.' );
$messages [ 2 ] = __ ( 'Category deleted.' );
$messages [ 3 ] = __ ( 'Category updated.' );
2006-07-20 03:30:37 +02:00
$messages [ 4 ] = __ ( 'Category not added.' );
2006-11-19 02:12:36 +01:00
$messages [ 5 ] = __ ( 'Category not updated.' );
2008-09-28 06:11:27 +02:00
?>
2008-10-27 02:22:24 +01:00
< ? php screen_options ( 'category' ) ?>
2004-08-23 01:24:50 +02:00
2008-09-28 06:11:27 +02:00
< ? php
2008-09-25 23:54:14 +02:00
if ( isset ( $_GET [ 'message' ]) && ( $msg = ( int ) $_GET [ 'message' ] ) ) : ?>
2008-09-11 20:54:05 +02:00
< div id = " message " class = " updated fade " >< p >< ? php echo $messages [ $msg ]; ?> </p></div>
2008-02-26 21:35:40 +01:00
< ? php $_SERVER [ 'REQUEST_URI' ] = remove_query_arg ( array ( 'message' ), $_SERVER [ 'REQUEST_URI' ]);
endif ; ?>
2003-12-27 21:55:03 +01:00
2008-10-27 02:22:24 +01:00
< div class = " wrap nosubsub " >
< h2 >< ? php echo wp_specialchars ( $title ); ?> </h2>
2008-09-18 07:41:45 +02:00
2008-10-24 20:25:46 +02:00
< form class = " search-form topmargin " action = " " method = " get " >
2008-10-03 02:13:12 +02:00
< p class = " search-box " >
2008-10-25 20:43:33 +02:00
< label class = " hidden " for = " category-search-input " >< ? php _e ( 'Search Categories' ); ?> :</label>
< input type = " text " class = " search-input " id = " category-search-input " name = " s " value = " <?php _admin_search_query(); ?> " />
2008-10-24 20:25:46 +02:00
< input type = " submit " value = " <?php _e( 'Search Categories' ); ?> " class = " button-primary " />
2008-10-02 20:03:45 +02:00
</ p >
2008-10-03 02:13:12 +02:00
</ form >
< br class = " clear " />
2008-10-02 20:03:45 +02:00
2008-10-26 10:08:52 +01:00
< div id = " col-container " >
< div id = " col-right " >
< div class = " col-wrap " >
2008-10-03 02:13:12 +02:00
< form id = " posts-filter " action = " " method = " get " >
2008-02-12 10:02:02 +01:00
< div class = " tablenav " >
2008-06-14 01:22:29 +02:00
< ? php
2008-09-21 22:41:25 +02:00
$pagenum = isset ( $_GET [ 'pagenum' ] ) ? absint ( $_GET [ 'pagenum' ] ) : 0 ;
2008-06-14 01:22:29 +02:00
if ( empty ( $pagenum ) )
$pagenum = 1 ;
2008-09-21 22:41:25 +02:00
if ( ! isset ( $catsperpage ) || $catsperpage < 0 )
2008-06-14 01:22:29 +02:00
$catsperpage = 20 ;
$page_links = paginate_links ( array (
'base' => add_query_arg ( 'pagenum' , '%#%' ),
'format' => '' ,
2008-10-24 20:25:46 +02:00
'prev_text' => __ ( '«' ),
'next_text' => __ ( '»' ),
2008-06-14 01:22:29 +02:00
'total' => ceil ( wp_count_terms ( 'category' ) / $catsperpage ),
'current' => $pagenum
));
if ( $page_links )
echo " <div class='tablenav-pages'> $page_links </div> " ;
?>
2008-10-24 20:25:46 +02:00
< div class = " alignleft actions " >
2008-08-20 06:06:36 +02:00
< select name = " action " >
2008-10-17 05:49:43 +02:00
< option value = " " selected = " selected " >< ? php _e ( 'Actions' ); ?> </option>
2008-08-20 06:06:36 +02:00
< option value = " delete " >< ? php _e ( 'Delete' ); ?> </option>
</ select >
2008-09-25 15:42:34 +02:00
< input type = " submit " value = " <?php _e('Apply'); ?> " name = " doaction " id = " doaction " class = " button-secondary action " />
2008-02-14 10:17:00 +01:00
< ? php wp_nonce_field ( 'bulk-categories' ); ?>
2008-02-12 10:02:02 +01:00
</ div >
2008-03-15 00:58:31 +01:00
< br class = " clear " />
2008-02-12 10:02:02 +01:00
</ div >
2008-10-03 02:13:12 +02:00
< div class = " clear " ></ div >
2008-02-12 10:02:02 +01:00
2006-05-10 22:35:10 +02:00
< table class = " widefat " >
2006-03-29 03:51:55 +02:00
< thead >
2004-01-30 03:26:22 +01:00
< tr >
2008-09-18 07:41:45 +02:00
< ? php print_column_headers ( 'category' ); ?>
2004-01-30 03:26:22 +01:00
</ tr >
2006-03-29 03:51:55 +02:00
</ thead >
2008-09-29 11:26:21 +02:00
< tfoot >
< tr >
< ? php print_column_headers ( 'category' , false ); ?>
</ tr >
</ tfoot >
2007-10-10 00:49:42 +02:00
< tbody id = " the-list " class = " list:cat " >
2004-01-30 03:26:22 +01:00
< ? php
2008-06-14 01:52:07 +02:00
cat_rows ( 0 , 0 , 0 , $pagenum , $catsperpage );
2004-01-30 03:26:22 +01:00
?>
2006-03-29 03:51:55 +02:00
</ tbody >
2004-01-30 03:26:22 +01:00
</ table >
2008-09-18 07:41:45 +02:00
2008-02-13 08:32:50 +01:00
< div class = " tablenav " >
2008-06-14 01:22:29 +02:00
< ? php
if ( $page_links )
echo " <div class='tablenav-pages'> $page_links </div> " ;
?>
2008-09-29 11:26:21 +02:00
2008-10-24 20:25:46 +02:00
< div class = " alignleft actions " >
2008-09-29 11:26:21 +02:00
< select name = " action2 " >
2008-10-17 05:49:43 +02:00
< option value = " " selected = " selected " >< ? php _e ( 'Actions' ); ?> </option>
2008-09-29 11:26:21 +02:00
< option value = " delete " >< ? php _e ( 'Delete' ); ?> </option>
</ select >
< input type = " submit " value = " <?php _e('Apply'); ?> " name = " doaction2 " id = " doaction2 " class = " button-secondary action " />
< ? php wp_nonce_field ( 'bulk-categories' ); ?>
</ div >
2008-03-15 00:58:31 +01:00
< br class = " clear " />
2008-02-13 08:32:50 +01:00
</ div >
2008-09-29 11:26:21 +02:00
2008-03-23 07:41:43 +01:00
< br class = " clear " />
2008-09-29 11:26:21 +02:00
</ form >
2008-10-26 10:08:52 +01:00
</ div >
</ div ><!-- / col - right -->
< div id = " col-left " >
< div class = " col-wrap " >
< ? php if ( current_user_can ( 'manage_categories' ) ) { ?>
< ? php do_action ( 'add_category_form_pre' , $category ); ?>
2008-02-13 08:32:50 +01:00
2008-10-26 10:08:52 +01:00
< div class = " form-wrap " >
< h3 >< ? php _e ( 'Add Category' ); ?> </h3>
< div id = " ajax-response " ></ div >
< form name = " addcat " id = " addcat " method = " post " action = " categories.php " class = " add:the-list: validate " >
< input type = " hidden " name = " action " value = " addcat " />
< ? php wp_original_referer_field ( true , 'previous' ); wp_nonce_field ( 'add-category' ); ?>
< div class = " form-field form-required " >
< label for = " cat_name " >< ? php _e ( 'Category Name' ) ?> </label>
< input name = " cat_name " id = " cat_name " type = " text " value = " " size = " 40 " aria - required = " true " />
< p >< ? php _e ( 'The name is used to identify the category almost everywhere, for example under the post or in the category widget.' ); ?> </p>
2004-01-30 03:26:22 +01:00
</ div >
2003-05-22 14:12:53 +02:00
2008-10-26 10:08:52 +01:00
< div class = " form-field " >
< label for = " category_nicename " >< ? php _e ( 'Category Slug' ) ?> </label>
< input name = " category_nicename " id = " category_nicename " type = " text " value = " " size = " 40 " />
< 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>
</ div >
< div class = " form-field " >
< label for = " category_parent " >< ? php _e ( 'Category Parent' ) ?> </label>
< ? php wp_dropdown_categories ( array ( 'hide_empty' => 0 , 'name' => 'category_parent' , 'orderby' => 'name' , 'selected' => $category -> parent , 'hierarchical' => true , 'show_option_none' => __ ( 'None' ))); ?>
< p >< ? php _e ( 'Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.' ); ?> </p>
</ div >
< div class = " form-field " >
< label for = " category_description " >< ? php _e ( 'Description' ) ?> </label>
< textarea name = " category_description " id = " category_description " rows = " 5 " cols = " 40 " ></ textarea >
< p >< ? php _e ( 'The description is not prominent by default, however some themes may show it.' ); ?> </p>
</ div >
< p class = " submit " >< input type = " submit " class = " button " name = " submit " value = " <?php _e('Add Category'); ?> " /></ p >
< ? php do_action ( 'edit_category_form' , $category ); ?>
</ form ></ div >
< ? php } ?>
< div class = " form-wrap " >
2007-06-05 07:08:27 +02:00
< p >< ? php printf ( __ ( '<strong>Note:</strong><br />Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the category <strong>%s</strong>.' ), apply_filters ( 'the_category' , get_catname ( get_option ( 'default_category' )))) ?> </p>
2007-09-24 04:39:49 +02:00
< p >< ? php printf ( __ ( 'Categories can be selectively converted to tags using the <a href="%s">category to tag converter</a>.' ), 'admin.php?import=wp-cat2tag' ) ?> </p>
2003-05-23 10:29:51 +02:00
</ div >
2003-05-22 14:12:53 +02:00
2008-10-26 10:08:52 +01:00
</ div >
</ div ><!-- / col - left -->
2007-04-09 08:35:32 +02:00
2008-10-26 10:08:52 +01:00
</ div ><!-- / col - container -->
</ div ><!-- / wrap -->
2004-01-30 07:22:55 +01:00
2004-11-18 20:51:31 +01:00
< ? php
2008-10-26 10:08:52 +01:00
inline_edit_term_row ( 'category' );
2003-05-22 14:12:53 +02:00
break ;
}
2003-12-11 01:22:36 +01:00
include ( 'admin-footer.php' );
2006-04-19 11:26:56 +02:00
2006-05-22 19:16:05 +02:00
?>