You are here

function webform_rules_condition_webform_id in Webform Rules 6

Function to compare the form id of the submitted webform with the selected form.

File

./webform_rules.rules.inc, line 80
Functions for rules integration.

Code

function webform_rules_condition_webform_id($form_id, $selected_webform) {
  return $form_id == $selected_webform;
}