public function GroupwiseMax::submitOptionsForm

When the form is submitted, take sure to clear the subquery string cache.

Overrides HandlerBase::submitOptionsForm

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/relationship/GroupwiseMax.php, line 172
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

public function submitOptionsForm(&$form, &$form_state) {
  $cid = 'views_relationship_groupwise_max:' . $this->view->storage
    ->id() . ':' . $this->view->current_display . ':' . $this->options['id'];
  cache('views_results')
    ->delete($cid);
}