function globallink_fieldable_panels_check_delete in GlobalLink Connect for Drupal 7.7
Gets fieldable panel translation status.
Parameters
string $fpid: The fieldable panel ID.
string $tgt_locale: The target locale.
string $title: The translation title.
Return value
string Status message.
1 call to globallink_fieldable_panels_check_delete()
- globallink_background_pull in ./
globallink_background_jobs.inc - Pull submissions or documents
File
- globallink_fieldable_panels/
globallink_fieldable_panels.inc, line 172
Code
function globallink_fieldable_panels_check_delete($fpid) {
$entity = fieldable_panels_panes_load($fpid);
if (empty($entity)) {
return TRUE;
}
return FALSE;
}