You are here

function cleantalk_preprocess_page in Anti Spam by CleanTalk 8

File

./cleantalk.module, line 158
Main CleanTalk integration module functions.

Code

function cleantalk_preprocess_page(&$variables) {

  //drupal_session_initialize();

  //drupal_save_session(true);
  if ($_SERVER['REQUEST_METHOD'] == 'GET') {
    $_SESSION['ct_submit_comment_time'] = REQUEST_TIME;
    $_SESSION['ct_submit_register_time'] = REQUEST_TIME;
  }
  $ct_check_def = '0';
  $ct_check_value = _cleantalk_get_checkjs_value();
  $js_template = 'function ctSetCookie(c_name, value, def_value) {
  document.cookie = c_name + "=" + escape(value.replace(/^def_value$/, value)) + "; path=/";
}
setTimeout("ctSetCookie(\\"%s\\", \\"%s\\", \\"%s\\");",1000);';
  $js_addon_body = sprintf($js_template, 'ct_checkjs', $ct_check_value, $ct_check_def);
  $variables['page']['content']['#attached']['html_head'][] = array(
    array(
      '#tag' => 'script',
      '#value' => $js_addon_body,
    ),
    'ga_scripts',
  );
}