You are here

function hosting_platform_menu in Hostmaster (Aegir) 6

Implementation of hook_menu().

File

modules/hosting/platform/hosting_platform.module, line 31
Platform node type definition.

Code

function hosting_platform_menu() {
  $items = array();
  $items['hosting/platforms'] = array(
    'title' => 'Platforms',
    'description' => 'List of platforms',
    'page callback' => 'hosting_platform_listing',
    'access arguments' => array(
      'view platform',
    ),
  );
  return $items;
}