1 date.module date_date_views_extra_tables()

Implements hook_date_views_extra_tables().

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

core/modules/date/date.module, line 706
Defines date/time field types.

Code

function date_date_views_extra_tables() {
  return array(
    'node_revision' => 'node',
  );
}