function views_ui_config_item_group_form_submit in Views (for Drupal 7) 6.3
Same name and namespace in other branches
- 8.3 views_ui/admin.inc \views_ui_config_item_group_form_submit()
- 7.3 includes/admin.inc \views_ui_config_item_group_form_submit()
Submit handler for configing group settings on a view.
File
Code
function views_ui_config_item_group_form_submit($form, &$form_state) {
$item = $form_state['handler']->options;
$item['group_type'] = $form_state['values']['group_type'];
// Store the item back on the view
$form_state['view']
->set_item($form_state['display_id'], $form_state['type'], $form_state['id'], $item);
// Write to cache
views_ui_cache_set($form_state['view']);
}