Example #1
0
 /**
  * Gets a single ChildContentArea object, which is related to this object by a one-to-one relationship.
  *
  * @param  ConnectionInterface $con optional connection object
  * @return ChildContentArea
  * @throws PropelException
  */
 public function getContentArea(ConnectionInterface $con = null)
 {
     if ($this->singleContentArea === null && !$this->isNew()) {
         $this->singleContentArea = ChildContentAreaQuery::create()->findPk($this->getPrimaryKey(), $con);
     }
     return $this->singleContentArea;
 }
 /**
  * Returns a new ChildContentAreaQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param     Criteria $criteria Optional Criteria to build the query from
  *
  * @return ChildContentAreaQuery
  */
 public static function create($modelAlias = null, Criteria $criteria = null)
 {
     if ($criteria instanceof ChildContentAreaQuery) {
         return $criteria;
     }
     $query = new ChildContentAreaQuery();
     if (null !== $modelAlias) {
         $query->setModelAlias($modelAlias);
     }
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }
Example #3
0
 /**
  * Checks whether the current state must be recorded as a version
  *
  * @return  boolean
  */
 public function isVersioningNecessary($con = null)
 {
     if ($this->alreadyInSave) {
         return false;
     }
     if ($this->enforceVersion) {
         return true;
     }
     if (ChildContentAreaQuery::isVersioningEnabled() && ($this->isNew() || $this->isModified()) || $this->isDeleted()) {
         return true;
     }
     return false;
 }
 /**
  * Get the associated ChildContentArea object
  *
  * @param  ConnectionInterface $con Optional Connection object.
  * @return ChildContentArea The associated ChildContentArea object.
  * @throws PropelException
  */
 public function getContentArea(ConnectionInterface $con = null)
 {
     if ($this->aContentArea === null && $this->id !== null) {
         $this->aContentArea = ChildContentAreaQuery::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->aContentArea->addContentAreaVersions($this);
            */
     }
     return $this->aContentArea;
 }
 /**
  * Performs an INSERT on the database, given a ContentArea or Criteria object.
  *
  * @param mixed               $criteria Criteria or ContentArea 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(ContentAreaTableMap::DATABASE_NAME);
     }
     if ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
         // rename for clarity
     } else {
         $criteria = $criteria->buildCriteria();
         // build Criteria from ContentArea object
     }
     // Set the correct dbName
     $query = ContentAreaQuery::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);
     });
 }