function cmis_browser_menu in CMIS API 6
Same name and namespace in other branches
- 6.4 cmis_browser/cmis_browser.module \cmis_browser_menu()
- 6.2 cmis_browser/cmis_browser.module \cmis_browser_menu()
- 6.3 cmis_browser/cmis_browser.module \cmis_browser_menu()
- 7.2 cmis_browser/cmis_browser.module \cmis_browser_menu()
- 7 cmis_browser/cmis_browser.module \cmis_browser_menu()
Implementation of hook_menu() for CMIS browser module.
File
- cmis_browser/
cmis_browser.module, line 10
Code
function cmis_browser_menu() {
$items = array();
$items['cmis/browser'] = array(
'type' => MENU_NORMAL_ITEM,
'title' => t('CMIS Repository'),
'page callback' => 'cmis_browser_browse',
'access callback' => 'user_access',
'access arguments' => array(
'access cmis',
),
);
return $items;
}