ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMailTemplateContextAdapter.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
31 {
32  public function __construct(
34  protected array $contexts,
35  protected array $context_parameter,
36  protected ?ilObjUser $recipient = null
37  ) {
38  }
39 
41  {
42  $clone = clone $this;
43  $clone->contexts[] = $context;
44  return $clone;
45  }
46 
47  public function __isset(string $name): bool
48  {
49  foreach ($this->contexts as $context) {
50  $possible_placeholder = array_map(
51  static function ($placeholder): string {
52  return strtoupper($placeholder);
53  },
54  array_keys($context->getPlaceholders())
55  );
56  if (in_array($name, $possible_placeholder, true)) {
57  return true;
58  }
59  }
60 
61  return false;
62  }
63 
64  public function __get(string $name): string
65  {
66  foreach ($this->contexts as $context) {
67  $ret = $context->resolvePlaceholder($name, $this->context_parameter, $this->recipient);
68  if ($ret !== '') {
69  return $ret;
70  }
71  }
72 
73  return '';
74  }
75 }
$context
Definition: webdav.php:31
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This class forms an interface between the existing ILIAS mail contexts and the requirements of Mustac...
withContext(ilMailTemplateContext $context)
__construct(Container $dic, ilPlugin $plugin)