You are here

function date_views_date_views_extra_tables in Date 7.3

Same name and namespace in other branches
  1. 8 date_views/date_views.module \date_views_date_views_extra_tables()
  2. 7.2 date_views/date_views.module \date_views_date_views_extra_tables()

Implements hook_date_views_entities().

File

date_views/date_views.module, line 166
Date Views module.

Code

function date_views_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().
  return array(
    'node_revision' => 'node',
  );
}