예제 #1
0
 public function executeListConteudos(sfWebRequest $request)
 {
     $this->contentGroup = $this->getRoute()->getObject();
     $c = new Criteria();
     $this->getUser()->setAttribute('contentGroup', $this->contentGroup);
     $c->add(CmsmenuPeer::CMSGROUPCONTENT_ID, $this->contentGroup->getId());
     $this->menu = CmsmenuPeer::doSelect($c);
     $c = new Criteria();
     $c->add(CmspagePeer::CMSGROUPCONTENT_ID, $this->contentGroup->getId());
     $this->pages = CmspagePeer::doSelect($c);
 }
예제 #2
0
 /**
  * Retrieve multiple objects by pkey.
  *
  * @param      array $pks List of primary keys
  * @param      PropelPDO $con the connection to use
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function retrieveByPKs($pks, PropelPDO $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(CmsmenuPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(CmsmenuPeer::DATABASE_NAME);
         $criteria->add(CmsmenuPeer::ID, $pks, Criteria::IN);
         $objs = CmsmenuPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
예제 #3
0
 /**
  * If this collection has already been initialized with
  * an identical criteria, it returns the collection.
  * Otherwise if this Cmsgroupcontent is new, it will return
  * an empty collection; or if this Cmsgroupcontent has previously
  * been saved, it will retrieve related Cmsmenus from storage.
  *
  * This method is protected by default in order to keep the public
  * api reasonable.  You can provide public methods for those you
  * actually need in Cmsgroupcontent.
  */
 public function getCmsmenusJoinCmsmenuRelatedByParent($criteria = null, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     if ($criteria === null) {
         $criteria = new Criteria(CmsgroupcontentPeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collCmsmenus === null) {
         if ($this->isNew()) {
             $this->collCmsmenus = array();
         } else {
             $criteria->add(CmsmenuPeer::CMSGROUPCONTENT_ID, $this->id);
             $this->collCmsmenus = CmsmenuPeer::doSelectJoinCmsmenuRelatedByParent($criteria, $con, $join_behavior);
         }
     } else {
         // the following code is to determine if a new query is
         // called for.  If the criteria is the same as the last
         // one, just return the collection.
         $criteria->add(CmsmenuPeer::CMSGROUPCONTENT_ID, $this->id);
         if (!isset($this->lastCmsmenuCriteria) || !$this->lastCmsmenuCriteria->equals($criteria)) {
             $this->collCmsmenus = CmsmenuPeer::doSelectJoinCmsmenuRelatedByParent($criteria, $con, $join_behavior);
         }
     }
     $this->lastCmsmenuCriteria = $criteria;
     return $this->collCmsmenus;
 }
 /**
  * Method to invalidate the instance pool of all tables related to CMSGroupContent
  * by a foreign key with ON DELETE CASCADE
  */
 public static function clearRelatedInstancePool()
 {
     // invalidate objects in CmspagePeer instance pool, since one or more of them may be deleted by ON DELETE CASCADE rule.
     CmspagePeer::clearInstancePool();
     // invalidate objects in CmsmenuPeer instance pool, since one or more of them may be deleted by ON DELETE CASCADE rule.
     CmsmenuPeer::clearInstancePool();
 }