コード例 #1
0
ファイル: Hook.php プロジェクト: margery/thelia
 /**
  * @param    Module $module The module object to add.
  */
 protected function doAddModule($module)
 {
     $ignoredModuleHook = new ChildIgnoredModuleHook();
     $ignoredModuleHook->setModule($module);
     $this->addIgnoredModuleHook($ignoredModuleHook);
     // set the back reference to this object directly as using provided method either results
     // in endless loop or in multiple relations
     if (!$module->getHooks()->contains($this)) {
         $foreignCollection = $module->getHooks();
         $foreignCollection[] = $this;
     }
 }
コード例 #2
0
 /**
  * Exclude object from result
  *
  * @param   ChildIgnoredModuleHook $ignoredModuleHook Object to remove from the list of results
  *
  * @return ChildIgnoredModuleHookQuery The current query, for fluid interface
  */
 public function prune($ignoredModuleHook = null)
 {
     if ($ignoredModuleHook) {
         $this->addCond('pruneCond0', $this->getAliasedColName(IgnoredModuleHookTableMap::MODULE_ID), $ignoredModuleHook->getModuleId(), Criteria::NOT_EQUAL);
         $this->addCond('pruneCond1', $this->getAliasedColName(IgnoredModuleHookTableMap::HOOK_ID), $ignoredModuleHook->getHookId(), Criteria::NOT_EQUAL);
         $this->combine(array('pruneCond0', 'pruneCond1'), Criteria::LOGICAL_OR);
     }
     return $this;
 }
コード例 #3
0
ファイル: ModuleQuery.php プロジェクト: margery/thelia
 /**
  * Filter the query by a related \Thelia\Model\IgnoredModuleHook object
  *
  * @param \Thelia\Model\IgnoredModuleHook|ObjectCollection $ignoredModuleHook  the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildModuleQuery The current query, for fluid interface
  */
 public function filterByIgnoredModuleHook($ignoredModuleHook, $comparison = null)
 {
     if ($ignoredModuleHook instanceof \Thelia\Model\IgnoredModuleHook) {
         return $this->addUsingAlias(ModuleTableMap::ID, $ignoredModuleHook->getModuleId(), $comparison);
     } elseif ($ignoredModuleHook instanceof ObjectCollection) {
         return $this->useIgnoredModuleHookQuery()->filterByPrimaryKeys($ignoredModuleHook->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByIgnoredModuleHook() only accepts arguments of type \\Thelia\\Model\\IgnoredModuleHook or Collection');
     }
 }
コード例 #4
0
ファイル: ModuleHook.php プロジェクト: vigourouxjulien/thelia
 public function deleteModuleHook(ModuleHookDeleteEvent $event, $eventName, EventDispatcherInterface $dispatcher)
 {
     if (null !== ($moduleHook = ModuleHookQuery::create()->findPk($event->getModuleHookId()))) {
         $moduleHook->delete();
         $event->setModuleHook($moduleHook);
         // Prevent hook recreation by RegisterListenersPass::registerHook()
         // We store the method here to be able to retreive it when
         // we need to get all hook declared by a module
         $imh = new IgnoredModuleHook();
         $imh->setModuleId($moduleHook->getModuleId())->setHookId($moduleHook->getHookId())->setMethod($moduleHook->getMethod())->setClassname($moduleHook->getClassname())->save();
         $this->cacheClear($dispatcher);
     }
 }
コード例 #5
0
 /**
  * Adds an object to the instance pool.
  *
  * Propel keeps cached copies of objects in an instance pool when they are retrieved
  * from the database. In some cases you may need to explicitly add objects
  * to the cache in order to ensure that the same objects are always returned by find*()
  * and findPk*() calls.
  *
  * @param \Thelia\Model\IgnoredModuleHook $obj A \Thelia\Model\IgnoredModuleHook object.
  * @param string $key             (optional) key to use for instance map (for performance boost if key was already calculated externally).
  */
 public static function addInstanceToPool($obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if (null === $key) {
             $key = serialize(array((string) $obj->getModuleId(), (string) $obj->getHookId()));
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }