ChangePasswordModal.php 722 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace ThurData\Servers\KerioEmail\App\UI\Client\EmailAccount\Modals;
  3. use ThurData\Servers\KerioEmail\App\UI\Client\EmailAccount\Forms\ChangePasswordForm;
  4. use ThurData\Servers\KerioEmail\Core\UI\Interfaces\ClientArea;
  5. use ThurData\Servers\KerioEmail\Core\UI\Widget\Modals\BaseEditModal;
  6. /**
  7. *
  8. * Created by PhpStorm.
  9. * User: ThurData
  10. * Date: 08.11.19
  11. * Time: 12:07
  12. * Class ChangePasswordModal
  13. */
  14. class ChangePasswordModal extends BaseEditModal implements ClientArea
  15. {
  16. protected $id = 'changePasswordModal';
  17. protected $name = 'changePasswordModal';
  18. protected $title = 'changePasswordModal';
  19. public function initContent()
  20. {
  21. $this->addForm(new ChangePasswordForm());
  22. }
  23. }