function youtubechannel_menu in YoutubeChannel 6
Same name and namespace in other branches
- 7.2 youtubechannel.module \youtubechannel_menu()
- 7 youtubechannel.module \youtubechannel_menu()
Implements hook_menu().
File
- ./
youtubechannel.module, line 22 - module file for youtubechannel.
Code
function youtubechannel_menu() {
$items = array();
$items['admin/settings/youtubechannel'] = array(
'title' => 'Youtube Channel',
'description' => 'Configure the settings to be used for Youtube Channel.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'youtubechannel_settings_form',
),
'access arguments' => array(
'administer site configuration',
),
'file' => 'youtubechannel.admin.inc',
'type' => MENU_NORMAL_ITEM,
);
return $items;
}