19 declare(strict_types=1);
63 $this->tpl = $tpl ?? $DIC->ui()->mainTemplate();
64 $this->
ctrl = $ctrl ?? $DIC->ctrl();
65 $this->
lng = $lng ?? $DIC->language();
66 $this->
toolbar = $toolbar ?? $DIC->toolbar();
67 $this->rbacsystem = $rbacsystem ?? $DIC->rbac()->system();
68 $this->error = $error ?? $DIC[
'ilErr'];
69 $this->
http = $http ?? $DIC->http();
71 $this->uiFactory = $uiFactory ?? $DIC->ui()->factory();
72 $this->uiRenderer = $uiRenderer ?? $DIC->ui()->renderer();
73 $this->service = $templateService ?? $DIC[
'mail.texttemplates.service'];
75 $this->
lng->loadLanguageModule(
'meta');
80 return $this->rbacsystem->checkAccess(
'write', $this->parentObject->getRefId());
85 $next_class = $this->
ctrl->getNextClass($this);
86 $cmd = $this->
ctrl->getCmd();
88 switch ($next_class) {
90 if (!$cmd || !method_exists($this, $cmd)) {
91 $cmd =
'showTemplates';
102 if (count($contexts) <= 1) {
103 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'mail_template_no_context_available'));
106 $create_tpl_button->setCaption(
'mail_new_template');
107 $create_tpl_button->setUrl($this->
ctrl->getLinkTarget($this,
'showInsertTemplateForm'));
108 $this->
toolbar->addButtonInstance($create_tpl_button);
118 $tbl->setData($this->service->listAllTemplatesAsArray());
120 $this->tpl->setContent($tbl->getHTML());
129 $this->error->raiseError($this->
lng->txt(
'msg_no_perm_write'), $this->error->WARNING);
141 if ($form->
getInput(
'context') === $generic_context->getId()) {
143 $this->
lng->txt(
'mail_template_no_valid_context')
151 $this->service->createNewTemplate(
159 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'),
true);
160 $this->
ctrl->redirect($this,
'showTemplates');
163 $this->
lng->txt(
'mail_template_no_valid_context')
165 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'form_input_not_valid'));
182 $this->tpl->setContent($form->
getHTML());
188 $this->error->raiseError($this->
lng->txt(
'msg_no_perm_write'), $this->error->WARNING);
192 if ($this->
http->wrapper()->post()->has(
'tpl_id')) {
193 $templateId = $this->
http->wrapper()->post()->retrieve(
'tpl_id', $this->
refinery->kindlyTo()->int());
196 if (!is_numeric($templateId) || $templateId < 1) {
197 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'mail_template_missing_id'));
211 if ($form->
getInput(
'context') === $genericContext->getId()) {
213 $this->
lng->txt(
'mail_template_no_valid_context')
221 $this->service->modifyExistingTemplate(
230 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'),
true);
231 $this->
ctrl->redirect($this,
'showTemplates');
233 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'mail_template_missing_id'));
236 $this->
lng->txt(
'mail_template_no_valid_context')
238 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'form_input_not_valid'));
244 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'mail_template_missing_id'));
254 if ($this->
http->wrapper()->query()->has(
'tpl_id')) {
255 $templateId = $this->
http->wrapper()->query()->retrieve(
261 if (!is_numeric($templateId) || $templateId < 1) {
262 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'mail_template_missing_id'));
268 $template = $this->service->loadTemplateForId((
int) $templateId);
272 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'mail_template_missing_id'));
278 $this->tpl->setContent($form->
getHTML());
287 'lang' => $template->
getLang(),
296 $this->error->raiseError($this->
lng->txt(
'msg_no_perm_write'), $this->error->WARNING);
300 if ($this->
http->wrapper()->post()->has(
'tpl_id')) {
301 $templateIds = $this->
http->wrapper()->post()->retrieve(
306 if (count($templateIds) === 0 && $this->
http->wrapper()->query()->has(
'tpl_id')) {
307 $templateIds = [$this->
http->wrapper()->query()->retrieve(
313 if (0 === count($templateIds)) {
314 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'));
320 $confirm->setFormAction($this->
ctrl->getFormAction($this,
'deleteTemplate'));
322 $confirm->setHeaderText($this->
lng->txt(
'mail_tpl_sure_delete_entries'));
323 if (1 === count($templateIds)) {
324 $confirm->setHeaderText($this->
lng->txt(
'mail_tpl_sure_delete_entry'));
327 $confirm->setConfirm($this->
lng->txt(
'confirm'),
'deleteTemplate');
328 $confirm->setCancel($this->
lng->txt(
'cancel'),
'showTemplates');
330 foreach ($templateIds as $templateId) {
331 $template = $this->service->loadTemplateForId($templateId);
332 $confirm->addItem(
'tpl_id[]', (
string) $templateId, $template->getTitle());
335 $this->tpl->setContent($confirm->getHTML());
341 $this->error->raiseError($this->
lng->txt(
'msg_no_perm_write'), $this->error->WARNING);
345 if ($this->
http->wrapper()->post()->has(
'tpl_id')) {
346 $templateIds = $this->
http->wrapper()->post()->retrieve(
351 if (count($templateIds) === 0) {
353 if ($this->
http->wrapper()->query()->has(
'tpl_id')) {
354 $templateId = $this->
http->wrapper()->query()->retrieve(
'tpl_id', $this->
refinery->kindlyTo()->int());
356 $templateIds = [$templateId];
359 if (0 === count($templateIds)) {
360 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'));
365 $this->service->deleteTemplatesByIds($templateIds);
367 if (1 === count($templateIds)) {
368 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'mail_tpl_deleted_s'),
true);
370 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'mail_tpl_deleted_p'),
true);
372 $this->
ctrl->redirect($this,
'showTemplates');
381 if ($this->
http->wrapper()->query()->has(
'triggerValue')) {
382 $triggerValue = $this->
http->wrapper()->query()->retrieve(
384 $this->
refinery->kindlyTo()->string()
390 $this->
lng->txt(
'mail_form_placeholders_label'),
395 $placeholders->setAdviseText(sprintf($this->
lng->txt(
'placeholders_advise'),
'<br />'));
397 $placeholders->setAdviseText($this->
lng->txt(
'placeholders_advise'));
401 foreach (
$context->getPlaceholders() as $value) {
402 $placeholders->addPlaceholder($value[
'placeholder'], $value[
'label']);
405 $placeholders->render(
true);
418 $title->setRequired(
true);
426 if (count($contexts) <= 1) {
427 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'mail_template_no_context_available'),
true);
428 $this->
ctrl->redirect($this,
'showTemplates');
432 $context_options = [];
434 foreach ($contexts as $ctx) {
435 if ($ctx->getId() !== $generic_context->getId()) {
436 $context_options[$ctx->getId()] = $ctx;
437 $context_sort[$ctx->getId()] = $ctx->getTitle();
440 asort($context_sort);
442 foreach ($context_sort as
$id => $title) {
443 $ctx = $context_options[
$id];
444 $option =
new ilRadioOption($ctx->getTitle(), $ctx->getId());
445 $option->
setInfo($ctx->getDescription());
457 $hidden->setValue($this->
lng->getLangKey());
462 $subject->setSize(50);
473 $this->
lng->txt(
'mail_form_placeholders_label'),
477 $placeholders->setInstructionText($this->
lng->txt(
'mail_nacc_use_placeholder'));
479 $placeholders->setAdviseText(sprintf($this->
lng->txt(
'placeholders_advise'),
'<br />'));
481 $placeholders->setAdviseText($this->
lng->txt(
'placeholders_advise'));
483 $placeholders->supportsRerenderSignal(
485 $this->
ctrl->getLinkTarget($this,
'getAjaxPlaceholdersById',
'',
true)
487 if ($template === null) {
488 $context_id = $generic_context->getId();
490 $context_id = $template->getContext();
493 foreach (
$context->getPlaceholders() as
$key => $value) {
494 $placeholders->addPlaceholder($value[
'placeholder'], $value[
'label']);
508 $form->
setTitle($this->
lng->txt(
'mail_create_tpl'));
528 $this->error->raiseError($this->
lng->txt(
'msg_no_perm_write'), $this->error->WARNING);
532 if ($this->
http->wrapper()->query()->has(
'tpl_id')) {
533 $templateId = $this->
http->wrapper()->query()->retrieve(
'tpl_id', $this->
refinery->kindlyTo()->int());
536 if (!is_numeric($templateId) || $templateId < 1) {
537 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'mail_template_missing_id'));
543 $template = $this->service->loadTemplateForId((
int) $templateId);
544 $this->service->unsetAsContextDefault($template);
546 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'mail_template_missing_id'));
551 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'),
true);
552 $this->
ctrl->redirect($this,
'showTemplates');
558 $this->error->raiseError($this->
lng->txt(
'msg_no_perm_write'), $this->error->WARNING);
562 if ($this->
http->wrapper()->query()->has(
'tpl_id')) {
563 $templateId = $this->
http->wrapper()->query()->retrieve(
'tpl_id', $this->
refinery->kindlyTo()->int());
566 if (!is_numeric($templateId) || $templateId < 1) {
567 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'mail_template_missing_id'));
573 $template = $this->service->loadTemplateForId((
int) $templateId);
574 $this->service->setAsContextDefault($template);
576 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'mail_template_missing_id'));
581 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'),
true);
582 $this->
ctrl->redirect($this,
'showTemplates');
Interface GlobalHttpState.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
An entity that renders components to a string output.
showEditTemplateForm(ilPropertyFormGUI $form=null)
getTemplateForm(ilMailTemplate $template=null)
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
Class ilMailTemplateService.
getAjaxPlaceholdersById()
Class ilMailTemplateTableGUI.
static getTemplateContextById(string $a_id)
ilGlobalTemplateInterface $tpl
static getTemplateContexts(?array $a_id=null)
Returns an array of mail template contexts, the key of each entry matches its id. ...
static http()
Fetches the global http state from ILIAS.
populateFormWithTemplate(ilPropertyFormGUI $form, ilMailTemplate $template)
showInsertTemplateForm(ilPropertyFormGUI $form=null)
Error Handling & global info handling uses PEAR error class.
This class represents a text area property in a property form.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(ilObject $parentObject, ilGlobalTemplateInterface $tpl=null, ilCtrlInterface $ctrl=null, ilLanguage $lng=null, ilToolbarGUI $toolbar=null, ilRbacSystem $rbacsystem=null, ilErrorHandling $error=null, GlobalHttpState $http=null, Factory $uiFactory=null, Renderer $uiRenderer=null, ilMailTemplateService $templateService=null)
ilMailTemplateService $service
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...