ButtonBase.php 687 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace ThurData\Servers\KerioEmail\Core\UI\Widget\Buttons;
  3. use \ThurData\Servers\KerioEmail\Core\UI\Builder\BaseContainer;
  4. /**
  5. * base button controller
  6. *
  7. * @autor ThurData <info@thurdata.ch>
  8. */
  9. class ButtonBase extends BaseContainer
  10. {
  11. protected $id = 'ButtonBase';
  12. protected $name = 'ButtonBase';
  13. protected $class = ['lu-btn lu-btn-circle lu-btn-outline lu-btn-inverse lu-btn-success lu-btn-icon-only'];
  14. protected $icon = 'lu-zmdi lu-zmdi-plus';
  15. protected $title = 'ButtonBase';
  16. protected $htmlAttributes = [
  17. 'href' => 'javascript:;',
  18. 'data-toggle' => 'lu-tooltip'
  19. ];
  20. }