| 123456789101112131415161718192021 |
- <?php
- namespace ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Widget\Buttons\ModalActionButtons;
- use \ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Builder\BaseContainer;
- /**
- * Base Modal Cancel Button
- *
- * @author Sławomir Miśkowicz <slawomir@modulesgarden.com>
- */
- class BaseCancelButton extends BaseContainer
- {
- protected $id = 'baseCancelButton';
- protected $name = 'baseCancelButton';
- protected $class = ['lu-btn lu-btn--danger lu-btn--outline lu-btn--plain closeModal'];
- protected $title = 'title';
- protected $htmlAttributes = [
- '@click' => 'closeModal($event)'
- ];
- }
|