You are here

function webform_conditional_operators in Webform 7.4

Return a list of all Webform conditional operators.

4 calls to webform_conditional_operators()
WebformConditionals::executeConditionals in includes/webform.webformconditionals.inc
Executes the conditionals on a submission.
webform_conditional_operators_list in includes/webform.conditionals.inc
Return a nested list of all available operators, suitable for a select list.
webform_conditional_prepare_javascript in includes/webform.conditionals.inc
Loop through all the conditional settings and add needed JavaScript settings.
_webform_conditional_expand_value_forms in includes/webform.conditionals.inc
Expand out all the value forms that could potentially be used.

File

includes/webform.conditionals.inc, line 1002
Form elements and menu callbacks to provide conditional handling in Webform.

Code

function webform_conditional_operators() {
  static $operators;
  if (!isset($operators)) {
    $operators = module_invoke_all('webform_conditional_operator_info');
    drupal_alter('webform_conditional_operators', $operators);
  }
  return $operators;
}