_catchAllErrors = $newValue ? true : false; } /** * Set which errors should be ignored * * @param array $newArray */ public function setSkipErrorsArray($newArray) { if (is_array($newArray)) { $this->_skipErrorsArray = $newArray; } } /** * Throw connector error, return true if error has been thrown, false if error has been catched * * @param int $number * @param string $text * @access public */ public function throwError($number, $text = false) { if ($this->_catchAllErrors || in_array($number, $this->_skipErrorsArray)) { return false; } $_xml =& CKFinder_Connector_Core_Factory::getInstance("Core_Xml"); $_xml->raiseError($number,$text); exit; } }