ILIAS  trunk Revision v11.0_alpha-2638-g80c1d007f79
class.ilMailTemplateGenericContext.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
23  public function getId(): string
24  {
25  return 'mail_template_generic';
26  }
27 
28  public function getTitle(): string
29  {
30  return $this->getLanguage()->txt('please_choose');
31  }
32 
33  public function getDescription(): string
34  {
35  return $this->getLanguage()->txt('please_choose');
36  }
37 
38  public function getSpecificPlaceholders(): array
39  {
40  return [];
41  }
42 
43  public function resolveSpecificPlaceholder(
44  string $placeholder_id,
45  array $context_parameters,
46  ?ilObjUser $recipient = null
47  ): string {
48  return '';
49  }
50 }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
resolveSpecificPlaceholder(string $placeholder_id, array $context_parameters, ?ilObjUser $recipient=null)