JOOMLA中国
  • Joomla中国首页
  • 社区
  • 教程
  • 应用市场
  • B计划
Joomla! Framework TM
  • Namespace
  • Class
  • Tree
  • Deprecated

Namespaces

  • Composer
    • Autoload
  • Joomla
    • Application
      • Cli
        • Output
          • Processor
      • Web
    • Data
    • DI
      • Exception
    • Event
    • Filter
    • Input
    • Ldap
    • Registry
      • Format
    • Session
      • Storage
    • String
    • Uri
    • Utilities
  • None
  • PasswordCompat
    • binary
  • PHP
  • Psr
    • Log
  • Symfony
    • Component
      • Yaml
        • Exception
    • Polyfill
      • Util

Classes

  • AbstractEvent
  • DelegatingDispatcher
  • Dispatcher
  • Event
  • EventImmutable
  • ListenersPriorityQueue
  • Priority

Interfaces

  • DispatcherAwareInterface
  • DispatcherInterface
  • EventInterface

Traits

  • DispatcherAwareTrait
 1 <?php
 2 /**
 3  * Part of the Joomla Framework Event Package
 4  *
 5  * @copyright  Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
 6  * @license    GNU General Public License version 2 or later; see LICENSE
 7  */
 8 
 9 namespace Joomla\Event;
10 
11 /**
12  * Interface for events.
13  * An event has a name and its propagation can be stopped (if the implementation supports it).
14  *
15  * @since  1.0
16  */
17 interface EventInterface
18 {
19     /**
20      * Get the event name.
21      *
22      * @return  string  The event name.
23      *
24      * @since   1.0
25      */
26     public function getName();
27 
28     /**
29      * Tell if the event propagation is stopped.
30      *
31      * @return  boolean  True if stopped, false otherwise.
32      *
33      * @since   1.0
34      */
35     public function isStopped();
36 }
37 
Joomla! Framework TM API documentation generated by ApiGen 2.8.0
Joomla!® and Joomla! Framework™ are trademarks of Open Source Matters, Inc. in the United States and other countries.