You are here

function total_control_menu in Total Control Admin Dashboard 6.2

Same name and namespace in other branches
  1. 6 total_control.module \total_control_menu()
  2. 7.2 total_control.module \total_control_menu()

Implementation of hook_menu().

Adds the total control dashboard

File

./total_control.module, line 33

Code

function total_control_menu() {
  $items = array();
  $items['admin/settings/control'] = array(
    'title' => 'Total Control',
    'description' => 'Adjust administration menu settings.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'total_control_admin_settings',
    ),
    'access arguments' => array(
      'administer total control',
    ),
    'file' => 'total_control.admin.inc',
  );
  return $items;
}