1: <?php
2: /**
3: * PHP version 5
4: * @package generalDriver
5: * @author Christian Schiffler <c.schiffler@cyberspectrum.de>
6: * @author Stefan Heimes <stefan_heimes@hotmail.com>
7: * @author Tristan Lins <tristan.lins@bit3.de>
8: * @copyright The MetaModels team.
9: * @license LGPL.
10: * @filesource
11: */
12:
13: namespace DcGeneral\Contao\View\Contao2BackendView\Event;
14:
15: /**
16: * Class GetEditModeButtonsEvent.
17: *
18: * This event gets issued to retrieve the buttons to be displayed in when in edit mode on the very bottom.
19: *
20: * These buttons include, but are not limited to, save, save and close, save and back, ...
21: *
22: * @package DcGeneral\Contao\View\Contao2BackendView\Event
23: */
24: class GetEditModeButtonsEvent
25: extends BaseGetButtonsEvent
26: {
27: const NAME = 'dc-general.view.contao2backend.get-edit-mode-buttons';
28: }
29: