function computed_field_views_data_alter in Computed Field 7
Implements hook_views_data_alter().
File
- ./
computed_field.module, line 536 - Functionality for the computed field.
Code
function computed_field_views_data_alter(&$data) {
$data['node']['computed_field_handler'] = array(
'title' => t('Computed Field Handler'),
'help' => t('Computed Field Handler for Views to handling aggregrate functions.'),
'field' => array(
'handler' => 'computed_field_handler_aggregate',
),
);
}