You are here

function views_send_menu in Views Send 6

Same name and namespace in other branches
  1. 8 views_send.module \views_send_menu()
  2. 7 views_send.module \views_send_menu()

Implementation of hook_menu().

See also

http://api.drupal.org/api/function/hook_menu/6

File

./views_send.module, line 402
The Views Send module.

Code

function views_send_menu() {
  $items = array();
  $items['admin/settings/views_send'] = array(
    'type' => MENU_NORMAL_ITEM,
    'title' => 'Views Send',
    'description' => 'Configure Views Send general options.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'views_send_settings',
    ),
    'access arguments' => array(
      'administer views_send',
    ),
    'file' => 'views_send.admin.inc',
  );
  return $items;
}