pm.views.inc in Drupal PM (Project Management) 7.2
Same filename and directory in other branches
Views definitions for pm module.
File
includes/views/pm.views.incView source
<?php
/**
* @file
* Views definitions for pm module.
*/
/**
* Implements hook_views_data_alter().
*/
function pm_views_data_alter(&$data) {
$data['node']['pm_handler_area_addcontent'] = array(
'title' => t('PM Add Content Link'),
'help' => t('Provides a link to add new content of the specified type to users with
permissions to do so.'),
'area' => array(
'handler' => 'pm_handler_area_addcontent',
),
);
$data['node']['pm_handler_field_operation'] = array(
'title' => t('PM Operations'),
'help' => t('Exposes operations that could be performed on the given node.'),
'field' => array(
'handler' => 'pm_handler_field_operation',
'group' => t('Content'),
),
);
}
Functions
Name | Description |
---|---|
pm_views_data_alter | Implements hook_views_data_alter(). |