ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilMailTemplateGenericContext.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
26 {
27  public function getId(): string
28  {
29  return 'mail_template_generic';
30  }
31 
32  public function getTitle(): string
33  {
34  return $this->getLanguage()->txt('please_choose');
35  }
36 
37  public function getDescription(): string
38  {
39  return $this->getLanguage()->txt('please_choose');
40  }
41 
42  public function getSpecificPlaceholders(): array
43  {
44  return [];
45  }
46 
47  public function resolveSpecificPlaceholder(
48  string $placeholder_id,
49  array $context_parameters,
50  ilObjUser $recipient = null,
51  bool $html_markup = false
52  ): string {
53  return '';
54  }
55 }
Class ilMailTemplateContext.
resolveSpecificPlaceholder(string $placeholder_id, array $context_parameters, ilObjUser $recipient=null, bool $html_markup=false)