ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Bridge.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
31 
32 class Bridge implements BridgeInterface
33 {
38 
39  public function __construct(
40  FactoryInterface $factory,
41  SettingsInterface $settings,
42  CopyrightRepository $copyright_repository,
43  IdentifierHandler $identifier_handler
44  ) {
45  $this->factory = $factory;
46  $this->settings = $settings;
47  $this->copyright_repository = $copyright_repository;
48  $this->identifier_handler = $identifier_handler;
49  }
50 
52  {
53  if (
54  !$this->settings->isCopyrightSelectionActive() ||
55  $slot !== SlotIdentifier::RIGHTS_DESCRIPTION
56  ) {
57  return null;
58  }
59 
60  $values = [];
61  foreach ($this->copyright_repository->getAllEntries() as $copyright) {
62  $values[] = $this->identifier_handler->buildIdentifierFromEntryID($copyright->id());
63  }
64  if (empty($values)) {
65  return null;
66  }
67  return $this->factory->copyright(...$values)->get();
68  }
69 
73  public function labelsForValues(
74  SlotIdentifier $slot,
75  string ...$values
76  ): \Generator {
77  if (
78  !$this->settings->isCopyrightSelectionActive() ||
79  $slot !== SlotIdentifier::RIGHTS_DESCRIPTION
80  ) {
81  return;
82  }
83 
84  foreach ($this->copyright_repository->getAllEntries() as $copyright) {
85  $identifier = $this->identifier_handler->buildIdentifierFromEntryID($copyright->id());
86  if (!in_array($identifier, $values)) {
87  continue;
88  }
89  yield new LabelledValue(
90  $identifier,
91  $copyright->title()
92  );
93  }
94  }
95 }
CopyrightRepository $copyright_repository
Definition: Bridge.php:36
labelsForValues(SlotIdentifier $slot, string ... $values)
Definition: Bridge.php:73
factory()
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(FactoryInterface $factory, SettingsInterface $settings, CopyrightRepository $copyright_repository, IdentifierHandler $identifier_handler)
Definition: Bridge.php:39