1 views_ui.admin.inc views_ui_config_style_form_submit($form, &$form_state)

Submit handler for configing new item(s) to a view.

File

core/modules/views_ui/views_ui.admin.inc, line 4475
Admin page callbacks for the Views UI module.

Code

function views_ui_config_style_form_submit($form, &$form_state) {
  // Run it through the handler's submit function.
  $form_state['handler']->options_submit($form['style_options'], $form_state);
  $item = $form_state['handler']->options;

  // Store the data we're given.
  $item['style_options'] = $form_state['values']['style_options'];

  // 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']);
}