Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <?php
  2.  
  3. declare(strict_types=1);
  4.  
  5. namespace AppBundle\Event\Listener;
  6.  
  7. use EzSystems\EzPlatformAdminUi\Menu\Event\ConfigureMenuEvent;
  8.  
  9.  
  10. class ConfigureLeftSidebarMenuListener
  11. {
  12.  
  13. public function onMenuConfigure(ConfigureMenuEvent $event): void
  14. {
  15.  
  16. $root = $event->getMenu();
  17.  
  18. $root->removeChild('sidebar_left__browse');
  19.  
  20. }
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement