Example #1
0
 /**
  * This function performs the validation work for complex object models.
  *
  * In addition to checking the current object, all related objects will
  * also be validated.  If all pass then <code>true</code> is returned; otherwise
  * an aggreagated array of ValidationFailed objects will be returned.
  *
  * @param      array $columns Array of column names to validate.
  * @return     mixed <code>true</code> if all validations pass; array of <code>ValidationFailed</code> objets otherwise.
  */
 protected function doValidate($columns = null)
 {
     if (!$this->alreadyInValidation) {
         $this->alreadyInValidation = true;
         $retval = null;
         $failureMap = array();
         // We call the validate method on the following object(s) if they
         // were passed to this object by their coresponding set
         // method.  This object relates to these object(s) by a
         // foreign key reference.
         if ($this->aCategoryPreference !== null) {
             if (!$this->aCategoryPreference->validate($columns)) {
                 $failureMap = array_merge($failureMap, $this->aCategoryPreference->getValidationFailures());
             }
         }
         if ($this->aElement !== null) {
             if (!$this->aElement->validate($columns)) {
                 $failureMap = array_merge($failureMap, $this->aElement->getValidationFailures());
             }
         }
         if (($retval = PreferencePeer::doValidate($this, $columns)) !== true) {
             $failureMap = array_merge($failureMap, $retval);
         }
         $this->alreadyInValidation = false;
     }
     return !empty($failureMap) ? $failureMap : true;
 }
Example #2
0
 public function validate()
 {
     $errors = [];
     foreach ($this->getSetProps() as $set_prop) {
         $errors = array_merge($errors, (new IRI($set_prop))->validate());
     }
     return array_merge($errors, parent::validate());
 }
Example #3
0
 /**
  * Validates the argument instance.
  *
  * @return void
  * @throws PEAR2\Console\CommandLine_Exception
  * @todo use exceptions
  */
 public function validate()
 {
     // check if the argument name is valid
     if (!preg_match('/^[a-zA-Z_\\x7f-\\xff]+[a-zA-Z0-9_\\x7f-\\xff]*$/', $this->name)) {
         \PEAR2\Console\CommandLine::triggerError('argument_bad_name', E_USER_ERROR, array('{$name}' => $this->name));
     }
     if (!$this->optional && $this->default !== null) {
         Console_CommandLine::triggerError('argument_no_default', E_USER_ERROR);
     }
     parent::validate();
 }
Example #4
0
 public function validate()
 {
     return array_merge(parent::validate(), $this->validateTypedElement());
 }