You are here

function workbench_base_ui::edit_save_form in Workbench Moderation 7.2

Called to save the final product from the edit form.

Overrides ctools_export_ui::edit_save_form

File

modules/workbench_workflows/plugins/export_ui/workbench_base_ui.class.php, line 91
A base class meant to be extended by the workbench_workflows_ui, workbench_states_ui, workbench_events_ui.

Class

workbench_base_ui
@file

Code

function edit_save_form($form_state) {
  parent::edit_save_form($form_state);
  cache_clear_all('ctools_plugin_files:state_flow_entity', 'cache', TRUE);
  cache_clear_all('plugins:state_flow_entity', 'cache', TRUE);
}