You are here

function ytarget_form_alter in Webform Yandex Goals 7

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

File

./ytarget.module, line 138

Code

function ytarget_form_alter(&$form, &$form_state, $fid) {
  if (preg_match('|^webform_client_form_(\\d)*|', $fid)) {
    if ($form['#node']->webform['redirect_url'] !== '<confirmation>') {
      $form['#submit'][] = 'ytarget_submit_webform';
    }
  }
}