| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <?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()
- {
- logModuleCall(
- 'kerioEmail',
- __FUNCTION__,
- $this,
- 'Debug Data',
- ''
- );
- $this->initLoadModalAction(new EditSettingModal());
- }
- }
|