function brightcove_menu in Brightcove Video Connect 6.2
Same name and namespace in other branches
- 6 brightcove.module \brightcove_menu()
- 7.7 brightcove.module \brightcove_menu()
- 7.2 brightcove.module \brightcove_menu()
- 7.3 brightcove.module \brightcove_menu()
- 7.4 brightcove.module \brightcove_menu()
- 7.5 brightcove.module \brightcove_menu()
- 7.6 brightcove.module \brightcove_menu()
Implementation of hook_menu().
File
- ./
brightcove.module, line 34 - Brightcove module is an integration layer between any modules using Brightcove API. It makes all necessary checks for the API and makes settings available to the user.
Code
function brightcove_menu() {
$items['admin/settings/brightcove'] = array(
'title' => 'Brightcove settings',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'brightcove_admin_settings',
),
'type' => MENU_NORMAL_ITEM,
'access arguments' => array(
'administer brightcove settings',
),
'file' => 'brightcove.admin.inc',
);
return $items;
}