ILIAS  trunk Revision v11.0_alpha-2638-g80c1d007f79
MailSignatureIliasUrlPlaceholder.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Mail\Placeholder;
22 
23 use ilUtil;
24 
26 {
27  public function getId(): string
28  {
29  return 'ILIAS_URL';
30  }
31 
32  public function addPlaceholder(array $placeholder): array
33  {
34  $placeholder[$this->getId()] = ilUtil::_getHttpPath();
35 
36  return $placeholder;
37  }
38 }
static _getHttpPath()