19 declare(strict_types=1);
43 return new class () extends
Services {
44 public array $repositories = [];
52 return $this->repositories[] =
new class () extends
NullRepository {
53 public array $deleted_md = [];
55 public function getMD(
int $obj_id,
int $sub_id,
string $type):
SetInterface 57 return new class ($obj_id, $sub_id, $type) extends
NullSet {
60 public function __construct(
int $obj_id,
int $sub_id,
string $type)
71 public function getMDOnPath(
77 return new class (
$path, $obj_id, $sub_id, $type) extends
NullSet {
92 public function deleteAllMD(
int $obj_id,
int $sub_id,
string $type):
void 94 $this->deleted_md[] = [
103 protected function readerFactory(): ReaderFactoryInterface
105 return new class () extends NullReaderFactory {
117 protected function manipulatorFactory(): ManipulatorFactoryInterface
119 return new class () extends NullManipulatorFactory {
136 $reader = $services->read(5, 17,
'type');
139 [
'obj_id' => 5,
'sub_id' => 17,
'type' =>
'type'],
148 $reader = $services->read(5, 17,
'type',
$path);
151 [
'path' =>
$path,
'obj_id' => 5,
'sub_id' => 17,
'type' =>
'type'],
159 $reader = $services->read(23, 0,
'type');
162 [
'obj_id' => 23,
'sub_id' => 23,
'type' =>
'type'],
170 $manipulator = $services->manipulate(5, 17,
'type');
173 [
'obj_id' => 5,
'sub_id' => 17,
'type' =>
'type'],
174 $manipulator->set->data
181 $manipulator = $services->manipulate(35, 0,
'type');
184 [
'obj_id' => 35,
'sub_id' => 35,
'type' =>
'type'],
185 $manipulator->set->data
192 $services->deleteAll(34, 90,
'type');
194 $this->assertCount(1, $services->repositories);
195 $this->assertCount(1, $services->repositories[0]->deleted_md);
197 [
'obj_id' => 34,
'sub_id' => 90,
'type' =>
'type'],
198 $services->repositories[0]->deleted_md[0]
205 $services->deleteAll(789, 0,
'type');
207 $this->assertCount(1, $services->repositories);
208 $this->assertCount(1, $services->repositories[0]->deleted_md);
210 [
'obj_id' => 789,
'sub_id' => 789,
'type' =>
'type'],
211 $services->repositories[0]->deleted_md[0]
repository()
description: > Example for rendering a repository card
__construct()
Constructor setup ILIAS global object public.