You are here

function hosting_server_menu in Hostmaster (Aegir) 6

Implementation of hook_menu().

File

modules/hosting/server/hosting_server.module, line 22

Code

function hosting_server_menu() {
  $items = array();
  $items['hosting/servers'] = array(
    'title' => 'Servers',
    'description' => 'List of servers',
    'page callback' => 'hosting_server_listing',
    'access arguments' => array(
      'view server',
    ),
  );
  return $items;
}