|
|
@@ -3,7 +3,6 @@
|
|
|
namespace ThurData\Servers\KerioEmail\App\UI\Client\Setting\Modals;
|
|
|
|
|
|
use ThurData\Servers\KerioEmail\App\UI\Client\Setting\Forms\EditSettingForm;
|
|
|
-use ThurData\Servers\KerioEmail\Core\Traits\Template;
|
|
|
use ThurData\Servers\KerioEmail\Core\UI\Interfaces\ClientArea;
|
|
|
use ThurData\Servers\KerioEmail\Core\UI\Widget\Modals\BaseEditModal;
|
|
|
|
|
|
@@ -17,14 +16,13 @@ use ThurData\Servers\KerioEmail\Core\UI\Widget\Modals\BaseEditModal;
|
|
|
*/
|
|
|
class EditSettingModal extends BaseEditModal implements ClientArea
|
|
|
{
|
|
|
- use Template;
|
|
|
protected $id = 'editSettingModal';
|
|
|
protected $name = 'editSettingModal';
|
|
|
protected $title = 'editSettingModal';
|
|
|
|
|
|
public function initContent()
|
|
|
{
|
|
|
- $this->setTemplateName($id);
|
|
|
+ $this->templateName = $id;
|
|
|
$this->addForm(new EditSettingForm());
|
|
|
// $this->addForm(new InfoForm());
|
|
|
}
|