當前位置: 首頁>>代碼示例>>PHP>>正文


PHP EventInterface::setError方法代碼示例

本文整理匯總了PHP中Zend\EventManager\EventInterface::setError方法的典型用法代碼示例。如果您正苦於以下問題:PHP EventInterface::setError方法的具體用法?PHP EventInterface::setError怎麽用?PHP EventInterface::setError使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Zend\EventManager\EventInterface的用法示例。


在下文中一共展示了EventInterface::setError方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: onRoute

 /**
  * @internal
  */
 public function onRoute(\Zend\EventManager\EventInterface $e)
 {
     // Validate loglevel value. Invalid content will cause the route to fail
     // and trigger the usage message.
     if (!preg_match('/^(emerg|alert|crit|err|warn|notice|info|debug)?$/', $e->getRouteMatch()->getParam('loglevel'))) {
         $e->setError(\Zend\Mvc\Application::ERROR_ROUTER_NO_MATCH);
         $e->getTarget()->getEventManager()->trigger(\Zend\Mvc\MvcEvent::EVENT_DISPATCH_ERROR, $e);
     }
 }
開發者ID:patrickpreuss,項目名稱:Braintacle,代碼行數:12,代碼來源:Module.php

示例2: onRoute

 /**
  * @internal
  */
 public function onRoute(\Zend\EventManager\EventInterface $e)
 {
     // Validate loglevel value. Invalid content will cause the route to fail
     // and trigger the usage message.
     $logLevel = $e->getRouteMatch()->getParam('loglevel');
     if ($logLevel != '' and !\Zend\Validator\StaticValidator::execute($logLevel, 'Library\\LogLevel')) {
         $e->setError(\Zend\Mvc\Application::ERROR_ROUTER_NO_MATCH);
         $e->setName(\Zend\Mvc\MvcEvent::EVENT_DISPATCH_ERROR);
         $e->getTarget()->getEventManager()->triggerEvent($e);
     }
 }
開發者ID:hschletz,項目名稱:braintacle,代碼行數:14,代碼來源:Module.php

示例3: flush

 public static function flush(EventInterface $e)
 {
     try {
         if ($e->getTarget() instanceof EntityManager) {
             $em = $e->getTarget();
         } elseif ($e instanceof MvcEvent) {
             $em = $e->getApplication()->getServiceManager()->get('EntityManager');
         } else {
             throw new Exception\RuntimeException('No EntityManager instance available');
         }
         if (null !== $e->getParam('entity')) {
             $em->flush($e->getParam('entity'));
         } else {
             $em->flush();
         }
     } catch (\Exception $ex) {
         if (!$e instanceof MvcEvent) {
             throw $ex;
         }
         $e->setError(self::ERROR_FLUSH)->setParam('exception', $ex);
         $e->getApplication()->getEventManager()->trigger(MvcEvent::EVENT_DISPATCH_ERROR, $e);
     }
 }
開發者ID:outeredge,項目名稱:edge-zf2,代碼行數:23,代碼來源:FlushEntities.php


注:本文中的Zend\EventManager\EventInterface::setError方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。