1 | <?php |
||
14 | class MenuSubscriber implements EventSubscriberInterface |
||
15 | { |
||
16 | /** |
||
17 | * Returns an array of event names this subscriber wants to listen to. |
||
18 | * |
||
19 | * @return array The event names to listen to |
||
20 | */ |
||
21 | public static function getSubscribedEvents() |
||
28 | |||
29 | /** |
||
30 | * @param MenuEvent $event |
||
31 | */ |
||
32 | public function onConfigureKitchensinkMenu(MenuEvent $event) |
||
37 | |||
38 | /** |
||
39 | * @param MenuEvent $event |
||
40 | */ |
||
41 | public function onConfigureMenu(MenuEvent $event) |
||
55 | } |
||
56 |