function date_views_date_views_extra_tables in Date 8
Same name and namespace in other branches
- 7.3 date_views/date_views.module \date_views_date_views_extra_tables()
- 7.2 date_views/date_views.module \date_views_date_views_extra_tables()
Implements hook_date_views_entities(). Map extra Views tables to the entity that holds its date fields, needed for Views tables other than the primary tables identified in entity_info().
File
- date_views/
date_views.module, line 75
Code
function date_views_date_views_extra_tables() {
return array(
'node_revision' => 'node',
);
}