Exemplo n.º 1
0
 /**
  * Get the associated ChildTemplatenames object
  *
  * @param  ConnectionInterface $con Optional Connection object.
  * @return ChildTemplatenames The associated ChildTemplatenames object.
  * @throws PropelException
  */
 public function getTemplatenames(ConnectionInterface $con = null)
 {
     if ($this->aTemplatenames === null && $this->_templateid !== null) {
         $this->aTemplatenames = ChildTemplatenamesQuery::create()->findPk($this->_templateid, $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->aTemplatenames->addRRightsFortemplates($this);
            */
     }
     return $this->aTemplatenames;
 }
Exemplo n.º 2
0
 /**
  * Gets the number of Templatenames objects related by a many-to-many relationship
  * to the current object by way of the R_templatenames_inchapter cross-reference table.
  *
  * @param      Criteria $criteria Optional query object to filter the query
  * @param      boolean $distinct Set to true to force count distinct
  * @param      ConnectionInterface $con Optional connection object
  *
  * @return int the number of related Templatenames objects
  */
 public function countTemplatenamess(Criteria $criteria = null, $distinct = false, ConnectionInterface $con = null)
 {
     $partial = $this->collTemplatenamessPartial && !$this->isNew();
     if (null === $this->collTemplatenamess || null !== $criteria || $partial) {
         if ($this->isNew() && null === $this->collTemplatenamess) {
             return 0;
         } else {
             if ($partial && !$criteria) {
                 return count($this->getTemplatenamess());
             }
             $query = ChildTemplatenamesQuery::create(null, $criteria);
             if ($distinct) {
                 $query->distinct();
             }
             return $query->filterByFormats($this)->count($con);
         }
     } else {
         return count($this->collTemplatenamess);
     }
 }
Exemplo n.º 3
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 = ChildTemplatenamesQuery::create();
     $criteria->add(TemplatenamesTableMap::COL_ID, $this->id);
     return $criteria;
 }
Exemplo n.º 4
0
 /**
  * Returns a new ChildTemplatenamesQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param     Criteria $criteria Optional Criteria to build the query from
  *
  * @return ChildTemplatenamesQuery
  */
 public static function create($modelAlias = null, Criteria $criteria = null)
 {
     if ($criteria instanceof ChildTemplatenamesQuery) {
         return $criteria;
     }
     $query = new ChildTemplatenamesQuery();
     if (null !== $modelAlias) {
         $query->setModelAlias($modelAlias);
     }
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }