/** * Returns a new ChildConfigCategoryI18nQuery object. * * @param string $modelAlias The alias of a model in the query * @param Criteria $criteria Optional Criteria to build the query from * * @return ChildConfigCategoryI18nQuery */ public static function create($modelAlias = null, Criteria $criteria = null) { if ($criteria instanceof ChildConfigCategoryI18nQuery) { return $criteria; } $query = new ChildConfigCategoryI18nQuery(); if (null !== $modelAlias) { $query->setModelAlias($modelAlias); } if ($criteria instanceof Criteria) { $query->mergeWith($criteria); } return $query; }
/** * 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|ChildConfigCategory The current object (for fluent API support) */ public function removeTranslation($locale = 'en_US', ConnectionInterface $con = null) { if (!$this->isNew()) { ChildConfigCategoryI18nQuery::create()->filterByPrimaryKey(array($this->getPrimaryKey(), $locale))->delete($con); } if (isset($this->currentTranslations[$locale])) { unset($this->currentTranslations[$locale]); } foreach ($this->collConfigCategoryI18ns as $key => $translation) { if ($translation->getLocale() == $locale) { unset($this->collConfigCategoryI18ns[$key]); break; } } return $this; }
/** * 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 = ChildConfigCategoryI18nQuery::create(); $criteria->add(ConfigCategoryI18nTableMap::COL_CONFIG_CATEGORY_ID, $this->config_category_id); $criteria->add(ConfigCategoryI18nTableMap::COL_LOCALE, $this->locale); return $criteria; }
/** * Performs an INSERT on the database, given a ConfigCategoryI18n or Criteria object. * * @param mixed $criteria Criteria or ConfigCategoryI18n 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(ConfigCategoryI18nTableMap::DATABASE_NAME); } if ($criteria instanceof Criteria) { $criteria = clone $criteria; // rename for clarity } else { $criteria = $criteria->buildCriteria(); // build Criteria from ConfigCategoryI18n object } // Set the correct dbName $query = ConfigCategoryI18nQuery::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); }); }