| 12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace ThurData\Servers\KerioEmail\App\UI\Client\Setting\Buttons;
- use ThurData\Servers\KerioEmail\App\UI\Client\Setting\Modals\EditSettingModal;
- use \ThurData\Servers\KerioEmail\Core\UI\Widget\Buttons\ButtonDataTableModalAction;
- use ThurData\Servers\KerioEmail\App\UI\Client\Setting\Modals\AddSettingModal;
- use ThurData\Servers\KerioEmail\Core\UI\Interfaces\ClientArea;
- use ThurData\Servers\KerioEmail\Core\UI\Widget\Buttons\ButtonCustomAction;
- use ThurData\Servers\KerioEmail\Core\UI\Widget\Buttons\ButtonModal;
- use ThurData\Servers\KerioEmail\Core\UI\Widget\Buttons\DropdawnButtonWrappers\ButtonDropdownItem;
- /**
- *
- * Created by PhpStorm.
- * User: ThurData
- * Date: 18.09.19
- * Time: 09:29
- * Class EditSettingButton
- */
- class EditSettingButton extends ButtonDataTableModalAction implements ClientArea
- {
- protected $id = 'editSettingButton';
- protected $title = 'editSettingButton';
- public function initContent()
- {
- $this->initIds('editSettingButton');
- $this->initLoadModalAction(new EditSettingModal());
- $this->setDisableByColumnValue("mxactive", 'wrong');
- }
- }
|