You are here

function youtubechannel_menu in YoutubeChannel 7.2

Same name and namespace in other branches
  1. 6 youtubechannel.module \youtubechannel_menu()
  2. 7 youtubechannel.module \youtubechannel_menu()

Implements hook_menu().

File

./youtubechannel.module, line 33
module file for youtubechannel.

Code

function youtubechannel_menu() {
  $items = array();
  $items['admin/config/services/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 youtubechannel',
    ),
    'file' => 'youtubechannel.admin.inc',
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}