You are here

function spaces_preset_editor_submit in Spaces 6.3

Same name and namespace in other branches
  1. 7.3 spaces_ui/export_ui/spaces_presets_export_ui.class.php \spaces_preset_editor_submit()
  2. 7 spaces_ui/export_ui/spaces_presets_export_ui.class.php \spaces_preset_editor_submit()

Submit handler for preset editor.

1 string reference to 'spaces_preset_editor_submit'
spaces_presets.inc in spaces_ui/export_ui/spaces_presets.inc

File

spaces_ui/export_ui/spaces_presets_export_ui.class.php, line 211

Code

function spaces_preset_editor_submit(&$form, &$form_state) {
  $form_state['item']->name = $form_state['values']['name'];
  $form_state['item']->title = $form_state['values']['title'];
  $form_state['item']->description = $form_state['values']['description'];
  $form_state['item']->space_type = $form_state['values']['space_type'];
}