예제 #1
0
 private function getNextRevision()
 {
     $oLanguageObjectHistory = LanguageObjectHistoryQuery::create()->filterByLanguageObject($this)->sort()->findOne();
     if ($oLanguageObjectHistory !== null) {
         return $oLanguageObjectHistory->getRevision() + 1;
     }
     return 1;
 }
예제 #2
0
 /**
  * Gets the draft version of this language object (if any).
  * @param $bDraftOnly If true, the function will return null instead of $this if no draft exists.
  * @return LanguageObject|LanguageObjectHistory The draft version of this object.
  */
 public function getDraft($bDraftOnly = false)
 {
     if ($this->getHasDraft()) {
         return LanguageObjectHistoryQuery::create()->filterByLanguageObject($this)->sort()->findOne();
     }
     if ($bDraftOnly) {
         return null;
     }
     return $this;
 }
예제 #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(LanguageObjectHistoryPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
     }
     $con->beginTransaction();
     try {
         $deleteQuery = LanguageObjectHistoryQuery::create()->filterByPrimaryKey($this->getPrimaryKey());
         $ret = $this->preDelete($con);
         // denyable behavior
         if (!(LanguageObjectHistoryPeer::isIgnoringRights() || $this->mayOperate("delete"))) {
             throw new PropelException(new NotPermittedException("delete.backend_user", array("role_key" => "language_object_history")));
         }
         if ($ret) {
             $deleteQuery->delete($con);
             $this->postDelete($con);
             $con->commit();
             $this->setDeleted(true);
         } else {
             $con->commit();
         }
     } catch (Exception $e) {
         $con->rollBack();
         throw $e;
     }
 }
 /**
  * Returns a new LanguageObjectHistoryQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param   LanguageObjectHistoryQuery|Criteria $criteria Optional Criteria to build the query from
  *
  * @return LanguageObjectHistoryQuery
  */
 public static function create($modelAlias = null, $criteria = null)
 {
     if ($criteria instanceof LanguageObjectHistoryQuery) {
         return $criteria;
     }
     $query = new LanguageObjectHistoryQuery(null, null, $modelAlias);
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }
예제 #5
0
 /**
  * If this collection has already been initialized with
  * an identical criteria, it returns the collection.
  * Otherwise if this Language is new, it will return
  * an empty collection; or if this Language has previously
  * been saved, it will retrieve related LanguageObjectHistorys 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 Language.
  *
  * @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|LanguageObjectHistory[] List of LanguageObjectHistory objects
  */
 public function getLanguageObjectHistorysJoinUserRelatedByUpdatedBy($criteria = null, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $query = LanguageObjectHistoryQuery::create(null, $criteria);
     $query->joinWith('UserRelatedByUpdatedBy', $join_behavior);
     return $this->getLanguageObjectHistorys($query, $con);
 }
예제 #6
0
 public function adminDropDraft($iObjectId)
 {
     $oCurrentContentObject = $this->contentObjectById($iObjectId);
     if ($this->sLanguageId === null) {
         $this->sLanguageId = AdminManager::getContentLanguage();
     }
     $oCurrentLanguageObject = $oCurrentContentObject->getLanguageObject($this->sLanguageId);
     if ($oCurrentLanguageObject === null) {
         ///In this case, we have to remove all stored history objects in order to remove the draft status
         return LanguageObjectHistoryQuery::create()->filterByContentObject($oCurrentContentObject)->delete();
     }
     $oCurrentLanguageObject->setHasDraft(false);
     return $oCurrentLanguageObject->save();
 }