ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
JavaScriptBindable.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
22 
23 use Closure;
26 
32 {
33  private ?Closure $on_load_code_binder = null;
34 
38  public function withOnLoadCode(Closure $binder)
39  {
40  $this->checkBinder($binder);
41  $clone = clone $this;
42  $clone->on_load_code_binder = $binder;
43  return $clone;
44  }
45 
49  public function withAdditionalOnLoadCode(Closure $binder)
50  {
51  $current_binder = $this->getOnLoadCode();
52  if ($current_binder === null) {
53  return $this->withOnLoadCode($binder);
54  }
55 
56  $this->checkBinder($binder);
57  return $this->withOnLoadCode(fn ($id) => $current_binder($id) . "\n" . $binder($id));
58  }
59 
63  public function getOnLoadCode(): ?Closure
64  {
65  return $this->on_load_code_binder;
66  }
67 
71  private function checkBinder(Closure $binder): void
72  {
73  $refl = new ReflectionFunction($binder);
74  $args = array_map(fn ($arg) => $arg->name, $refl->getParameters());
75  if (array("id") !== $args) {
76  throw new InvalidArgumentException('Expected closure "$binder" to have exactly one argument "$id".');
77  }
78  }
79 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23