_locale_translation_batch_status_operations

_locale_translation_batch_status_operations($projects, $langcodes, $options = array())

Helper function to construct batch operations checking remote translation status.

Parameters

array $projects: Array of project names to be processed.

array $langcodes: Array of language codes.

array $options: Batch processing options.

Return value

array Array of batch operations.

File

core/modules/locale/locale.compare.inc, line 266
The API for comparing project translation status with available translation.

Code

function _locale_translation_batch_status_operations($projects, $langcodes, $options = array()) {
  $operations = array();

  foreach ($projects as $project) {
    foreach ($langcodes as $langcode) {
      // Check status of local and remote translation sources.
      $operations[] = array('locale_translation_batch_status_check', array($project, $langcode, $options));
    }
  }

  return $operations;
}
doc_Drupal
2016-10-29 09:57:16
Comments
Leave a Comment

Please login to continue.