You are here

function _openatrium_translate_batch_finished in Open Atrium 6

Finished callback for the first locale import batch.

Advance installer task to the configure screen.

1 string reference to '_openatrium_translate_batch_finished'
openatrium_profile_tasks in ./openatrium.profile
Implementation of hook_profile_tasks().

File

./openatrium.profile, line 326

Code

function _openatrium_translate_batch_finished($success, $results) {
  variable_set('install_task', 'intranet-configure');

  // Invoke default batch finish function too.
  module_load_include('batch.inc', 'l10n_update');
  _l10n_update_batch_finished($success, $results);
}