| 123456789101112131415161718192021 |
- <?php
- namespace ThurData\Servers\KerioEmail\Core\UI\Widget\Buttons\ModalActionButtons;
- use \ThurData\Servers\KerioEmail\Core\UI\Builder\BaseContainer;
- /**
- * Base Modal Accept Button
- *
- * @autor ThurData <info@thurdata.ch>
- */
- class BaseAcceptButton extends BaseContainer
- {
- protected $id = 'baseAcceptButton';
- protected $name = 'baseAcceptButton';
- protected $class = ['lu-btn lu-btn--success submitForm mg-submit-form'];
- protected $title = 'title';
- protected $htmlAttributes = [
- '@click' => 'submitForm($event)'
- ];
- }
|