function install_import_locales_remaining

7.x install.core.inc install_import_locales_remaining(&$install_state)

Installation task; import remaining languages via a batch process.

Parameters

$install_state: An array of information about the current installation state.

Return value

The batch definition, if there are language files to import.

1 string reference to 'install_import_locales_remaining'
install_tasks in drupal-7.x/includes/install.core.inc
Returns a list of all tasks the installer currently knows about.

File

drupal-7.x/includes/install.core.inc, line 1535
API functions for installing Drupal.

Code

function install_import_locales_remaining(&$install_state) {
  include_once DRUPAL_ROOT . '/includes/locale.inc';
  // Collect files to import for this language. Skip components already covered
  // in the initial batch set.
  $install_locale = $install_state['parameters']['locale'];
  $batch = locale_batch_by_language($install_locale, NULL, variable_get('install_locale_batch_components', array()));
  // Remove temporary variable.
  variable_del('install_locale_batch_components');
  return $batch;
}