Ejemplo n.º 1
0
 /**
  * Selects a collection of {@link Movie} objects with a {@link MovieI18n} translation populated.
  *
  * @param Criteria  $criteria
  * @param string    $culture
  * @param PropelPDO $con
  * @param string    $join_behavior
  *
  * @return array
  */
 public static function doSelectWithI18n(Criteria $criteria, $culture = null, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $criteria = clone $criteria;
     if (null === $culture) {
         $culture = sfPropel::getDefaultCulture();
     }
     // Set the correct dbName if it has not been overridden
     if ($criteria->getDbName() == Propel::getDefaultDB()) {
         $criteria->setDbName(self::DATABASE_NAME);
     }
     MoviePeer::addSelectColumns($criteria);
     $startcol = MoviePeer::NUM_COLUMNS - MoviePeer::NUM_LAZY_LOAD_COLUMNS;
     MovieI18nPeer::addSelectColumns($criteria);
     $criteria->addJoin(MoviePeer::ID, MovieI18nPeer::ID, $join_behavior);
     $criteria->add(MovieI18nPeer::CULTURE, $culture);
     foreach (sfMixer::getCallables('BaseMovie:doSelectJoin:doSelectJoin') as $sf_hook) {
         call_user_func($sf_hook, 'Movie', $criteria, $con);
     }
     $stmt = BasePeer::doSelect($criteria, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = MoviePeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = MoviePeer::getInstanceFromPool($key1))) {
             // We no longer rehydrate the object, since this can cause data loss.
             // See http://propel.phpdb.org/trac/ticket/509
             // $obj1->hydrate($row, 0, true); // rehydrate
         } else {
             $cls = MoviePeer::getOMClass(false);
             $obj1 = new $cls();
             $obj1->hydrate($row);
             MoviePeer::addInstanceToPool($obj1, $key1);
         }
         // if $obj1 already loaded
         $key2 = MovieI18nPeer::getPrimaryKeyHashFromRow($row, $startcol);
         if ($key2 !== null) {
             $obj2 = MovieI18nPeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $cls = MovieI18nPeer::getOMClass(false);
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol);
                 MovieI18nPeer::addInstanceToPool($obj2, $key2);
             }
             // if obj2 already loaded
             $obj1->setMovieI18nForCulture($obj2, $culture);
         }
         // if joined row was not null
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }
 /**
  * Selects a collection of MovieI18n objects pre-filled with all related objects.
  *
  * @param      Criteria  $criteria
  * @param      PropelPDO $con
  * @param      String    $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
  * @return     array Array of MovieI18n objects.
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function doSelectJoinAll(Criteria $criteria, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $criteria = clone $criteria;
     // Set the correct dbName if it has not been overridden
     if ($criteria->getDbName() == Propel::getDefaultDB()) {
         $criteria->setDbName(self::DATABASE_NAME);
     }
     MovieI18nPeer::addSelectColumns($criteria);
     $startcol2 = MovieI18nPeer::NUM_COLUMNS - MovieI18nPeer::NUM_LAZY_LOAD_COLUMNS;
     MoviePeer::addSelectColumns($criteria);
     $startcol3 = $startcol2 + (MoviePeer::NUM_COLUMNS - MoviePeer::NUM_LAZY_LOAD_COLUMNS);
     $criteria->addJoin(MovieI18nPeer::ID, MoviePeer::ID, $join_behavior);
     // symfony_behaviors behavior
     foreach (sfMixer::getCallables(self::getMixerPreSelectHook(__FUNCTION__)) as $sf_hook) {
         call_user_func($sf_hook, 'BaseMovieI18nPeer', $criteria, $con);
     }
     $stmt = BasePeer::doSelect($criteria, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = MovieI18nPeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = MovieI18nPeer::getInstanceFromPool($key1))) {
             // We no longer rehydrate the object, since this can cause data loss.
             // See http://propel.phpdb.org/trac/ticket/509
             // $obj1->hydrate($row, 0, true); // rehydrate
         } else {
             $cls = MovieI18nPeer::getOMClass(false);
             $obj1 = new $cls();
             $obj1->hydrate($row);
             MovieI18nPeer::addInstanceToPool($obj1, $key1);
         }
         // if obj1 already loaded
         // Add objects for joined Movie rows
         $key2 = MoviePeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = MoviePeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $cls = MoviePeer::getOMClass(false);
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 MoviePeer::addInstanceToPool($obj2, $key2);
             }
             // if obj2 loaded
             // Add the $obj1 (MovieI18n) to the collection in $obj2 (Movie)
             $obj2->addMovieI18n($obj1);
         }
         // if joined row not null
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }
Ejemplo n.º 3
0
 public static function retrieveByPK($pk, PropelPDO $con = null)
 {
     if (null !== ($obj = MoviePeer::getInstanceFromPool((string) $pk))) {
         return $obj;
     }
     if ($con === null) {
         $con = Propel::getConnection(MoviePeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $criteria = new Criteria(MoviePeer::DATABASE_NAME);
     $criteria->add(MoviePeer::ID, $pk);
     $v = MoviePeer::doSelect($criteria, $con);
     return !empty($v) > 0 ? $v[0] : null;
 }
Ejemplo n.º 4
0
 public static function doSelectJoinAll(Criteria $c, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     foreach (sfMixer::getCallables('BaseMovieI18nPeer:doSelectJoinAll:doSelectJoinAll') as $callable) {
         call_user_func($callable, 'BaseMovieI18nPeer', $c, $con);
     }
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     MovieI18nPeer::addSelectColumns($c);
     $startcol2 = MovieI18nPeer::NUM_COLUMNS - MovieI18nPeer::NUM_LAZY_LOAD_COLUMNS;
     MoviePeer::addSelectColumns($c);
     $startcol3 = $startcol2 + (MoviePeer::NUM_COLUMNS - MoviePeer::NUM_LAZY_LOAD_COLUMNS);
     $c->addJoin(array(MovieI18nPeer::ID), array(MoviePeer::ID), $join_behavior);
     $stmt = BasePeer::doSelect($c, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = MovieI18nPeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = MovieI18nPeer::getInstanceFromPool($key1))) {
         } else {
             $omClass = MovieI18nPeer::getOMClass();
             $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
             $obj1 = new $cls();
             $obj1->hydrate($row);
             MovieI18nPeer::addInstanceToPool($obj1, $key1);
         }
         $key2 = MoviePeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = MoviePeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $omClass = MoviePeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 MoviePeer::addInstanceToPool($obj2, $key2);
             }
             $obj2->addMovieI18n($obj1);
         }
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }
Ejemplo n.º 5
0
 /**
  * Find object by primary key
  * Use instance pooling to avoid a database query if the object exists
  * <code>
  * $obj  = $c->findPk(12, $con);
  * </code>
  * @param     mixed $key Primary key to use for the query
  * @param     PropelPDO $con an optional connection object
  *
  * @return    Movie|array|mixed the result, formatted by the current formatter
  */
 public function findPk($key, $con = null)
 {
     if (null !== ($obj = MoviePeer::getInstanceFromPool((string) $key)) && $this->getFormatter()->isObjectFormatter()) {
         // the object is alredy in the instance pool
         return $obj;
     } else {
         // the object has not been requested yet, or the formatter is not an object formatter
         $criteria = $this->isKeepQuery() ? clone $this : $this;
         $stmt = $criteria->filterByPrimaryKey($key)->getSelectStatement($con);
         return $criteria->getFormatter()->init($criteria)->formatOne($stmt);
     }
 }
 /**
  * Selects a collection of Moviesgenres objects pre-filled with all related objects except Genre.
  *
  * @param      Criteria  $criteria
  * @param      PropelPDO $con
  * @param      String    $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
  * @return     array Array of Moviesgenres objects.
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function doSelectJoinAllExceptGenre(Criteria $criteria, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $criteria = clone $criteria;
     // Set the correct dbName if it has not been overridden
     // $criteria->getDbName() will return the same object if not set to another value
     // so == check is okay and faster
     if ($criteria->getDbName() == Propel::getDefaultDB()) {
         $criteria->setDbName(self::DATABASE_NAME);
     }
     MoviesgenresPeer::addSelectColumns($criteria);
     $startcol2 = MoviesgenresPeer::NUM_HYDRATE_COLUMNS;
     MoviePeer::addSelectColumns($criteria);
     $startcol3 = $startcol2 + MoviePeer::NUM_HYDRATE_COLUMNS;
     $criteria->addJoin(MoviesgenresPeer::MOVIEID, MoviePeer::ID, $join_behavior);
     $stmt = BasePeer::doSelect($criteria, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = MoviesgenresPeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = MoviesgenresPeer::getInstanceFromPool($key1))) {
             // We no longer rehydrate the object, since this can cause data loss.
             // See http://www.propelorm.org/ticket/509
             // $obj1->hydrate($row, 0, true); // rehydrate
         } else {
             $cls = MoviesgenresPeer::getOMClass(false);
             $obj1 = new $cls();
             $obj1->hydrate($row);
             MoviesgenresPeer::addInstanceToPool($obj1, $key1);
         }
         // if obj1 already loaded
         // Add objects for joined Movie rows
         $key2 = MoviePeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = MoviePeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $cls = MoviePeer::getOMClass(false);
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 MoviePeer::addInstanceToPool($obj2, $key2);
             }
             // if $obj2 already loaded
             // Add the $obj1 (Moviesgenres) to the collection in $obj2 (Movie)
             $obj2->addMoviesgenres($obj1);
         }
         // if joined row is not null
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }