{
public function getCopyrightSelectionInput(
string $lang_var_title):
Radio {
static $copyright_input;
if ($copyright_input !==
null) {
return $copyright_input;
}
$copyright_input = $this->getUIFactory()->input()->field()->radio($this->
getLanguage()->txt($lang_var_title));
foreach ($this->lom_services->copyrightHelper()->getNonOutdatedCopyrightPresets() as $copyright_option) {
$copyright_option->identifier(),
$copyright_option->title(),
$copyright_option->description()
);
if ($copyright_option->isDefault()) {
$copyright_input = $copyright_input->withValue($copyright_option->identifier());
}
}
return $copyright_input;
}
abstract protected function getUIFactory():
Factory
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This is how the factory for UI elements looks.