You are here

function blogapi_blogger_delete_post in Blog API 7

Same name and namespace in other branches
  1. 8 modules/blogapi_blogger/blogapi_blogger.module \blogapi_blogger_delete_post()
  2. 7.2 modules/blogapi_blogger/blogapi_blogger.module \blogapi_blogger_delete_post()

Blogging API callback. Removes the specified blog node.

1 string reference to 'blogapi_blogger_delete_post'
blogapi_xmlrpc in ./blogapi.module
Implement hook_xmlrpc().

File

./blogapi.module, line 395
Enable users to post using applications that support XML-RPC blog APIs.

Code

function blogapi_blogger_delete_post($appkey, $postid, $username, $password, $publish) {
  $user = blogapi_validate_user($username, $password);
  if (!$user->uid) {
    return blogapi_error($user);
  }
  node_delete($postid);
  return TRUE;
}