function gathercontent_import_next in GatherContent 7
Handles the 'next' click on the add/edit pane form wizard.
All we need to do is store the updated pane in the cache.
1 string reference to 'gathercontent_import_next'
- gathercontent_import in ./
gathercontent.module - Import wizard, built with CTools multistep form wizard.
File
- ./
gathercontent.module, line 187 - Imports pages from GatherContent (http://gathercontent.com/) into Drupal as nodes.
Code
function gathercontent_import_next(&$form_state) {
$form_state['object'] = $form_state['values'];
gathercontent_import_cache_set($form_state['object_id'], $form_state['object']);
}