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(SessionPeer::SES_UID, $pks, Criteria::IN); $objs = SessionPeer::doSelect($criteria, $con); } return $objs; } } // static code to register the map builder for this Peer with the main Propel class if (Propel::isInit()) { // the MapBuilder classes register themselves with Propel during initialization // so we need to load them here. try { BaseSessionPeer::getMapBuilder(); } catch (Exception $e) { Propel::log('Could not initialize Peer: ' . $e->getMessage(), Propel::LOG_ERR); } } else { // even if Propel is not yet initialized, the map builder class can be registered // now and then it will be loaded when Propel initializes. require_once 'classes/model/map/SessionMapBuilder.php'; Propel::registerMapBuilder('classes.model.map.SessionMapBuilder'); }
* @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(SessionPeer::DATABASE_NAME, Propel::CONNECTION_READ); } $objs = null; if (empty($pks)) { $objs = array(); } else { $criteria = new Criteria(SessionPeer::DATABASE_NAME); $criteria->add(SessionPeer::ID, $pks, Criteria::IN); $objs = SessionPeer::doSelect($criteria, $con); } return $objs; } } // BaseSessionPeer // This is the static code needed to register the MapBuilder for this table with the main Propel class. // // NOTE: This static code cannot call methods on the SessionPeer class, because it is not defined yet. // If you need to use overridden methods, you can add this code to the bottom of the SessionPeer class: // // Propel::getDatabaseMap(SessionPeer::DATABASE_NAME)->addTableBuilder(SessionPeer::TABLE_NAME, SessionPeer::getMapBuilder()); // // Doing so will effectively overwrite the registration below. Propel::getDatabaseMap(BaseSessionPeer::DATABASE_NAME)->addTableBuilder(BaseSessionPeer::TABLE_NAME, BaseSessionPeer::getMapBuilder());