You are here

function pmtask_views_handlers in Drupal PM (Project Management) 7

Implements hook_views_handlers().

File

pmtask/pmtask.views.inc, line 302
Functions to expose Project Management Task module data to the Views module.

Code

function pmtask_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'pm'),
    ),
    'handlers' => array(
      'pm_handler_field_attributes_domain' => array(
        'parent' => 'views_handler_field',
      ),
      'pm_handler_filter_attributes_domain' => array(
        'parent' => 'views_handler_filter_in_operator',
      ),
      'pm_handler_field_operation' => array(
        'parent' => 'views_handler_field_node_link',
        'path' => drupal_get_path('module', 'pm'),
      ),
    ),
  );
}