function globallink_check_webform_delete in GlobalLink Connect for Drupal 7.7
Gets webform translation status.
Parameters
string $lid: The webform LID.
string $tgt_locale: The target locale.
string $title: The translation title.
Return value
string Status message.
1 call to globallink_check_webform_delete()
- globallink_background_pull in ./
globallink_background_jobs.inc - Pull submissions or documents
File
- globallink_webform/
globallink_webform.inc, line 420
Code
function globallink_check_webform_delete($lid) {
$webform = globallink_load_source_data($lid);
if (!$webform || is_null($webform)) {
return TRUE;
}
return FALSE;
}