function ytarget_preprocess_webform_confirmation in Webform Yandex Goals 7.2
Same name and namespace in other branches
- 7 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);
}
}