Same name and namespace in other branches
  1. 7.x-1.x colorbox.module \colorbox_menu() 1 comment

Implements hook_menu().

File

./colorbox.module, line 152

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;
}