コード例 #1
0
 /**
  * this method returns a Propel ModelCriteria
  *
  * @return \Propel\Runtime\ActiveQuery\ModelCriteria
  */
 public function buildModelCriteria()
 {
     $search = MenuQuery::create();
     $this->configureI18nProcessing($search, array('TITLE', 'CHAPO', 'DESCRIPTION', 'POSTSCRIPTUM'));
     $id = $this->getId();
     if ($id) {
         $search->filterById($id, Criteria::IN);
     }
     $visible = $this->getVisible();
     if ($visible !== BooleanOrBothType::ANY) {
         $search->filterByVisible($visible ? 1 : 0);
     }
     //	$critere->joinMenu('menu_i18n', Criteria::INNER_JOIN)->where('`menu_i18n' . $idcat . '`.category_id IN ('.$liste.')');
     return $search;
 }
コード例 #2
0
 public function deleteMenu(MenuEvent $event)
 {
     /*	$menu = MenuQuery::create()
           ->findOneById($event->getId);
           $menu->delete();
        */
     if (null !== ($menu = MenuQuery::create()->findPk($event->getId()))) {
         $menu->delete();
         $item = MenuItemQuery::create()->filterByMenuId($event->getId())->find();
         $item->delete();
     }
     $menu_i18n = MenuI18nQuery::create()->filterById($event->getId(), Criteria::IN)->find();
     foreach ($menu_i18n as $menui18n) {
         $menui18n->delete();
     }
 }
コード例 #3
0
 /**
  * Checks whether the current state must be recorded as a version
  *
  * @return  boolean
  */
 public function isVersioningNecessary($con = null)
 {
     if ($this->alreadyInSave) {
         return false;
     }
     if ($this->enforceVersion) {
         return true;
     }
     if (ChildMenuQuery::isVersioningEnabled() && ($this->isNew() || $this->isModified()) || $this->isDeleted()) {
         return true;
     }
     // to avoid infinite loops, emulate in save
     $this->alreadyInSave = true;
     foreach ($this->getMenuItems(null, $con) as $relatedObject) {
         if ($relatedObject->isVersioningNecessary($con)) {
             $this->alreadyInSave = false;
             return true;
         }
     }
     $this->alreadyInSave = false;
     return false;
 }
コード例 #4
0
 /**
  * Get the associated ChildMenu object
  *
  * @param      ConnectionInterface $con Optional Connection object.
  * @return                 ChildMenu The associated ChildMenu object.
  * @throws PropelException
  */
 public function getMenu(ConnectionInterface $con = null)
 {
     if ($this->aMenu === null && $this->id !== null) {
         $this->aMenu = ChildMenuQuery::create()->findPk($this->id, $con);
         /* 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->aMenu->addMenuVersions($this);
            */
     }
     return $this->aMenu;
 }
コード例 #5
0
 /**
  * Performs an INSERT on the database, given a Menu or Criteria object.
  *
  * @param mixed               $criteria Criteria or Menu object containing data that is used to create the INSERT statement.
  * @param ConnectionInterface $con the ConnectionInterface connection to use
  * @return mixed           The new primary key.
  * @throws PropelException Any exceptions caught during processing will be
  *         rethrown wrapped into a PropelException.
  */
 public static function doInsert($criteria, ConnectionInterface $con = null)
 {
     if (null === $con) {
         $con = Propel::getServiceContainer()->getWriteConnection(MenuTableMap::DATABASE_NAME);
     }
     if ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
         // rename for clarity
     } else {
         $criteria = $criteria->buildCriteria();
         // build Criteria from Menu object
     }
     if ($criteria->containsKey(MenuTableMap::ID) && $criteria->keyContainsValue(MenuTableMap::ID)) {
         throw new PropelException('Cannot insert a value for auto-increment primary key (' . MenuTableMap::ID . ')');
     }
     // Set the correct dbName
     $query = MenuQuery::create()->mergeWith($criteria);
     try {
         // use transaction because $criteria could contain info
         // for more than one table (I guess, conceivably)
         $con->beginTransaction();
         $pk = $query->doInsert($con);
         $con->commit();
     } catch (PropelException $e) {
         $con->rollBack();
         throw $e;
     }
     return $pk;
 }