| 123456789101112131415161718192021 |
- <?php
- namespace ThurData\Servers\KerioEmail\Core\UI\Widget\Buttons\DropdawnButtonWrappers;
- use ThurData\Servers\KerioEmail\Core\UI\Interfaces\DropdownItemInterface;
- /**
- * A button in dropdawn buttons list
- *
- * @autor ThurData <info@thurdata.ch>
- */
- class ButtonDropdownItem extends \ThurData\Servers\KerioEmail\Core\UI\Widget\Buttons\ButtonModal
- {
- protected $id = 'duttonDropdownItem';
- protected $class = ['lu-dropdown__link'];
- protected $icon = 'lu-dropdown__link-icon lu-zmdi lu-zmdi-edit';
- protected $title = 'dropdownButton';
- protected $htmlAttributes = [
- 'href' => 'javascript:;'
- ];
- }
|