Beispiel #1
0
 public function checkCityName($value, ExecutionContextInterface $context)
 {
     $isValid = InseeGeoMunicipalityQuery::create()->findOneById($value);
     if (!isset($isValid)) {
         $context->addViolation(Translator::getInstance()->trans('city.error', [], INSEEGeo::DOMAIN_NAME));
     }
 }
 /**
  * @param $zipcode
  * @param $name
  *
  * @return array
  */
 public function getCities($zipcode, $name)
 {
     $query = InseeGeoMunicipalityQuery::create();
     $query->useInseeGeoMunicipalityI18nQuery()->filterByName("*" . $name . "*")->endUse();
     return $query->findByZipCode($zipcode);
 }
 /**
  * Removes this object from datastore and sets delete attribute.
  *
  * @param      ConnectionInterface $con
  * @return void
  * @throws PropelException
  * @see InseeGeoMunicipality::setDeleted()
  * @see InseeGeoMunicipality::isDeleted()
  */
 public function delete(ConnectionInterface $con = null)
 {
     if ($this->isDeleted()) {
         throw new PropelException("This object has already been deleted.");
     }
     if ($con === null) {
         $con = Propel::getServiceContainer()->getWriteConnection(InseeGeoMunicipalityTableMap::DATABASE_NAME);
     }
     $con->beginTransaction();
     try {
         $deleteQuery = ChildInseeGeoMunicipalityQuery::create()->filterByPrimaryKey($this->getPrimaryKey());
         $ret = $this->preDelete($con);
         if ($ret) {
             $deleteQuery->delete($con);
             $this->postDelete($con);
             $con->commit();
             $this->setDeleted(true);
         } else {
             $con->commit();
         }
     } catch (Exception $e) {
         $con->rollBack();
         throw $e;
     }
 }
Beispiel #4
0
 /**
  * If this collection has already been initialized with
  * an identical criteria, it returns the collection.
  * Otherwise if this InseeGeoDepartment is new, it will return
  * an empty collection; or if this InseeGeoDepartment has previously
  * been saved, it will retrieve related InseeGeoMunicipalities from storage.
  *
  * This method is protected by default in order to keep the public
  * api reasonable.  You can provide public methods for those you
  * actually need in InseeGeoDepartment.
  *
  * @param      Criteria $criteria optional Criteria object to narrow the query
  * @param      ConnectionInterface $con optional connection object
  * @param      string $joinBehavior optional join type to use (defaults to Criteria::LEFT_JOIN)
  * @return Collection|ChildInseeGeoMunicipality[] List of ChildInseeGeoMunicipality objects
  */
 public function getInseeGeoMunicipalitiesJoinInseeGeoRegion($criteria = null, $con = null, $joinBehavior = Criteria::LEFT_JOIN)
 {
     $query = ChildInseeGeoMunicipalityQuery::create(null, $criteria);
     $query->joinWith('InseeGeoRegion', $joinBehavior);
     return $this->getInseeGeoMunicipalities($query, $con);
 }
 /**
  * Performs an INSERT on the database, given a InseeGeoMunicipality or Criteria object.
  *
  * @param mixed               $criteria Criteria or InseeGeoMunicipality object containing data that is used to create the INSERT statement.
  * @param ConnectionInterface $con the ConnectionInterface connection to use
  * @return mixed           The new primary key.
  * @throws PropelException Any exceptions caught during processing will be
  *         rethrown wrapped into a PropelException.
  */
 public static function doInsert($criteria, ConnectionInterface $con = null)
 {
     if (null === $con) {
         $con = Propel::getServiceContainer()->getWriteConnection(InseeGeoMunicipalityTableMap::DATABASE_NAME);
     }
     if ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
         // rename for clarity
     } else {
         $criteria = $criteria->buildCriteria();
         // build Criteria from InseeGeoMunicipality object
     }
     // Set the correct dbName
     $query = InseeGeoMunicipalityQuery::create()->mergeWith($criteria);
     try {
         // use transaction because $criteria could contain info
         // for more than one table (I guess, conceivably)
         $con->beginTransaction();
         $pk = $query->doInsert($con);
         $con->commit();
     } catch (PropelException $e) {
         $con->rollBack();
         throw $e;
     }
     return $pk;
 }
 /**
  * Get the associated ChildInseeGeoMunicipality object
  *
  * @param      ConnectionInterface $con Optional Connection object.
  * @return                 ChildInseeGeoMunicipality The associated ChildInseeGeoMunicipality object.
  * @throws PropelException
  */
 public function getInseeGeoMunicipality(ConnectionInterface $con = null)
 {
     if ($this->aInseeGeoMunicipality === null && ($this->id !== "" && $this->id !== null)) {
         $this->aInseeGeoMunicipality = ChildInseeGeoMunicipalityQuery::create()->findPk($this->id, $con);
         /* The following can be used additionally to
               guarantee the related object contains a reference
               to this object.  This level of coupling may, however, be
               undesirable since it could result in an only partially populated collection
               in the referenced object.
               $this->aInseeGeoMunicipality->addInseeGeoMunicipalityI18ns($this);
            */
     }
     return $this->aInseeGeoMunicipality;
 }