You are here

function dnd_menu in Scald: Media Management made easy 7

Same name and namespace in other branches
  1. 6 dnd/dnd.module \dnd_menu()

Implementation of hook_menu().

File

modules/library/dnd/dnd.module, line 9

Code

function dnd_menu() {
  $items = array();
  $items['admin/config/content/dnd'] = array(
    'title' => 'Drag and Drop Library',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'dnd_admin_form',
    ),
    'description' => 'Configure the resource library used when creating content.',
    'access arguments' => array(
      'administer dnd',
    ),
    'file' => 'dnd.admin.inc',
  );
  return $items;
}