You are here

function ytarget_preprocess_webform_confirmation in Webform Yandex Goals 7

Same name and namespace in other branches
  1. 7.2 ytarget.module \ytarget_preprocess_webform_confirmation()

File

./ytarget.module, line 76

Code

function ytarget_preprocess_webform_confirmation(&$vars) {
  $id = variable_get('ytarget_id', '');
  if ($id && isset($vars['node']->webform)) {
    $nid = $vars['node']->nid;
    ytarget_execute_goal($id, $nid);
  }
}