Ejemplo n.º 1
0
 public static function getOptionsForSelect($c = null)
 {
     if (is_null($c)) {
         $c = new Criteria();
     }
     $cities = array();
     $cities_temp = CityPeer::doSelect($c);
     foreach ($cities_temp as $city) {
         $cities[$city->getId()] = $city->__toString();
     }
     return $cities;
 }
Ejemplo n.º 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(CityPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(CityPeer::DATABASE_NAME);
         $criteria->add(CityPeer::ID, $pks, Criteria::IN);
         $objs = CityPeer::doSelect($criteria, $con);
     }
     return $objs;
 }