ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
PathCollection.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 
29 {
31 
32  protected PathInterface $title;
43 
44  public function __construct(
45  PathFactory $path_factory
46  ) {
47  $this->path_factory = $path_factory;
48  $this->init();
49  }
50 
51  protected function init(): void
52  {
53  $this->title = $this->path_factory
54  ->custom()
55  ->withNextStep('general')
56  ->withNextStep('title')
57  ->withNextStep('string')
58  ->get();
59  $this->descriptions = $this->path_factory
60  ->custom()
61  ->withNextStep('general')
62  ->withNextStep('description')
63  ->withNextStep('string')
64  ->get();
65  $this->languages = $this->path_factory
66  ->custom()
67  ->withNextStep('general')
68  ->withNextStep('language')
69  ->get();
70  $this->keywords = $this->path_factory
71  ->custom()
72  ->withNextStep('general')
73  ->withNextStep('keyword')
74  ->withNextStep('string')
75  ->get();
76 
77  $this->first_author = $this->authorWithIndex(0);
78  $this->second_author = $this->authorWithIndex(1);
79  $this->third_author = $this->authorWithIndex(2);
80 
81  $this->first_typical_learning_time = $this->path_factory
82  ->custom()
83  ->withNextStep('educational')
84  ->withAdditionalFilterAtCurrentStep(FilterType::INDEX, '0')
85  ->withNextStep('typicalLearningTime')
86  ->withNextStep('duration')
87  ->get();
88 
89  $this->copyright = $this->path_factory
90  ->custom()
91  ->withNextStep('rights')
92  ->withNextStep('description')
93  ->withNextStep('string')
94  ->get();
95  $this->has_copyright = $this->path_factory
96  ->custom()
97  ->withNextStep('rights')
98  ->withNextStep('copyrightAndOtherRestrictions')
99  ->withNextStep('value')
100  ->get();
101  $this->has_copyright_source = $this->path_factory
102  ->custom()
103  ->withNextStep('rights')
104  ->withNextStep('copyrightAndOtherRestrictions')
105  ->withNextStep('source')
106  ->get();
107  }
108 
109  public function title(): PathInterface
110  {
111  return $this->title;
112  }
113 
114  public function descriptions(): PathInterface
115  {
116  return $this->descriptions;
117  }
118 
119  public function languages(): PathInterface
120  {
121  return $this->languages;
122  }
123 
124  public function keywords(): PathInterface
125  {
126  return $this->keywords;
127  }
128 
129  public function keywordsBetweenIndices(
130  int $first_index,
131  int $last_index
132  ): PathInterface {
133  $indices = [];
134  for ($i = $first_index; $i <= $last_index; $i++) {
135  $indices[] = (string) $i;
136  }
137 
138  return $this->path_factory
139  ->custom()
140  ->withNextStep('general')
141  ->withNextStep('keyword')
142  ->withNextStep('string')
143  ->withNextStepToSuperElement()
144  ->withAdditionalFilterAtCurrentStep(FilterType::INDEX, ...$indices)
145  ->get();
146  }
147 
148  public function firstAuthor(): PathInterface
149  {
150  return $this->first_author;
151  }
152 
153  public function secondAuthor(): PathInterface
154  {
155  return $this->second_author;
156  }
157 
158  public function thirdAuthor(): PathInterface
159  {
160  return $this->third_author;
161  }
162 
163  protected function authorWithIndex(int $index): PathInterface
164  {
165  return $this->path_factory
166  ->custom()
167  ->withNextStep('lifeCycle')
168  ->withNextStep('contribute')
169  ->withNextStep('role')
170  ->withNextStep('value')
171  // also capitalized to ensure backwards compatibility (38865)
172  ->withAdditionalFilterAtCurrentStep(FilterType::DATA, 'author', 'Author')
173  ->withNextStepToSuperElement()
174  ->withNextStep('source')
175  ->withAdditionalFilterAtCurrentStep(FilterType::DATA, 'LOMv1.0')
176  ->withNextStepToSuperElement()
177  ->withNextStepToSuperElement()
178  ->withNextStep('entity')
179  ->withAdditionalFilterAtCurrentStep(FilterType::INDEX, (string) $index)
180  ->get();
181  }
182 
184  {
186  }
187 
188  public function copyright(): PathInterface
189  {
190  return $this->copyright;
191  }
192 
193  public function hasCopyright(): PathInterface
194  {
195  return $this->has_copyright;
196  }
197 
199  {
201  }
202 }
keywordsBetweenIndices(int $first_index, int $last_index)
FilterType
Values should always be all lowercase.
Definition: FilterType.php:26