Lines Matching refs:options

281      * @param mixed $options
307 function setErrorHandling($mode = null, $options = null) argument
325 $setoptions = $options;
331 if (is_callable($options)) {
332 $setoptions = $options;
454 * @param mixed $options If $mode is PEAR_ERROR_TRIGGER, this parameter
479 $options = null, argument
512 $options = $this->_default_error_options;
516 $options = $GLOBALS['_PEAR_default_error_options'];
535 $a = new $ec($code, $mode, $options, $userinfo);
537 $a = new $ec($message, $code, $mode, $options, $userinfo);
570 function staticPushErrorHandling($mode, $options = null) argument
584 $def_options = $options;
590 if (is_callable($options)) {
591 $def_options = $options;
601 $stack[] = array($mode, $options);
611 list($mode, $options) = $stack[sizeof($stack) - 1];
621 $setoptions = $options;
627 if (is_callable($options)) {
628 $setoptions = $options;
647 * @param mixed $options (same as setErrorHandling)
653 function pushErrorHandling($mode, $options = null) argument
666 $this->setErrorHandling($mode, $options);
668 PEAR::setErrorHandling($mode, $options);
670 $stack[] = array($mode, $options);
685 list($mode, $options) = $stack[sizeof($stack) - 1];
688 $this->setErrorHandling($mode, $options);
690 PEAR::setErrorHandling($mode, $options);
821 * @param mixed $options (optional) error level, _OR_ in the case of
831 $mode = null, $options = null, $userinfo = null) argument
856 $this->callback = $options;
858 if ($options === null) {
859 $options = E_USER_NOTICE;
862 $this->level = $options;
867 if (is_null($options) || is_int($options)) {
870 $format = $options;
882 if (is_null($options) || is_int($options)) {
888 $format = $options;