You are here

function _adsense_check_placeholder in Google AdSense integration 5.2

Same name and namespace in other branches
  1. 5 adsense.module \_adsense_check_placeholder()
1 call to _adsense_check_placeholder()
adsense_display in ./adsense.module

File

./adsense.module, line 1058

Code

function _adsense_check_placeholder() {
  if (variable_get(ADSENSE_PLACEHOLDER, '1')) {

    // Ads are globally disabled and a place holder is set
    return TRUE;
  }
  else {
    return FALSE;
  }
}