Same name and namespace in other branches
  1. 4.6.x modules/blogapi.module \blogapi_mt_set_post_categories()
  2. 5.x modules/blogapi/blogapi.module \blogapi_mt_set_post_categories()
  3. 6.x modules/blogapi/blogapi.module \blogapi_mt_set_post_categories()

Blogging API callback. Assigns taxonomy terms to a particular node.

1 string reference to 'blogapi_mt_set_post_categories'
blogapi_xmlrpc in modules/blogapi.module
Implementation of hook_xmlrpc().

File

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

Code

function blogapi_mt_set_post_categories($postid, $username, $password, $categories) {
  $user = blogapi_validate_user($username, $password);
  if (!$user->uid) {
    return blogapi_error($user);
  }
  $node = node_load($postid);
  $node->taxonomy = array();
  foreach ($categories as $category) {
    $node->taxonomy[] = $category['categoryId'];
  }
  node_save($node);
  return TRUE;
}