Ejemplo n.º 1
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 VocabularyHasUsers 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 getVocabularyHasUsers($criteria = null, $con = null)
 {
     // include the Peer class
     include_once 'lib/model/om/BaseVocabularyHasUserPeer.php';
     if ($criteria === null) {
         $criteria = new Criteria();
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collVocabularyHasUsers === null) {
         if ($this->isNew()) {
             $this->collVocabularyHasUsers = array();
         } else {
             $criteria->add(VocabularyHasUserPeer::USER_ID, $this->getId());
             VocabularyHasUserPeer::addSelectColumns($criteria);
             $this->collVocabularyHasUsers = VocabularyHasUserPeer::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(VocabularyHasUserPeer::USER_ID, $this->getId());
             VocabularyHasUserPeer::addSelectColumns($criteria);
             if (!isset($this->lastVocabularyHasUserCriteria) || !$this->lastVocabularyHasUserCriteria->equals($criteria)) {
                 $this->collVocabularyHasUsers = VocabularyHasUserPeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastVocabularyHasUserCriteria = $criteria;
     return $this->collVocabularyHasUsers;
 }
Ejemplo n.º 2
0
 /**
  * gets a list of users for the selected agent that have not been assigned to the current vocabulary
  *
  * @return array an array for select
  */
 public static function getNewUsersForVocabulary()
 {
     $results = array();
     $vocabulary = myActionTools::findCurrentVocabulary();
     if ($vocabulary) {
         //get the users for the agent
         $c = new Criteria();
         $c->addJoin(self::ID, AgentHasUserPeer::USER_ID, Criteria::LEFT_JOIN);
         $c->add(AgentHasUserPeer::AGENT_ID, $vocabulary->getAgentId(), Criteria::EQUAL);
         $c->addAscendingOrderByColumn(self::NICKNAME);
         $results = self::doSelect($c);
         //remove the current maintainers of the vocabulary
         $c = new Criteria();
         $c->add(VocabularyHasUserPeer::VOCABULARY_ID, $vocabulary->getId(), Criteria::EQUAL);
         $vocabUsers = VocabularyHasUserPeer::doSelect($c);
         /** @var $vocabUser VocabularyHasUser */
         foreach ($vocabUsers as $vocabUser) {
             $curId = $vocabUser->getUserId();
             /** @var $result User */
             foreach ($results as $key => $result) {
                 if ($result->getId() == $curId) {
                     unset($results[$key]);
                     break;
                 }
             }
         }
         $results = array_merge($results);
     }
     return $results;
 }
 /**
  * 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(VocabularyHasUserPeer::ID, $pks, Criteria::IN);
         $objs = VocabularyHasUserPeer::doSelect($criteria, $con);
     }
     return $objs;
 }