You are here

function photobox_menu in PhotoboxPhotobox 7

Implements hook_menu().

File

./photobox.module, line 10
Main file for the Photobox module.

Code

function photobox_menu() {
  $items = array(
    'admin/config/media/photobox' => array(
      'title' => 'Photobox',
      'description' => 'Configure Photobox settings.',
      'page callback' => 'drupal_get_form',
      'page arguments' => array(
        'photobox_settings_form',
      ),
      'access arguments' => array(
        'administer site configuration',
      ),
      'file' => 'photobox.admin.inc',
    ),
  );
  return $items;
}