19 declare(strict_types=1);
21 require_once(
"vendor/composer/vendor/autoload.php");
22 require_once(__DIR__ .
"/../../Base.php");
38 return new FieldFactory(
39 $this->createMock(UploadLimitResolver::class),
40 new C\SignalGenerator(),
57 return new ViewControl\Factory(
61 new C\SignalGenerator(),
68 return new ViewControlContainer\Factory(
69 new C\SignalGenerator(),
76 return new C\Table\Factory(
77 new C\SignalGenerator(),
84 new C\Table\DataRowBuilder(),
85 new C\Table\OrderingRowBuilder()
92 protected array
$data = [];
93 public function offsetExists(mixed $offset):
bool 95 return isset($this->data[$offset]);
97 public function offsetGet(mixed $offset): mixed
99 if(!$this->offsetExists($offset)) {
102 return $this->data[$offset];
104 public function offsetSet(mixed $offset, mixed $value):
void 106 $this->data[$offset] = $value;
108 public function offsetUnset(mixed $offset):
void 110 unset($this->data[$offset]);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Interface Observer Contains several chained tasks and infos about them.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Basic Tests for all Tables.
getViewControlContainerFactory()