src/EventSubscriber/LogginSubscriber.php line 28

Open in your IDE?
  1. <?php
  2. /**
  3.  * Created by PhpStorm.
  4.  * User: rostandnj
  5.  * Date: 27/5/19
  6.  * Time: 9:38 AM
  7.  */
  8. namespace App\EventSubscriber;
  9. use App\Controller\LogginInterfaceController;
  10. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  11. use Symfony\Component\HttpKernel\KernelEvents;
  12. use Symfony\Component\HttpFoundation\Session\SessionInterface;
  13. use Symfony\Component\DependencyInjection\ContainerInterface;
  14. use Symfony\Component\HttpKernel\Event\ControllerEvent;
  15. class LogginSubscriber implements EventSubscriberInterface
  16. {
  17.     private $session;
  18.     public function __construct(SessionInterface $s,ContainerInterface $c)
  19.     {
  20.         $this->session $s;
  21.         $this->mycontainer $c;
  22.     }
  23.     public function onKernelController(ControllerEvent $event)
  24.     {
  25.         $controller $event->getController();
  26.         /*
  27.          * $controller passed can be either a class or a Closure.
  28.          * This is not usual in Symfony but it may happen.
  29.          * If it is a class, it comes in array format
  30.          */
  31.         if (!is_array($controller)) {
  32.             return 0;
  33.         }
  34.         if ($controller[0] instanceof LogginInterfaceController) {
  35.            return 0;
  36.         }
  37.     }
  38.     public static function getSubscribedEvents()
  39.     {
  40.         return [
  41.             KernelEvents::CONTROLLER => 'onKernelController',
  42.         ];
  43.     }
  44. }