You are here

function blogapi_blogger_edit_post in Blog API 7.2

Same name and namespace in other branches
  1. 8 modules/blogapi_blogger/blogapi_blogger.module \blogapi_blogger_edit_post()
  2. 7 blogapi.module \blogapi_blogger_edit_post()

Service callback for blogger.editPost

1 string reference to 'blogapi_blogger_edit_post'
blogapi_blogger_services_resources in modules/blogapi_blogger/blogapi_blogger.module
Implements hook_services_resources().

File

modules/blogapi_blogger/blogapi_blogger.module, line 399
Provides Blogger services for BlogAPI

Code

function blogapi_blogger_edit_post($appid, $postid, $username, $password, $content, $publish) {
  return blogapi_edit_post($postid, $username, $password, $content, $publish);
}