/**
  * Get the associated ChildJaPaginas object
  *
  * @param  ConnectionInterface $con Optional Connection object.
  * @return ChildJaPaginas The associated ChildJaPaginas object.
  * @throws PropelException
  */
 public function getJaPaginas(ConnectionInterface $con = null)
 {
     if ($this->aJaPaginas === null && $this->id_pagina !== null) {
         $this->aJaPaginas = ChildJaPaginasQuery::create()->findPk($this->id_pagina, $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->aJaPaginas->addJaPaginaCategoriass($this);
            */
     }
     return $this->aJaPaginas;
 }
Esempio n. 2
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 = ChildJaPaginasQuery::create();
     $criteria->add(JaPaginasTableMap::COL_ID, $this->id);
     return $criteria;
 }