- Issue created by @xiukun.zhou
when custom a event setBypass to false. it not work.
The reason for this problem is:
$this->bypass = !empty($bypass) ? TRUE : $this->bypass;
So here it will be true anyway
custom a event.
namespace Drupal\mymodule\EventSubscriber;
use Drupal\session_limit\Event\SessionLimitBypassEvent;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
class SessionLimitBypass implements EventSubscriberInterface {
public function onSessionLimitBypass(SessionLimitBypassEvent $event) {
$event->setBypass(false);
var_dump($event->shouldBypass());
exit();
}
public static function getSubscribedEvents()
{
$events['session_limit.bypass'][] = ['onSessionLimitBypass', -1000];
return $events;
}
}
this output TRUE
Needs review
2.0
Code