function blogapi_menu in Blog API 7
Same name and namespace in other branches
- 7.2 blogapi.module \blogapi_menu()
Implement hook_menu().
File
- ./
blogapi.module, line 867 - Enable users to post using applications that support XML-RPC blog APIs.
Code
function blogapi_menu() {
$items['blogapi/rsd'] = array(
'title' => 'RSD',
'page callback' => 'blogapi_rsd',
'access arguments' => array(
'access content',
),
'type' => MENU_CALLBACK,
);
$items['admin/config/services/blogapi'] = array(
'title' => 'Blog API',
'description' => 'Configure the content types available to external blogging clients.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'blogapi_admin_settings',
),
'access arguments' => array(
'administer site configuration',
),
'type' => MENU_NORMAL_ITEM,
);
return $items;
}