Skip to content

Commit

Permalink
wp.deleteCategory xmlrpc method from josephscott. fixes #4599
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.automattic.com/wordpress/trunk@6417 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
ryan committed Dec 19, 2007
1 parent fc8d883 commit 00d334c
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion xmlrpc.php
Expand Up @@ -84,6 +84,7 @@ function wp_xmlrpc_server() {
'wp.getAuthors' => 'this:wp_getAuthors',
'wp.getCategories' => 'this:mw_getCategories', // Alias
'wp.newCategory' => 'this:wp_newCategory',
'wp.deleteCategory' => 'this:wp_deleteCategory',
'wp.suggestCategories' => 'this:wp_suggestCategories',
'wp.uploadFile' => 'this:mw_newMediaObject', // Alias

Expand Down Expand Up @@ -492,7 +493,7 @@ function wp_newCategory($args) {
// Set the user context and make sure they are
// allowed to add a category.
set_current_user(0, $username);
if(!current_user_can("manage_categories", $page_id)) {
if(!current_user_can("manage_categories")) {
return(new IXR_Error(401, __("Sorry, you do not have the right to add a category.")));
}

Expand Down Expand Up @@ -527,6 +528,31 @@ function wp_newCategory($args) {
return($cat_id);
}

/**
* WordPress XML-RPC API
* wp_deleteCategory
*/
function wp_deleteCategory($args) {
$this->escape($args);

$blog_id = (int) $args[0];
$username = $args[1];
$password = $args[2];
$category_id = (int) $args[3];

if( !$this->login_pass_ok( $username, $password ) ) {
return $this->error;
}

set_current_user(0, $username);
if( !current_user_can("manage_categories") ) {
return new IXR_Error( 401, __( "Sorry, you do not the right to delete a category." ) );
}

return wp_delete_category( $category_id );
}


/**
* WordPress XML-RPC API
* wp_suggestCategories
Expand Down

0 comments on commit 00d334c

Please sign in to comment.