| 1234567891011121314151617181920212223242526272829 |
- <?php
- namespace ThurData\Servers\KerioEmail\App\UI\Client\EmailAccount\Modals;
- use ThurData\Servers\KerioEmail\App\UI\Client\EmailAccount\Forms\ChangePasswordForm;
- use ThurData\Servers\KerioEmail\App\UI\Client\EmailAccount\Forms\EditAccountForm;
- use ThurData\Servers\KerioEmail\Core\UI\Interfaces\ClientArea;
- use ThurData\Servers\KerioEmail\Core\UI\Widget\Modals\BaseEditModal;
- /**
- *
- * Created by PhpStorm.
- * User: ThurData
- * Date: 08.11.19
- * Time: 12:07
- * Class ChangePasswordModal
- */
- class ChangePasswordModal extends BaseEditModal implements ClientArea
- {
- protected $id = 'changePasswordModal';
- protected $name = 'changePasswordModal';
- protected $title = 'changePasswordModal';
- public function initContent()
- {
- $this->addForm(new ChangePasswordForm());
- }
- }
|