diff --git a/modules/node.views.inc b/modules/node.views.inc index 2390b298b7362128be1516471440c43ccd307de8..f254f9c3aee5f1317c40ba3d33d5db4bb461570a 100644 --- a/modules/node.views.inc +++ b/modules/node.views.inc @@ -32,23 +32,11 @@ function node_views_data() { ); $data['node']['table']['entity type'] = 'node'; - - // For other base tables, explain how we join - $data['node']['table']['join'] = array( - // this explains how the 'node' table (named in the line above) - // links toward the node_revision table. + $data['node']['table']['default_relationship'] = array( 'node_revision' => array( - 'handler' => 'Drupal\views\Join', // this is actually optional - 'left_table' => 'node_revision', // Because this is a direct link it could be left out. - 'left_field' => 'nid', - 'field' => 'nid', - // also supported: - // 'type' => 'INNER', - // 'extra' => array(array('field' => 'fieldname', 'value' => 'value', 'operator' => '=')) - // Unfortunately, you can't specify other tables here, but you can construct - // alternative joins in the handlers that can do that. - // 'table' => 'the actual name of this table in the database', - ), + 'table' => 'node_revision', + 'field' => 'vid', + ), ); // ---------------------------------------------------------------- @@ -450,6 +438,13 @@ function node_views_data() { ), ); + $data['node_revision']['table']['default_relationship'] = array( + 'node' => array( + 'table' => 'node', + 'field' => 'vid', + ), + ); + // uid field for node revision $data['node_revision']['uid'] = array( 'title' => t('User'),