function hansel_export_import_form_submit in Hansel breadcrumbs 7
Same name and namespace in other branches
- 8 export/hansel_export.module \hansel_export_import_form_submit()
Form submit callback.
File
- export/
hansel_export.module, line 138
Code
function hansel_export_import_form_submit($form, &$form_state) {
$config = $form_state['values']['config'];
$config = trim($config);
$config = unserialize($config);
module_load_include('inc', 'hansel', 'hansel.export');
hansel_import_config($config);
drupal_set_message(t('The Hansel configuration was succesfully imported.'));
$form_state['redirect'] = 'admin/config/search/hansel';
}