Пример #1
0
 public function getGrupos()
 {
     $c = new Criteria();
     $c->addJoin(GrupoPeer::ID_GRUPO, UsuarioGrupoPeer::ID_GRUPO);
     $c->add(UsuarioGrupoPeer::ID_USUARIO, $this->getPrimaryKey());
     $grupos = GrupoPeer::doSelect($c);
     return $grupos;
 }
Пример #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(GrupoPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(GrupoPeer::DATABASE_NAME);
         $criteria->add(GrupoPeer::ID_GRUPO, $pks, Criteria::IN);
         $objs = GrupoPeer::doSelect($criteria, $con);
     }
     return $objs;
 }