1 | <?php |
||
19 | final class MenuEvents |
||
20 | { |
||
21 | /** |
||
22 | * The MENU_CREATED event occurs after menu is created. |
||
23 | * |
||
24 | * @Event("Symfony\Component\EventDispatcher\GenericEvent") |
||
25 | * |
||
26 | * @var string |
||
27 | */ |
||
28 | const MENU_CREATED = 'swp.menu.created'; |
||
29 | |||
30 | /** |
||
31 | * The MENU_DELETED event occurs after menu is deleted. |
||
32 | * |
||
33 | * @Event("Symfony\Component\EventDispatcher\GenericEvent") |
||
34 | * |
||
35 | * @var string |
||
36 | */ |
||
37 | const MENU_DELETED = 'swp.menu.deleted'; |
||
38 | |||
39 | private function __construct() |
||
42 | } |
||
43 |