19 declare(strict_types=1);
29 public function getCopyrightSelectionInput(
string $lang_var_title):
Radio 31 static $copyright_input;
33 if ($copyright_input !==
null) {
34 return $copyright_input;
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()
44 if ($copyright_option->isDefault()) {
45 $copyright_input = $copyright_input->withValue($copyright_option->identifier());
49 return $copyright_input;
52 abstract protected function getUIFactory():
Factory;
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This is how the factory for UI elements looks.