ButtonDropdownItem.php 674 B

123456789101112131415161718192021
  1. <?php
  2. namespace ThurData\Servers\KerioEmail\Core\UI\Widget\Buttons\DropdawnButtonWrappers;
  3. use ThurData\Servers\KerioEmail\Core\UI\Interfaces\DropdownItemInterface;
  4. /**
  5. * A button in dropdawn buttons list
  6. *
  7. * @autor ThurData <info@thurdata.ch>
  8. */
  9. class ButtonDropdownItem extends \ThurData\Servers\KerioEmail\Core\UI\Widget\Buttons\ButtonModal
  10. {
  11. protected $id = 'duttonDropdownItem';
  12. protected $class = ['lu-dropdown__link'];
  13. protected $icon = 'lu-dropdown__link-icon lu-zmdi lu-zmdi-edit';
  14. protected $title = 'dropdownButton';
  15. protected $htmlAttributes = [
  16. 'href' => 'javascript:;'
  17. ];
  18. }