19 declare(strict_types=1);
44 protected bool $active,
54 public function type():
Type 59 public function isActive():
bool 69 ): ControlledRepository {
73 protected int $active_count
77 public function countActiveVocabulariesForSlot(
SlotIdentifier $slot):
int 79 if ($slot === $this->slot) {
80 return $this->active_count;
90 ): StandardRepository {
91 return new class ($slot, $active) extends NullStandardRepository {
94 protected bool $active
100 if ($slot === $this->slot) {
101 return $this->active;
111 [5,
true,
true,
true],
112 [5,
true,
false,
true],
113 [1,
false,
true,
false],
114 [1,
false,
false,
true],
115 [0,
true,
true,
false],
116 [0,
true,
false,
true],
117 [0,
false,
false,
false]
125 int $active_controlled_vocabs,
126 bool $is_standard_vocab_active,
127 bool $is_vocab_active,
128 bool $are_other_vocabs_active
131 $this->
getControlledRepo(SlotIdentifier::TECHNICAL_FORMAT, $active_controlled_vocabs),
132 $this->
getStandardRepo(SlotIdentifier::TECHNICAL_FORMAT, $is_standard_vocab_active)
137 SlotIdentifier::TECHNICAL_FORMAT
141 $are_other_vocabs_active,
142 $infos->isDeactivatable(
$vocab)
151 $this->assertTrue($infos->isDeactivatable(
$vocab));
158 int $active_controlled_vocabs,
159 bool $is_standard_vocab_active,
160 bool $is_vocab_active,
161 bool $are_other_vocabs_active
164 $this->
getControlledRepo(SlotIdentifier::TECHNICAL_FORMAT, $active_controlled_vocabs),
165 $this->
getStandardRepo(SlotIdentifier::TECHNICAL_FORMAT, $is_standard_vocab_active)
168 Type::CONTROLLED_VOCAB_VALUE,
170 SlotIdentifier::TECHNICAL_FORMAT
174 $are_other_vocabs_active,
175 $infos->isDeactivatable(
$vocab)
184 $this->assertFalse($infos->isDeactivatable(
$vocab));
192 $this->assertFalse($infos->canDisallowCustomInput(
$vocab));
200 $this->assertTrue($infos->canDisallowCustomInput(
$vocab));
208 $this->assertFalse($infos->canDisallowCustomInput(
$vocab));
216 $this->assertFalse($infos->canDisallowCustomInput(
$vocab));
224 $this->assertFalse($infos->isCustomInputApplicable(
$vocab));
232 $this->assertTrue($infos->isCustomInputApplicable(
$vocab));
240 $this->assertFalse($infos->isCustomInputApplicable(
$vocab));
248 $this->assertTrue($infos->isCustomInputApplicable(
$vocab));
256 $this->assertFalse($infos->canBeDeleted(
$vocab));
264 $this->assertTrue($infos->canBeDeleted(
$vocab));
271 int $active_controlled_vocabs,
272 bool $is_standard_vocab_active,
273 bool $is_vocab_active,
274 bool $are_other_vocabs_active
277 $this->
getControlledRepo(SlotIdentifier::TECHNICAL_FORMAT, $active_controlled_vocabs),
278 $this->
getStandardRepo(SlotIdentifier::TECHNICAL_FORMAT, $is_standard_vocab_active)
281 Type::CONTROLLED_VOCAB_VALUE,
283 SlotIdentifier::TECHNICAL_FORMAT
287 $are_other_vocabs_active,
288 $infos->canBeDeleted(
$vocab)
297 $this->assertFalse($infos->canBeDeleted(
$vocab));
__construct()
Constructor setup ILIAS global object public.