You are here

function globallink_interface_check_delete in GlobalLink Connect for Drupal 7.7

Gets interface translation status.

Parameters

string $lid: The interface LID.

string $tgt_locale: The target locale.

string $title: The translation title.

Return value

string Status message.

1 call to globallink_interface_check_delete()
globallink_background_pull in ./globallink_background_jobs.inc
Pull submissions or documents

File

globallink_interface/globallink_interface.inc, line 171

Code

function globallink_interface_check_delete($lid) {
  $interface = globallink_load_source_data($lid);
  if (!$interface || is_null($interface)) {
    return TRUE;
  }
  return FALSE;
}