function globallink_commerce_send_for_translations in GlobalLink Connect for Drupal 7.7
Sends commerce for translation.
Parameters
array $pids: The array of commerce products IDs.
string $pd4: The project director details.
string $submission_name: The name of the submission.
string $due_date: When the translation is due.
string $project_code: The project's registered code.
string $source_locale: The locale of the content being translated.
array $target_locale_arr: Array of desired locales to translate into.
array $submission_details: Associative array of details about the submission.
Return value
object GlobalLink object that represents active translation.
1 call to globallink_commerce_send_for_translations()
File
- globallink_commerce/
globallink_commerce.inc, line 26
Code
function globallink_commerce_send_for_translations($pids, $pd4, $submission_name, $due_date, $project_code, $source_locale, $target_locale_arr, $submission_details, $submission_priority) {
module_load_include('inc', 'globallink', 'gl_ws/gl_ws_send_translations');
module_load_include('inc', 'globallink', 'globallink');
$submitter = $submission_details['submitter'];
$globallink_arr = array();
foreach ($pids as $pid) {
$rows = globallink_commerce_get_sent_rows_by_pid($pid);
$target_arr = $target_locale_arr;
$cp_info = globallink_commerce_get_info($pid);
$title = $cp_info->title;
foreach ($rows as $row) {
if (array_search($row->target_lang_code, $target_locale_arr)) {
unset($target_arr[$row->target_lang_code]);
watchdog(GLOBALLINK_MODULE, 'Skipping CP Id - %id for locales %locale', array(
'%id' => $pid,
'%locale' => $row->target_lang_code,
), WATCHDOG_DEBUG);
}
}
if (empty($target_arr)) {
continue;
}
$xml = globallink_commerce_get_xml($pid, $target_arr);
$name = 'Commerce_Product_' . $pid . '.xml';
$globallink = new GlobalLink();
$globallink->type = GLOBALLINK_ENTITY_TYPE_COM;
$globallink->metadata = GLOBALLINK_ENTITY_TYPE_COM;
$globallink->title = $title;
$globallink->sourceLocale = $source_locale;
$globallink->targetLocale = $target_arr;
$globallink->sourceXML = $xml;
$globallink->sourceFileName = $name;
$globallink->submissionName = $submission_name;
$globallink->submissionPriority = $submission_priority;
$globallink->dueDate = $due_date;
$globallink->otherObjectId = $pid;
$globallink->submissionInstructions = $submission_details['instructions'] . "\nSubmitter: " . $submitter;
$globallink_arr[GLOBALLINK_ENTITY_TYPE_COM][] = $globallink;
}
return $globallink_arr;
}