| 123456789101112131415161718192021 |
- <?php
- namespace ThurData\Servers\KerioEmail\App\UI\Client\Setting\Buttons;
- use ThurData\Servers\KerioEmail\App\UI\Client\Setting\Modals\InfoModal;
- use ThurData\Servers\KerioEmail\Core\UI\Interfaces\ClientArea;
- use ThurData\Servers\KerioEmail\Core\UI\Widget\Buttons\ButtonDataTableModalAction;
- class InfoButton extends ButtonDataTableModalAction implements ClientArea
- {
- protected $icon = 'lu-zmdi lu-zmdi-info-outline';
- protected $id = "infoButton";
- protected $title = "infoButton";
- public function initContent()
- {
- $this->initIds('infoButton ');
- $this->initLoadModalAction(new InfoModal());
- }
- }
|