Returns whether further event listeners should be triggered.
@api
Return value
Boolean Whether propagation was already stopped for this event.
See also
Event::stopPropagation
File
- drupal/core/vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/Event.php, line 55
Class
- Event
- Event is the base class for classes containing event data.
Namespace
Symfony\Component\EventDispatcher
Code
public function isPropagationStopped() {
return $this->propagationStopped;
}