You are here

function adsense_basic_adsense in Google AdSense integration 5.2

File

./adsense_basic.module, line 9

Code

function adsense_basic_adsense($op, $args = array()) {
  switch ($op) {
    case 'status':
      $error_flag = FALSE;
      if (!variable_get(ADSENSE_BASIC_ID, '')) {
        adsense_basic_error(ADSENSE_BASIC_ERROR_NOT_CONFIGURED);
        $error_flag = TRUE;
      }
      return $error_flag;
    case 'settings':
      return adsense_basic_settings();
    case 'client_id':
      return adsense_basic_client_id();
  }
}