コード例 #1
0
ファイル: BaseStatePeer.php プロジェクト: rewrewby/propertyx
 /**
  * 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(StatePeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(StatePeer::DATABASE_NAME);
         $criteria->add(StatePeer::ID, $pks, Criteria::IN);
         $objs = StatePeer::doSelect($criteria, $con);
     }
     return $objs;
 }
コード例 #2
0
ファイル: actions.class.php プロジェクト: rewrewby/propertyx
 /**
  * Executes index action
  *
  * @param sfWebRequest $request
  */
 public function executeIndex(sfWebRequest $request)
 {
     $this->state_list = StatePeer::doSelect(new Criteria());
 }