You are here

function ctools_math_expr::trigger in Chaos Tool Suite (ctools) 6

Same name and namespace in other branches
  1. 7 includes/math-expr.inc \ctools_math_expr::trigger()
3 calls to ctools_math_expr::trigger()
ctools_math_expr::evaluate in includes/math-expr.inc
ctools_math_expr::nfx in includes/math-expr.inc
ctools_math_expr::pfx in includes/math-expr.inc

File

includes/math-expr.inc, line 357

Class

ctools_math_expr

Code

function trigger($msg) {
  $this->last_error = $msg;
  if (!$this->suppress_errors) {
    trigger_error($msg, E_USER_WARNING);
  }
  return false;
}