function ad_views_data in Advertisement 7.3
Same name and namespace in other branches
- 6.2 views/ad.views.inc \ad_views_data()
Implements hook_views_data().
File
- ./
ad.views.inc, line 11 - Views integration file for Ad module.
Code
function ad_views_data() {
$tables['ad_node']['table']['group'] = t('Ad Node');
// Define how the ad_node table is linked to the node table.
$tables['ad_node']['table']['join']['node'] = array(
'left_field' => 'nid',
'field' => 'nid',
);
// Describe the two fields in the ad_node database table.
$tables['ad_node']['total_impressions'] = array(
'title' => t('Total Impressions'),
'help' => t('The total number of impressions of an ad.'),
'field' => array(
'handler' => 'views_handler_field_numeric',
'click sortable' => TRUE,
),
'filter' => array(
'handler' => 'views_handler_filter_numeric',
'label' => t('Total Impressions'),
'allow empty' => TRUE,
),
'sort' => array(
'handler' => 'views_handler_sort',
),
);
$tables['ad_node']['total_clicks'] = array(
'title' => t('Total Clicks'),
'help' => t('The total number of clicks of an ad.'),
'field' => array(
'handler' => 'views_handler_field_numeric',
'click sortable' => TRUE,
),
'filter' => array(
'handler' => 'views_handler_filter_numeric',
'label' => t('Total Clicks'),
'allow empty' => TRUE,
),
'sort' => array(
'handler' => 'views_handler_sort',
),
);
return $tables;
}