public function executeMovie($request) { $this->form = new MovieForm(MoviePeer::retrieveByPk($request->getParameter('id'))); if ($request->isMethod(sfRequest::POST)) { $this->form->bind($request->getParameter('movie')); if ($this->form->isValid()) { $movie = $this->form->save(); $this->redirect('i18n/movie?id=' . $movie->getId()); } } }
/** * Populates the object using an array. * * This is particularly useful when populating an object from one of the * request arrays (e.g. $_POST). This method goes through the column * names, checking to see whether a matching key exists in populated * array. If so the setByName() method is called for that column. * * You can specify the key type of the array by additionally passing one * of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME, * BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM. * The default key type is the column's phpname (e.g. 'AuthorId') * * @param array $arr An array to populate the object from. * @param string $keyType The type of keys the array uses. * @return void */ public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME) { $keys = MoviePeer::getFieldNames($keyType); if (array_key_exists($keys[0], $arr)) { $this->setId($arr[$keys[0]]); } if (array_key_exists($keys[1], $arr)) { $this->setDirector($arr[$keys[1]]); } }
/** * Get the associated Movie object * * @param PropelPDO Optional Connection object. * @return Movie The associated Movie object. * @throws PropelException */ public function getMovie(PropelPDO $con = null) { if ($this->aMovie === null && $this->id !== null) { $this->aMovie = MoviePeer::retrieveByPk($this->id); /* The following can be used additionally to guarantee the related object contains a reference to this object. This level of coupling may, however, be undesirable since it could result in an only partially populated collection in the referenced object. $this->aMovie->addMovieI18ns($this); */ } return $this->aMovie; }
/** * 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; }
public function getMovie($con = null) { if ($this->aMovie === null && $this->id !== null) { $this->aMovie = MoviePeer::retrieveByPK($this->id, $con); } return $this->aMovie; }
public static function retrieveByPKs($pks, PropelPDO $con = null) { if ($con === null) { $con = Propel::getConnection(MoviePeer::DATABASE_NAME, Propel::CONNECTION_READ); } $objs = null; if (empty($pks)) { $objs = array(); } else { $criteria = new Criteria(MoviePeer::DATABASE_NAME); $criteria->add(MoviePeer::ID, $pks, Criteria::IN); $objs = MoviePeer::doSelect($criteria, $con); } return $objs; }
public static function doSelectJoinAll(Criteria $c, $con = null) { $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 + 1; MoviePeer::addSelectColumns($c); $startcol3 = $startcol2 + MoviePeer::NUM_COLUMNS; $c->addJoin(MovieI18nPeer::ID, MoviePeer::ID); $rs = BasePeer::doSelect($c, $con); $results = array(); while ($rs->next()) { $omClass = MovieI18nPeer::getOMClass(); $cls = Propel::import($omClass); $obj1 = new $cls(); $obj1->hydrate($rs); $omClass = MoviePeer::getOMClass(); $cls = Propel::import($omClass); $obj2 = new $cls(); $obj2->hydrate($rs, $startcol2); $newObject = true; for ($j = 0, $resCount = count($results); $j < $resCount; $j++) { $temp_obj1 = $results[$j]; $temp_obj2 = $temp_obj1->getMovie(); if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) { $newObject = false; $temp_obj2->addMovieI18n($obj1); break; } } if ($newObject) { $obj2->initMovieI18ns(); $obj2->addMovieI18n($obj1); } $results[] = $obj1; } return $results; }
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; }
/** * 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); } }
/** * Populates the object using an array. * * This is particularly useful when populating an object from one of the * request arrays (e.g. $_POST). This method goes through the column * names, checking to see whether a matching key exists in populated * array. If so the setByName() method is called for that column. * * You can specify the key type of the array by additionally passing one * of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME, * BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM. * The default key type is the column's phpname (e.g. 'AuthorId') * * @param array $arr An array to populate the object from. * @param string $keyType The type of keys the array uses. * @return void */ public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME) { $keys = MoviePeer::getFieldNames($keyType); if (array_key_exists($keys[0], $arr)) { $this->setId($arr[$keys[0]]); } if (array_key_exists($keys[1], $arr)) { $this->setParentId($arr[$keys[1]]); } if (array_key_exists($keys[2], $arr)) { $this->setOriginalTitle($arr[$keys[2]]); } if (array_key_exists($keys[3], $arr)) { $this->setOriginalSubtitle($arr[$keys[3]]); } if (array_key_exists($keys[4], $arr)) { $this->setTitle($arr[$keys[4]]); } if (array_key_exists($keys[5], $arr)) { $this->setSubtitle($arr[$keys[5]]); } if (array_key_exists($keys[6], $arr)) { $this->setStartDate($arr[$keys[6]]); } if (array_key_exists($keys[7], $arr)) { $this->setFsk($arr[$keys[7]]); } if (array_key_exists($keys[8], $arr)) { $this->setDirectors($arr[$keys[8]]); } if (array_key_exists($keys[9], $arr)) { $this->setActors($arr[$keys[9]]); } if (array_key_exists($keys[10], $arr)) { $this->setCamera($arr[$keys[10]]); } if (array_key_exists($keys[11], $arr)) { $this->setBook($arr[$keys[11]]); } if (array_key_exists($keys[12], $arr)) { $this->setRental($arr[$keys[12]]); } if (array_key_exists($keys[13], $arr)) { $this->setProducers($arr[$keys[13]]); } if (array_key_exists($keys[14], $arr)) { $this->setLengthInMinutes($arr[$keys[14]]); } if (array_key_exists($keys[15], $arr)) { $this->setCreateDate($arr[$keys[15]]); } if (array_key_exists($keys[16], $arr)) { $this->setPicture($arr[$keys[16]]); } if (array_key_exists($keys[17], $arr)) { $this->setDescription($arr[$keys[17]]); } if (array_key_exists($keys[18], $arr)) { $this->setLanguages($arr[$keys[18]]); } if (array_key_exists($keys[19], $arr)) { $this->setCountries($arr[$keys[19]]); } if (array_key_exists($keys[20], $arr)) { $this->setUrl($arr[$keys[20]]); } if (array_key_exists($keys[21], $arr)) { $this->setTrailer($arr[$keys[21]]); } if (array_key_exists($keys[22], $arr)) { $this->setLastEditTime($arr[$keys[22]]); } }
public function executeDefault() { $this->movies = MoviePeer::doSelect(new Criteria()); $this->setTemplate('index'); }
/** * 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; }