Home
last modified time | relevance | path

Searched refs:_params_type (Results 1 – 1 of 1) sorted by relevance

/plugin/freechat/phpfreechat/src/
H A Dpfcglobalconfig.class.php640 var $_params_type = array(); variable in pfcGlobalConfig
764 if (is_string($v)) $this->_params_type["string"][] = $k;
765 else if (is_bool($v)) $this->_params_type["bool"][] = $k;
766 else if (is_array($v)) $this->_params_type["array"][] = $k;
767 else if (is_int($v) && $v>0) $this->_params_type["positivenumeric"][] = $k;
768 else $this->_params_type["misc"][] = $k;
781 $array_params = $this->_params_type["array"];
787 $numerical_positive_params = $this->_params_type["positivenumeric"];
793 $boolean_params = $this->_params_type["bool"];
799 $string_params = $this->_params_type["string"];