ButtonCreate.php 500 B

12345678910111213141516171819
  1. <?php
  2. namespace ThurData\Servers\KerioEmail\Core\UI\Widget\Buttons;
  3. /**
  4. * Description of Button Create
  5. *
  6. * @autor ThurData <info@thrudata.ch>
  7. */
  8. class ButtonCreate extends ButtonModal
  9. {
  10. protected $id = 'buttonCreate';
  11. protected $class = ['lu-btn lu-btn--primary'];
  12. protected $icon = 'lu-btn__icon lu-zmdi lu-zmdi-plus';
  13. protected $title = 'buttonCreate';
  14. protected $htmlAttributes = [
  15. 'href' => 'javascript:;'
  16. ];
  17. }