/** * 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->aMission !== null) { if (!$this->aMission->validate($columns)) { $failureMap = array_merge($failureMap, $this->aMission->getValidationFailures()); } } if ($this->aCompanion !== null) { if (!$this->aCompanion->validate($columns)) { $failureMap = array_merge($failureMap, $this->aCompanion->getValidationFailures()); } } if (($retval = MissionCompanionPeer::doValidate($this, $columns)) !== true) { $failureMap = array_merge($failureMap, $retval); } $this->alreadyInValidation = false; } return !empty($failureMap) ? $failureMap : true; }
/** * 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->aMission !== null) { if (!$this->aMission->validate($columns)) { $failureMap = array_merge($failureMap, $this->aMission->getValidationFailures()); } } if ($this->aAirportRelatedByFromAirportId !== null) { if (!$this->aAirportRelatedByFromAirportId->validate($columns)) { $failureMap = array_merge($failureMap, $this->aAirportRelatedByFromAirportId->getValidationFailures()); } } if ($this->aAirportRelatedByToAirportId !== null) { if (!$this->aAirportRelatedByToAirportId->validate($columns)) { $failureMap = array_merge($failureMap, $this->aAirportRelatedByToAirportId->getValidationFailures()); } } if ($this->aCoordinator !== null) { if (!$this->aCoordinator->validate($columns)) { $failureMap = array_merge($failureMap, $this->aCoordinator->getValidationFailures()); } } if ($this->aPilotRelatedByPilotId !== null) { if (!$this->aPilotRelatedByPilotId->validate($columns)) { $failureMap = array_merge($failureMap, $this->aPilotRelatedByPilotId->getValidationFailures()); } } if ($this->aMemberRelatedByCopilotId !== null) { if (!$this->aMemberRelatedByCopilotId->validate($columns)) { $failureMap = array_merge($failureMap, $this->aMemberRelatedByCopilotId->getValidationFailures()); } } if ($this->aPilotRelatedByBackupPilotId !== null) { if (!$this->aPilotRelatedByBackupPilotId->validate($columns)) { $failureMap = array_merge($failureMap, $this->aPilotRelatedByBackupPilotId->getValidationFailures()); } } if ($this->aMemberRelatedByBackupCopilotId !== null) { if (!$this->aMemberRelatedByBackupCopilotId->validate($columns)) { $failureMap = array_merge($failureMap, $this->aMemberRelatedByBackupCopilotId->getValidationFailures()); } } if ($this->aMissionReport !== null) { if (!$this->aMissionReport->validate($columns)) { $failureMap = array_merge($failureMap, $this->aMissionReport->getValidationFailures()); } } if ($this->aPilotAircraft !== null) { if (!$this->aPilotAircraft->validate($columns)) { $failureMap = array_merge($failureMap, $this->aPilotAircraft->getValidationFailures()); } } if ($this->aFbo !== null) { if (!$this->aFbo->validate($columns)) { $failureMap = array_merge($failureMap, $this->aFbo->getValidationFailures()); } } if (($retval = MissionLegPeer::doValidate($this, $columns)) !== true) { $failureMap = array_merge($failureMap, $retval); } if ($this->singleAfaLeg !== null) { if (!$this->singleAfaLeg->validate($columns)) { $failureMap = array_merge($failureMap, $this->singleAfaLeg->getValidationFailures()); } } if ($this->collMissionPhotos !== null) { foreach ($this->collMissionPhotos as $referrerFK) { if (!$referrerFK->validate($columns)) { $failureMap = array_merge($failureMap, $referrerFK->getValidationFailures()); } } } if ($this->collPilotRequests !== null) { foreach ($this->collPilotRequests as $referrerFK) { if (!$referrerFK->validate($columns)) { $failureMap = array_merge($failureMap, $referrerFK->getValidationFailures()); } } } $this->alreadyInValidation = false; } return !empty($failureMap) ? $failureMap : true; }