ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
trait.ilObjFileCopyrightInput.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
28 {
29  public function getCopyrightSelectionInput(string $lang_var_title): Radio
30  {
31  static $copyright_input;
32  // we chache the input field to avoid multiple creation in lists
33  if ($copyright_input !== null) {
34  return $copyright_input;
35  }
36 
37  $copyright_input = $this->getUIFactory()->input()->field()->radio($this->getLanguage()->txt($lang_var_title));
38  foreach ($this->lom_services->copyrightHelper()->getNonOutdatedCopyrightPresets() as $copyright_option) {
39  $copyright_input = $copyright_input->withOption(
40  $copyright_option->identifier(),
41  $copyright_option->title(),
42  $copyright_option->description()
43  );
44  if ($copyright_option->isDefault()) {
45  $copyright_input = $copyright_input->withValue($copyright_option->identifier());
46  }
47  }
48 
49  return $copyright_input;
50  }
51 
52  abstract protected function getUIFactory(): Factory;
53 
54  abstract protected function getLanguage(): \ilLanguage;
55 }
This implements the radio input.
Definition: Radio.php:34
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getLanguage()
This is how the factory for UI elements looks.
Definition: Factory.php:37
withOption(string $value, string $label, ?string $byline=null)
Definition: Radio.php:72
language handling