Helper function to create a pseudo view.
We use this to obtain our subquery SQL.
File
- drupal/core/modules/views/lib/Drupal/views/Plugin/views/relationship/GroupwiseMax.php, line 163
- Definition of Drupal\views\Plugin\views\relationship\GroupwiseMax.
Class
- GroupwiseMax
- Relationship handler that allows a groupwise maximum of the linked in table.
For a definition, see:
http://dev.mysql.com/doc/refman/5.0/en/example-maximum-column-group-row....
In lay terms, instead of joining to get all matching records in the…
Namespace
Drupal\views\Plugin\views\relationship
Code
protected function getTemporaryView() {
$view = entity_create('view', array(
'base_table' => $this->definition['base'],
));
$view
->addDisplay('default');
return $view
->get('executable');
}