You are here

function hook_blogapi_info in Blog API 7.2

Define new service endpoint for new blog API

Return value

array( 'api_version' => ... Version of this API 'type' => ... Type of service endpoint xmlrpc|rest|... 'name' => ... Name of Blog API )

3 functions implement hook_blogapi_info()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

blogapi_blogger_blogapi_info in modules/blogapi_blogger/blogapi_blogger.module
Implements hook_blogapi_info().
blogapi_metaweblog_blogapi_info in modules/blogapi_metaweblog/blogapi_metaweblog.module
Implements hook_blogapi_info().
blogapi_movabletype_blogapi_info in modules/blogapi_movabletype/blogapi_movabletype.module
Implements hook_blogapi_info().
1 invocation of hook_blogapi_info()
blogapi_get_info in ./blogapi.module
Get all BlogAPI information, optionally filtered by API type

File

./blogapi.api.php, line 17
Describe all available hooks

Code

function hook_blogapi_info() {
  return array(
    'api_version' => 2,
    'type' => 'xmlrpc',
    'name' => 'Blogger',
  );
}