function icon_provider_import_form_submit in Icon API 8
Same name and namespace in other branches
- 7 includes/import.inc \icon_provider_import_form_submit()
Submit callback for 'icon_provider_import_form'.
File
- includes/
import.inc, line 143 - import.inc Provides import administrative callbacks and tasks.
Code
function icon_provider_import_form_submit($form, &$form_state) {
// Redirect to the overview form after submit.
$form_state['redirect'] = array(
ICON_ADMIN_PATH,
);
// Get the bundle and provider set in validation.
$bundle =& $form_state['bundle'];
$provider =& $form_state['provider'];
// Invoke hook_icon_import_process().
icon_extension_invoke($provider['type'], $provider[$provider['type']], 'icon_' . $provider['name'] . '_import_process', $bundle);
// Save the bundle to the database.
if (!icon_bundle_save($bundle)) {
drupal_set_message(t('An error occurred while attemping to import the %provider icon bundle: %bundle.', array(
'%provider' => $provider['title'],
'%bundle' => $bundle['title'],
)), 'error');
return;
}
drupal_set_message(t('The %provider icon bundle %bundle was successfully imported.', array(
'%provider' => $provider['title'],
'%bundle' => $bundle['title'],
)));
// Clear the caches so the new bundle shows up.
icon_clear_all_caches();
// Redirect to the bundle configuration if there are settings to configure.
module_load_include('inc', 'icon', 'includes/admin');
$config_form = \Drupal::formBuilder()
->getForm('icon_bundle_configure_form', $bundle);
$settings = \Drupal\Core\Render\Element::children($config_form['settings']);
if (!empty($settings)) {
$form_state['redirect'] = array(
ICON_ADMIN_PATH . '/bundle/' . $bundle['name'] . '/configure',
);
}
}