function pmperson_pm_dashboard_links in Drupal PM (Project Management) 7
Implements hook_pm_dashboard_links().
File
- pmperson/
pmperson.module, line 863
Code
function pmperson_pm_dashboard_links($type) {
$links = array();
if ($type == 'page' || $type == 'block') {
$links[] = array(
'theme' => 'pm_dashboard_link',
'title' => t('People'),
'icon' => 'pmpeople',
'path' => 'pm/people',
'params' => array(),
'node_type' => 'pmperson',
'add_type' => 'pmperson',
'map' => array(),
'weight' => 2,
);
}
return $links;
}