function formassembly_batch_get_finished in FormAssembly 7
Implementation of callback_batch_finished()
Parameters
$success:
$results:
$operations:
2 string references to 'formassembly_batch_get_finished'
- drush_formassembly_fasync in ./
formassembly.drush.inc - Callback function for drush command to sync with FormAssembly
- formassembly_settings_form_submit in ./
formassembly.admin.inc - Submit handler for the FormAssembly settings form.
File
- ./
formassembly.module, line 387 - Contains hooks implementations and callbacks to non-admin pages.
Code
function formassembly_batch_get_finished($success, $results, $operations) {
$request = $results['request'];
if ($request instanceof FormAssemblyRequest) {
$request
->syncForms();
}
}