Lines Matching refs:options

302      * @param mixed $options
329 function setErrorHandling($mode = null, $options = null) argument
347 $setoptions = $options;
353 if (is_callable($options)) {
354 $setoptions = $options;
496 * @param mixed $options If $mode is PEAR_ERROR_TRIGGER, this parameter
521 $options = null, argument
547 $options = $this->_default_error_options;
551 $options = $GLOBALS['_PEAR_default_error_options'];
563 $a = &new $ec($code, $mode, $options, $userinfo);
566 $a = &new $ec($message, $code, $mode, $options, $userinfo);
595 function staticPushErrorHandling($mode, $options = null) argument
609 $def_options = $options;
615 if (is_callable($options)) {
616 $def_options = $options;
626 $stack[] = array($mode, $options);
636 list($mode, $options) = $stack[sizeof($stack) - 1];
646 $setoptions = $options;
652 if (is_callable($options)) {
653 $setoptions = $options;
674 * @param mixed $options (same as setErrorHandling)
680 function pushErrorHandling($mode, $options = null) argument
693 $this->setErrorHandling($mode, $options);
695 PEAR::setErrorHandling($mode, $options);
697 $stack[] = array($mode, $options);
715 list($mode, $options) = $stack[sizeof($stack) - 1];
718 $this->setErrorHandling($mode, $options);
720 PEAR::setErrorHandling($mode, $options);
842 * @param mixed $options (optional) error level, _OR_ in the case of
852 $mode = null, $options = null, $userinfo = null) argument
868 $this->callback = $options;
870 if ($options === null) {
871 $options = E_USER_NOTICE;
873 $this->level = $options;
877 if (is_null($options) || is_int($options)) {
880 $format = $options;
889 if (is_null($options) || is_int($options)) {
895 $format = $options;