35 $this->
setRowTemplate(
"tpl.renderer_row.html",
"Services/Preview");
41 $this->
setTitle($this->
lng->txt(
"loaded_preview_renderers"));
45 $this->
addColumn($this->
lng->txt(
"renderer_supported_repo_types"));
46 $this->
addColumn($this->
lng->txt(
"renderer_supported_file_types"));
53 protected function fillRow(array $a_set): void
55 $name = $a_set[
'name'] ??
'-';
56 $type = $this->
lng->txt(
"renderer_type_" . (($a_set[
's_plugin'] ??
false) ?
"plugin" :
"builtin"));
59 foreach ($a_set[
'supported_repo_types'] as $repo_type) {
60 $repo_types[] = $this->
lng->txt($repo_type);
66 $file_types = implode(
", ", $a_set[
'supported_file_formats'] ?? []);
70 $this->tpl->setVariable(
"TXT_NAME",
$name);
71 $this->tpl->setVariable(
"TXT_TYPE",
$type);
72 $this->tpl->setVariable(
"TXT_REPO_TYPES", implode(
", ", $repo_types));
73 $this->tpl->setVariable(
"TXT_FILE_TYPES", $file_types);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setEnableTitle(bool $a_enabletitle)
Class ilObjFileAccessSettingsGUI.
setExternalSorting(bool $a_val)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
__construct(ilObjFileAccessSettingsGUI $a_parent_obj, string $a_parent_cmd)
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__construct(Container $dic, ilPlugin $plugin)
setLimit(int $a_limit=0, int $a_default_limit=0)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
disable(string $a_module_name)
fillRow(array $a_set)
Standard Version of Fill Row.
setEnableHeader(bool $a_enableheader)