_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;
}
Please login to continue.