You are here

function hook_icon_PROVIDER_import_process in Icon API 7

Same name and namespace in other branches
  1. 8 icon.api.php \hook_icon_PROVIDER_import_process()

Provider process archive import.

Allow extensions to properly process the bundle after it has been extracted to the proper location and successfully imported. This is typically the step where most logic should take place to determine available icons and settings. This is the step right before it is saved to the database.

See also

icon_provider_import_form_submit()

File

./icon.api.php, line 257
icon.api.php Hooks and form elements provided by the Icon API module.

Code

function hook_icon_PROVIDER_import_process(&$bundle) {

  // Process the $bundle data here...
}