You are here

function blogapi_blogger_get_recent_posts in Blog API 7.2

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

Service callback for blogger.getRecentPosts

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

File

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

Code

function blogapi_blogger_get_recent_posts($appkey, $blogid, $username, $password, $number_of_posts, $bodies = TRUE) {
  return blogapi_get_recent_posts($blogid, $username, $password, $number_of_posts);
}