ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
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  ): string {
52  return '';
53  }
54 }
resolveSpecificPlaceholder(string $placeholder_id, array $context_parameters, ilObjUser $recipient=null)