/**
  * Performs an INSERT on the database, given a PromotionTypeI18n or Criteria object.
  *
  * @param mixed               $criteria Criteria or PromotionTypeI18n 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(PromotionTypeI18nTableMap::DATABASE_NAME);
     }
     if ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
         // rename for clarity
     } else {
         $criteria = $criteria->buildCriteria();
         // build Criteria from PromotionTypeI18n object
     }
     // Set the correct dbName
     $query = PromotionTypeI18nQuery::create()->mergeWith($criteria);
     // use transaction because $criteria could contain info
     // for more than one table (I guess, conceivably)
     return $con->transaction(function () use($con, $query) {
         return $query->doInsert($con);
     });
 }
Ejemplo n.º 2
0
 /**
  * Remove the translation for a given locale
  *
  * @param     string $locale Locale to use for the translation, e.g. 'fr_FR'
  * @param     ConnectionInterface $con an optional connection object
  *
  * @return    $this|ChildPromotionType The current object (for fluent API support)
  */
 public function removeTranslation($locale = 'en_US', ConnectionInterface $con = null)
 {
     if (!$this->isNew()) {
         ChildPromotionTypeI18nQuery::create()->filterByPrimaryKey(array($this->getPrimaryKey(), $locale))->delete($con);
     }
     if (isset($this->currentTranslations[$locale])) {
         unset($this->currentTranslations[$locale]);
     }
     foreach ($this->collPromotionTypeI18ns as $key => $translation) {
         if ($translation->getLocale() == $locale) {
             unset($this->collPromotionTypeI18ns[$key]);
             break;
         }
     }
     return $this;
 }
Ejemplo n.º 3
0
 /**
  * Returns a new ChildPromotionTypeI18nQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param     Criteria $criteria Optional Criteria to build the query from
  *
  * @return ChildPromotionTypeI18nQuery
  */
 public static function create($modelAlias = null, Criteria $criteria = null)
 {
     if ($criteria instanceof ChildPromotionTypeI18nQuery) {
         return $criteria;
     }
     $query = new ChildPromotionTypeI18nQuery();
     if (null !== $modelAlias) {
         $query->setModelAlias($modelAlias);
     }
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }
Ejemplo n.º 4
0
 /**
  * Builds a Criteria object containing the primary key for this object.
  *
  * Unlike buildCriteria() this method includes the primary key values regardless
  * of whether or not they have been modified.
  *
  * @throws LogicException if no primary key is defined
  *
  * @return Criteria The Criteria object containing value(s) for primary key(s).
  */
 public function buildPkeyCriteria()
 {
     $criteria = ChildPromotionTypeI18nQuery::create();
     $criteria->add(PromotionTypeI18nTableMap::COL_PROMOTION_TYPE_ID, $this->promotion_type_id);
     $criteria->add(PromotionTypeI18nTableMap::COL_LOCALE, $this->locale);
     return $criteria;
 }