BaseAcceptButton.php 598 B

123456789101112131415161718192021
  1. <?php
  2. namespace ThurData\Servers\KerioEmail\Core\UI\Widget\Buttons\ModalActionButtons;
  3. use \ThurData\Servers\KerioEmail\Core\UI\Builder\BaseContainer;
  4. /**
  5. * Base Modal Accept Button
  6. *
  7. * @autor ThurData <info@thrudata.ch>
  8. */
  9. class BaseAcceptButton extends BaseContainer
  10. {
  11. protected $id = 'baseAcceptButton';
  12. protected $name = 'baseAcceptButton';
  13. protected $class = ['lu-btn lu-btn--success submitForm mg-submit-form'];
  14. protected $title = 'title';
  15. protected $htmlAttributes = [
  16. '@click' => 'submitForm($event)'
  17. ];
  18. }