| 123456789101112131415161718192021222324252627282930 |
- <?php
- namespace ModulesGarden\Servers\KerioEmail\App\UI\Client\EmailAccount\Buttons;
- use ModulesGarden\Servers\KerioEmail\App\UI\Client\EmailAccount\Modals\ChangePasswordModal;
- use ModulesGarden\Servers\KerioEmail\Core\UI\Interfaces\ClientArea;
- use ModulesGarden\Servers\KerioEmail\Core\UI\Widget\Buttons\ButtonDataTableModalAction;
- use ModulesGarden\Servers\KerioEmail\Core\UI\Widget\Buttons\DropdawnButtonWrappers\ButtonDropdownItem;
- /**
- *
- * Created by PhpStorm.
- * User: Tomasz Bielecki ( tomasz.bi@modulesgarden.com )
- * Date: 08.11.19
- * Time: 12:07
- * Class ChangePassword
- */
- class ChangePasswordButton extends ButtonDropdownItem implements ClientArea
- {
- protected $id = 'changePassword';
- protected $title = 'changePassword';
- protected $icon = 'lu-dropdown__link-icon lu-btn__icon lu-zmdi lu-zmdi-lock';
- public function initContent()
- {
- $this->initLoadModalAction(new ChangePasswordModal());
- }
- }
|