You are here

function blogapi_metaweblog_get_recent_posts in Blog API 7.2

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

Service callback for metaWeblog.getRecentPosts

1 string reference to 'blogapi_metaweblog_get_recent_posts'
blogapi_metaweblog_services_resources in modules/blogapi_metaweblog/blogapi_metaweblog.module
Implements hook_services_resources().

File

modules/blogapi_metaweblog/blogapi_metaweblog.module, line 411
Provides MetaWeblog services for BlogAPI

Code

function blogapi_metaweblog_get_recent_posts($blogid, $username, $password, $number_of_posts) {
  return blogapi_get_recent_posts($blogid, $username, $password, $number_of_posts);
}