You are here

function blogapi_movabletype_get_recent_post_titles in Blog API 7.2

Service callback for mt.getRecentPostTitles

1 string reference to 'blogapi_movabletype_get_recent_post_titles'
blogapi_movabletype_services_resources in modules/blogapi_movabletype/blogapi_movabletype.module
Implements hook_services_resources().

File

modules/blogapi_movabletype/blogapi_movabletype.module, line 222
Provides MovableType services for BlogAPI

Code

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