function blogapi_metaweblog_new_post

6.x blogapi.module blogapi_metaweblog_new_post($blogid, $username, $password, $content, $publish)
1 string reference to 'blogapi_metaweblog_new_post'
blogapi_xmlrpc in drupal-6.x/modules/blogapi/blogapi.module
Implementation of hook_xmlrpc().

File

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

Code

function blogapi_metaweblog_new_post($blogid, $username, $password, $content, $publish) {
  return blogapi_blogger_new_post('0123456789ABCDEF', $blogid, $username, $password, $content, $publish);
}