function globallink_debug_enabled in GlobalLink Connect for Drupal 7.7
10 calls to globallink_debug_enabled()
- check_if_submission_cancelled_or_deleted in gl_ws/
gl_ws_receive_translations.inc - get_cancelled_targets_by_documents in gl_ws/
gl_ws_receive_translations.inc - globallink_background_import in ./
globallink_background_jobs.inc - Imports the documents
- globallink_background_pull in ./
globallink_background_jobs.inc - Pull submissions or documents
- globallink_background_send in ./
globallink_background_jobs.inc
File
- ./
globallink.inc, line 1144 - Miscellaneous GlobalLink functions for node translations (non-entity).
Code
function globallink_debug_enabled() {
if (variable_get('globallink_enable_debug', 0)) {
return TRUE;
}
return FALSE;
}