Example #1
0
 /**
  * Get the associated ChildTemplates object
  *
  * @param  ConnectionInterface $con Optional Connection object.
  * @return ChildTemplates The associated ChildTemplates object.
  * @throws PropelException
  */
 public function getTemplates(ConnectionInterface $con = null)
 {
     if ($this->aTemplates === null && $this->_fortemplatefield !== null) {
         $this->aTemplates = ChildTemplatesQuery::create()->findPk($this->_fortemplatefield, $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->aTemplates->addDatas($this);
            */
     }
     return $this->aTemplates;
 }
Example #2
0
 /**
  * Returns a new ChildTemplatesQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param     Criteria $criteria Optional Criteria to build the query from
  *
  * @return ChildTemplatesQuery
  */
 public static function create($modelAlias = null, Criteria $criteria = null)
 {
     if ($criteria instanceof ChildTemplatesQuery) {
         return $criteria;
     }
     $query = new ChildTemplatesQuery();
     if (null !== $modelAlias) {
         $query->setModelAlias($modelAlias);
     }
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }
Example #3
0
 /**
  * Returns the number of related Templates objects.
  *
  * @param      Criteria $criteria
  * @param      boolean $distinct
  * @param      ConnectionInterface $con
  * @return int             Count of related Templates objects.
  * @throws PropelException
  */
 public function countTemplatess(Criteria $criteria = null, $distinct = false, ConnectionInterface $con = null)
 {
     $partial = $this->collTemplatessPartial && !$this->isNew();
     if (null === $this->collTemplatess || null !== $criteria || $partial) {
         if ($this->isNew() && null === $this->collTemplatess) {
             return 0;
         }
         if ($partial && !$criteria) {
             return count($this->getTemplatess());
         }
         $query = ChildTemplatesQuery::create(null, $criteria);
         if ($distinct) {
             $query->distinct();
         }
         return $query->filterByTemplatenames($this)->count($con);
     }
     return count($this->collTemplatess);
 }
Example #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 = ChildTemplatesQuery::create();
     $criteria->add(TemplatesTableMap::COL_ID, $this->id);
     return $criteria;
 }