You are here

function pmproject_menu in Drupal PM (Project Management) 7

Implements hook_menu().

File

pmproject/pmproject.module, line 118

Code

function pmproject_menu() {
  $items = array();
  $items['pm/organization_projects_js/%'] = array(
    'title' => 'Projects',
    'page callback' => '_pmproject_organization_projects_js',
    'page arguments' => array(
      2,
    ),
    'access callback' => TRUE,
    'file' => 'pmproject.admin.inc',
    'type' => MENU_CALLBACK,
  );
  return $items;
}