You are here

function globallink_block_check_delete in GlobalLink Connect for Drupal 7.7

Gets block translation status.

Parameters

string $bid: The block ID.

string $tgt_locale: The target locale.

string $title: The translation title.

Return value

string Status message.

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

File

globallink_block/globallink_block.inc, line 185

Code

function globallink_block_check_delete($bid) {
  $s_block = block_custom_block_get($bid);
  if (!$s_block || is_null($s_block)) {
    return TRUE;
  }
  return FALSE;
}