function colorbox_menu in Colorbox 7.2
Same name and namespace in other branches
- 6 colorbox.module \colorbox_menu()
- 7 colorbox.module \colorbox_menu()
Implements hook_menu().
File
- ./
colorbox.module, line 116 - A light-weight, customizable lightbox plugin for jQuery 1.3.
Code
function colorbox_menu() {
$items = array();
$items['admin/config/media/colorbox'] = array(
'title' => 'Colorbox',
'description' => 'Adjust Colorbox settings.',
'file' => 'colorbox.admin.inc',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'colorbox_admin_settings',
),
'access arguments' => array(
'administer site configuration',
),
);
return $items;
}