mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 14:27:28 +01:00
21 lines
326 B
PHP
21 lines
326 B
PHP
<?php
|
|
namespace App\Subscriber;
|
|
|
|
use App\DBAL\Types\MenuEventType;
|
|
|
|
/**
|
|
*
|
|
* @author kevinfrantz
|
|
*
|
|
*/
|
|
class NodeMenuSubscriber extends AbstractEntityMenuSubscriber
|
|
{
|
|
public static function getSubscribedEvents()
|
|
{
|
|
return [
|
|
MenuEventType::NODE => 'onNodeMenuConfigure'
|
|
];
|
|
}
|
|
}
|
|
|