You are here

function globallink_taxonomy_check_delete in GlobalLink Connect for Drupal 7.7

Gets taxonomy translation status.

Parameters

string $bid: The taxonomy object ID.

string $tgt_locale: The target locale.

string $title: The translation title.

Return value

string Status message.

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

File

globallink_taxonomy/globallink_taxonomy.inc, line 264

Code

function globallink_taxonomy_check_delete($bid) {
  $s_taxonomy = taxonomy_term_load($bid);
  if (!$s_taxonomy || is_null($s_taxonomy)) {
    return TRUE;
  }
  return FALSE;
}