infinito/application/src/Subscriber/NodeMenuSubscriber.php

21 lines
326 B
PHP
Raw Normal View History

2018-10-04 21:33:50 +02:00
<?php
namespace App\Subscriber;
use App\DBAL\Types\MenuEventType;
2018-10-04 21:33:50 +02:00
/**
*
* @author kevinfrantz
*
*/
class NodeMenuSubscriber extends AbstractEntityMenuSubscriber
{
public static function getSubscribedEvents()
{
return [
MenuEventType::NODE => 'onNodeMenuConfigure'
2018-10-04 21:33:50 +02:00
];
}
}