/** * Sets validator prefixes. * * @throws PIECE_UNITY_ERROR_INVALID_CONFIGURATION */ function _setValidatorPrefixes() { $validatorPrefixes = $this->_getConfiguration('validatorPrefixes'); if (!is_array($validatorPrefixes)) { Piece_Unity_Error::push(PIECE_UNITY_ERROR_INVALID_CONFIGURATION, "The value of the configuration point [ validatorPrefixes ] on the plug-in [ {$this->_name} ] should be an array."); return; } foreach (array_reverse($validatorPrefixes) as $validatorPrefix) { Piece_Unity_Validation::addValidatorPrefix($validatorPrefix); } }
/** * Sets validator prefixes. * * @throws Piece_Unity_Exception */ private function _setValidatorPrefixes() { foreach (array_reverse($this->validatorPrefixes) as $validatorPrefix) { Piece_Unity_Validation::addValidatorPrefix($validatorPrefix); } }
/** * Sets validator prefixes. */ function _setValidatorPrefixes() { $validatorPrefixes = $this->_getConfiguration('validationValidatorPrefixes'); if (!is_array($validatorPrefixes)) { trigger_error('Failed to configure the configuration point [ validationValidatorPrefixes ] at the plugin [ ' . __CLASS__ . ' ].', E_USER_WARNING); return; } foreach (array_reverse($validatorPrefixes) as $validatorPrefix) { Piece_Unity_Validation::addValidatorPrefix($validatorPrefix); } }