function ctools_math_expr::trigger in Chaos Tool Suite (ctools) 6
Same name and namespace in other branches
- 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
Code
function trigger($msg) {
$this->last_error = $msg;
if (!$this->suppress_errors) {
trigger_error($msg, E_USER_WARNING);
}
return false;
}