function pmteam_views_handlers in Drupal PM (Project Management) 7
Implements hook_views_handlers().
File
- pmteam/
pmteam.views.inc, line 63 - Functions to expose Project Management Team module data to the Views module.
Code
function pmteam_views_handlers() {
return array(
'info' => array(
'path' => drupal_get_path('module', 'pm'),
),
'handlers' => array(
'pm_handler_field_operation' => array(
'parent' => 'views_handler_field_node_link',
),
),
);
}