public function postDown($manager)
 {
     foreach (PagePropertyQuery::create()->filterByName('journal:%', Criteria::LIKE)->find() as $oEntry) {
         $oEntry->setName(str_replace('journal:', 'blog_', $oEntry->getName()));
         $oEntry->setUpdatedAt($oEntry->getUpdatedAt());
         $oEntry->setUpdatedBy($oEntry->getUpdatedBy());
         $oEntry->save();
     }
 }
예제 #2
0
 /**
  * If this collection has already been initialized with
  * an identical criteria, it returns the collection.
  * Otherwise if this Page is new, it will return
  * an empty collection; or if this Page has previously
  * been saved, it will retrieve related PagePropertys from storage.
  *
  * This method is protected by default in order to keep the public
  * api reasonable.  You can provide public methods for those you
  * actually need in Page.
  *
  * @param Criteria $criteria optional Criteria object to narrow the query
  * @param PropelPDO $con optional connection object
  * @param string $join_behavior optional join type to use (defaults to Criteria::LEFT_JOIN)
  * @return PropelObjectCollection|PageProperty[] List of PageProperty objects
  */
 public function getPagePropertysJoinUserRelatedByUpdatedBy($criteria = null, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $query = PagePropertyQuery::create(null, $criteria);
     $query->joinWith('UserRelatedByUpdatedBy', $join_behavior);
     return $this->getPagePropertys($query, $con);
 }
예제 #3
0
 /**
  * Removes this object from datastore and sets delete attribute.
  *
  * @param PropelPDO $con
  * @return void
  * @throws PropelException
  * @throws Exception
  * @see        BaseObject::setDeleted()
  * @see        BaseObject::isDeleted()
  */
 public function delete(PropelPDO $con = null)
 {
     if ($this->isDeleted()) {
         throw new PropelException("This object has already been deleted.");
     }
     if ($con === null) {
         $con = Propel::getConnection(PagePropertyPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
     }
     $con->beginTransaction();
     try {
         $deleteQuery = PagePropertyQuery::create()->filterByPrimaryKey($this->getPrimaryKey());
         $ret = $this->preDelete($con);
         // denyable behavior
         if (!(PagePropertyPeer::isIgnoringRights() || $this->mayOperate("delete"))) {
             throw new PropelException(new NotPermittedException("delete.admin_user", array("role_key" => "page_properties")));
         }
         if ($ret) {
             $deleteQuery->delete($con);
             $this->postDelete($con);
             $con->commit();
             $this->setDeleted(true);
         } else {
             $con->commit();
         }
     } catch (Exception $e) {
         $con->rollBack();
         throw $e;
     }
 }
예제 #4
0
 /**
  * Returns a new PagePropertyQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param   PagePropertyQuery|Criteria $criteria Optional Criteria to build the query from
  *
  * @return PagePropertyQuery
  */
 public static function create($modelAlias = null, $criteria = null)
 {
     if ($criteria instanceof PagePropertyQuery) {
         return $criteria;
     }
     $query = new PagePropertyQuery(null, null, $modelAlias);
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }
예제 #5
0
파일: Page.php 프로젝트: rapila/cms-base
 public function getPagePropertyQuery()
 {
     return PagePropertyQuery::create()->filterByPage($this);
 }