You are here

function EvalMath::trigger in Webform Calculator 7

3 calls to EvalMath::trigger()
EvalMath::evaluate in ./evalmath.class.php
EvalMath::nfx in ./evalmath.class.php
EvalMath::pfx in ./evalmath.class.php

File

./evalmath.class.php, line 358

Class

EvalMath

Code

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