public function executeList()
 {
     $idType = $this->getRequestParameter('IdType', null);
     $id = $this->getRequestParameter('id', null);
     if (!$idType) {
         //a current vocabulary is required to be in the request URL
         myActionTools::requireVocabularyFilter();
     } else {
         $this->getRequest()->getParameterHolder()->set($idType, $id);
     }
     $vocabulary = myActionTools::findCurrentVocabulary();
     if ($vocabulary) {
         $this->vocabulary = $vocabulary;
         if (in_array($idType, array('concept_id', 'property_id'))) {
             $this->concept = myActionTools::findCurrentConcept();
             $this->setFlash('hasConcept', true);
         }
         //get the versions array
         $c = new Criteria();
         $c->add(VocabularyHasVersionPeer::VOCABULARY_ID, $vocabulary->getId());
         $versions = VocabularyHasVersionPeer::doSelect($c);
         $this->setFlash('versions', $versions);
     }
     parent::executeList();
 }
 /**
  * Retrieve multiple objects by pkey.
  *
  * @param      array $pks List of primary keys
  * @param      Connection $con the connection to use
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function retrieveByPKs($pks, $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(self::DATABASE_NAME);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria();
         $criteria->add(VocabularyHasVersionPeer::ID, $pks, Criteria::IN);
         $objs = VocabularyHasVersionPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
Esempio n. 3
0
 /**
  * If this collection has already been initialized with
  * an identical criteria, it returns the collection.
  * Otherwise if this User has previously
  * been saved, it will retrieve related VocabularyHasVersions from storage.
  * If this User is new, it will return
  * an empty collection or the current collection, the criteria
  * is ignored on a new object.
  *
  * @param      Connection $con
  * @param      Criteria $criteria
  * @throws     PropelException
  */
 public function getVocabularyHasVersions($criteria = null, $con = null)
 {
     // include the Peer class
     include_once 'lib/model/om/BaseVocabularyHasVersionPeer.php';
     if ($criteria === null) {
         $criteria = new Criteria();
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collVocabularyHasVersions === null) {
         if ($this->isNew()) {
             $this->collVocabularyHasVersions = array();
         } else {
             $criteria->add(VocabularyHasVersionPeer::CREATED_USER_ID, $this->getId());
             VocabularyHasVersionPeer::addSelectColumns($criteria);
             $this->collVocabularyHasVersions = VocabularyHasVersionPeer::doSelect($criteria, $con);
         }
     } else {
         // criteria has no effect for a new object
         if (!$this->isNew()) {
             // 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(VocabularyHasVersionPeer::CREATED_USER_ID, $this->getId());
             VocabularyHasVersionPeer::addSelectColumns($criteria);
             if (!isset($this->lastVocabularyHasVersionCriteria) || !$this->lastVocabularyHasVersionCriteria->equals($criteria)) {
                 $this->collVocabularyHasVersions = VocabularyHasVersionPeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastVocabularyHasVersionCriteria = $criteria;
     return $this->collVocabularyHasVersions;
 }