Esempio n. 1
0
 protected function getModuleChoices()
 {
     $choices = array();
     $modules = ModuleQuery::getActivated();
     /** @var Module $module */
     foreach ($modules as $module) {
         // Check if module defines a hook ID
         if (ModuleHookQuery::create()->filterByModuleId($module->getId())->count() > 0 || IgnoredModuleHookQuery::create()->filterByModuleId($module->getId())->count() > 0) {
             $choices[$module->getId()] = $module->getTitle();
         }
     }
     asort($choices);
     return $choices;
 }
Esempio n. 2
0
 /**
  * Delete module hooks
  *
  * @param Module|null $module if specified it will only delete hooks related to this module.
  * @throws \Exception
  * @throws \Propel\Runtime\Exception\PropelException
  */
 protected function deleteHooks($module)
 {
     $query = ModuleHookQuery::create();
     if (null !== $module) {
         $query->filterByModule($module)->delete();
     } else {
         $query->deleteAll();
     }
     $query = IgnoredModuleHookQuery::create();
     if (null !== $module) {
         $query->filterByModule($module)->delete();
     } else {
         $query->deleteAll();
     }
 }
Esempio n. 3
0
 /**
  * If this collection has already been initialized with
  * an identical criteria, it returns the collection.
  * Otherwise if this Hook is new, it will return
  * an empty collection; or if this Hook has previously
  * been saved, it will retrieve related IgnoredModuleHooks 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 Hook.
  *
  * @param      Criteria $criteria optional Criteria object to narrow the query
  * @param      ConnectionInterface $con optional connection object
  * @param      string $joinBehavior optional join type to use (defaults to Criteria::LEFT_JOIN)
  * @return Collection|ChildIgnoredModuleHook[] List of ChildIgnoredModuleHook objects
  */
 public function getIgnoredModuleHooksJoinModule($criteria = null, $con = null, $joinBehavior = Criteria::LEFT_JOIN)
 {
     $query = ChildIgnoredModuleHookQuery::create(null, $criteria);
     $query->joinWith('Module', $joinBehavior);
     return $this->getIgnoredModuleHooks($query, $con);
 }
Esempio n. 4
0
 public function getModuleHookMethods($moduleId, $className)
 {
     if (null !== ($response = $this->checkAuth(AdminResources::MODULE_HOOK, [], AccessManager::VIEW))) {
         return $response;
     }
     $result = [];
     $moduleHooks = ModuleHookQuery::create()->filterByModuleId($moduleId)->filterByClassname($className)->find();
     /** @var ModuleHook $moduleHook */
     foreach ($moduleHooks as $moduleHook) {
         $method = $moduleHook->getMethod();
         if (!in_array($method, $result)) {
             $result[] = $method;
         }
     }
     $ignoredModuleHooks = IgnoredModuleHookQuery::create()->filterByModuleId($moduleId)->filterByClassname($className)->find();
     /** @var IgnoredModuleHook $moduleHook */
     foreach ($ignoredModuleHooks as $moduleHook) {
         $method = $moduleHook->getMethod();
         if (!in_array($method, $result)) {
             $result[] = $method;
         }
     }
     sort($result);
     return new JsonResponse($result);
 }
 /**
  * Performs an INSERT on the database, given a IgnoredModuleHook or Criteria object.
  *
  * @param mixed               $criteria Criteria or IgnoredModuleHook 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(IgnoredModuleHookTableMap::DATABASE_NAME);
     }
     if ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
         // rename for clarity
     } else {
         $criteria = $criteria->buildCriteria();
         // build Criteria from IgnoredModuleHook object
     }
     // Set the correct dbName
     $query = IgnoredModuleHookQuery::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;
 }
Esempio n. 6
0
 /**
  * Removes this object from datastore and sets delete attribute.
  *
  * @param      ConnectionInterface $con
  * @return void
  * @throws PropelException
  * @see IgnoredModuleHook::setDeleted()
  * @see IgnoredModuleHook::isDeleted()
  */
 public function delete(ConnectionInterface $con = null)
 {
     if ($this->isDeleted()) {
         throw new PropelException("This object has already been deleted.");
     }
     if ($con === null) {
         $con = Propel::getServiceContainer()->getWriteConnection(IgnoredModuleHookTableMap::DATABASE_NAME);
     }
     $con->beginTransaction();
     try {
         $deleteQuery = ChildIgnoredModuleHookQuery::create()->filterByPrimaryKey($this->getPrimaryKey());
         $ret = $this->preDelete($con);
         if ($ret) {
             $deleteQuery->delete($con);
             $this->postDelete($con);
             $con->commit();
             $this->setDeleted(true);
         } else {
             $con->commit();
         }
     } catch (Exception $e) {
         $con->rollBack();
         throw $e;
     }
 }