You are here

function scald_atom_add_wizard_next in Scald: Media Management made easy 7

Handle the 'next' click on the add/edit pane form wizard.

1 string reference to 'scald_atom_add_wizard_next'
scald_atom_add_page in includes/scald.pages.inc
Atom add page callback.

File

includes/scald.pages.inc, line 400
This file contains the various callbacks related to Scald defined pages.

Code

function scald_atom_add_wizard_next(&$form_state) {
  $cache_id = isset($form_state['scald']['atoms'][0]->sid) ? 'edit:' . $form_state['scald']['atoms'][0]->sid : 'add';
  ctools_object_cache_set('scald_atom', $cache_id, $form_state['scald']);
}