当前位置: 首页>>代码示例>>PHP>>正文


PHP Dispatcher::hasListeners方法代码示例

本文整理汇总了PHP中Dispatcher::hasListeners方法的典型用法代码示例。如果您正苦于以下问题:PHP Dispatcher::hasListeners方法的具体用法?PHP Dispatcher::hasListeners怎么用?PHP Dispatcher::hasListeners使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Dispatcher的用法示例。


在下文中一共展示了Dispatcher::hasListeners方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getAuthenticationContent

 /**
  * Get content from listeners
  */
 public function getAuthenticationContent()
 {
     $content = '';
     if ($this->dispatcher->hasListeners(UserEvents::USER_AUTHENTICATION_CONTENT)) {
         $event = new AuthenticationContentEvent($this->request);
         $this->dispatcher->dispatch(UserEvents::USER_AUTHENTICATION_CONTENT, $event);
         $content = $event->getContent();
         // Remove post_logout session after content has been generated
         $this->request->getSession()->remove('post_logout');
     }
     return $content;
 }
开发者ID:Yame-,项目名称:mautic,代码行数:15,代码来源:SecurityHelper.php

示例2: isResourceActionImplemented

 /**
  * Returns true if the listener is implemented for a resourceType and an action
  *
  * @param ResourceType $resourceType
  * @param string       $actionName
  */
 public function isResourceActionImplemented(ResourceType $resourceType = null, $actionName)
 {
     if ($resourceType) {
         $alwaysTrue = array('rename', 'edit-properties', 'edit-rights', 'open-tracking');
         //first, directories can be downloaded even if there is no listener attached to it
         if ($resourceType->getName() === 'directory' && $actionName == 'download') {
             return true;
         }
         if (in_array($actionName, $alwaysTrue)) {
             return true;
         }
         $eventName = $actionName . '_' . $resourceType->getName();
     } else {
         $eventName = 'resource_action_' . $actionName;
     }
     return $this->dispatcher->hasListeners($eventName);
 }
开发者ID:ChMat,项目名称:CoreBundle,代码行数:23,代码来源:ResourceManager.php


注:本文中的Dispatcher::hasListeners方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。