public function ContainerAwareEventDispatcher::removeSubscriber in Service Container 7
Same name and namespace in other branches
- 7.2 lib/Drupal/Component/EventDispatcher/ContainerAwareEventDispatcher.php \Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher::removeSubscriber()
File
- lib/
Drupal/ Component/ EventDispatcher/ ContainerAwareEventDispatcher.php, line 225 - Contains \Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher.
Class
- ContainerAwareEventDispatcher
- A performance optimized container aware event dispatcher.
Namespace
Drupal\Component\EventDispatcherCode
public function removeSubscriber(EventSubscriberInterface $subscriber) {
foreach ($subscriber
->getSubscribedEvents() as $event_name => $params) {
if (is_array($params) && is_array($params[0])) {
foreach ($params as $listener) {
$this
->removeListener($event_name, array(
$subscriber,
$listener[0],
));
}
}
else {
$this
->removeListener($event_name, array(
$subscriber,
is_string($params) ? $params : $params[0],
));
}
}
}