ILIAS  trunk Revision v11.0_alpha-1723-g8e69f309bab
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator 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  ): string {
52  return '';
53  }
54 }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
resolveSpecificPlaceholder(string $placeholder_id, array $context_parameters, ?ilObjUser $recipient=null)