function views_handler_relationship_groupwise_max::options_form_submit
When the form is submitted, take sure to clear the subquery string cache.
File
-
handlers/
views_handler_relationship_groupwise_max.inc, line 169
Class
- views_handler_relationship_groupwise_max
- Relationship handler that allows a groupwise maximum of the linked in table.
Code
public function options_form_submit(&$form, &$form_state) {
$cid = 'views_relationship_groupwise_max:' . $this->view->name . ':' . $this->view->current_display . ':' . $this->options['id'];
cache_clear_all($cid, 'cache_views_data');
}