19 declare(strict_types=1);
58 array $visible_column_ids,
62 ?array $additional_parameters
65 foreach ($records as $record) {
66 $row = $row_builder->
buildDataRow((
string) $record[
'template_id'], $record);
67 if ($record[
'automatically_generated']) {
68 $row = $row->withDisabledAction(
'didactic_do_export');
76 ?array $additional_parameters
87 $tpls->readInactive();
88 return $this->
filter->filter($tpls->getTemplates());
97 foreach ($tpl->getAssignments() as $obj_type) {
98 $atxt .= ($this->
lng->txt(
'objs_' . $obj_type) .
'<br/>');
100 $title_desc = $tpl->getPresentationTitle()
102 . $tpl->getPresentationDescription()
103 . (trim($tpl->getInfo()) ?
"<br><br>" . $tpl->getInfo() :
'')
104 . ($tpl->isAutoGenerated() ?
"<br><br>" . $this->
lng->txt(
"didactic_auto_generated") :
'');
107 if (count($tpl->getEffectiveFrom()) > 0) {
108 $scope_str .= $this->
lng->txt(
'didactic_scope_list_header');
109 foreach ($tpl->getEffectiveFrom() as
$ref_id) {
110 $link = $this->ui_renderer->render($this->ui_factory->link()->standard(
112 (
string) $this->static_url->builder()->build(
114 $this->data_factory->refId(
$ref_id)
117 $scope_str .=
"<br>";
121 $scope_str .= (isset($a_set[
'local']) ? $this->
lng->txt(
'meta_local') : $this->
lng->txt(
'meta_global'));
123 $scope_str .=
"<br>";
126 $icon_path = $tpl->getIconHandler()->getAbsolutePath();
127 foreach ($tpl->getAssignments() as $obj_type) {
128 $icon_label = $this->
lng->txt(
'objs_' . $obj_type);
131 $icon = $this->ui_factory->symbol()->icon()->custom(
137 $icon_active = $this->ui_factory->symbol()->icon()->custom(
141 $tpl->isEnabled() ? $this->
lng->txt(
'active') : $this->
lng->txt(
'inactive'),
146 'template_id' => $tpl->getId(),
147 'title' => $title_desc,
148 'applicable' => $atxt,
149 'scope' => $scope_str,
150 'enabled' => $icon_active,
151 'automatically_generated' => $tpl->isAutoGenerated()
154 $record[
'icon'] = $icon;
156 $records[] = $record;
158 list($order_field, $order_direction) = $order->
join([], fn($ret, $key, $value) => [$key, $value]);
159 usort($records, fn(
$a,
$b) =>
$a[$order_field] <=>
$b[$order_field]);
161 $order_direction ===
'DESC' 163 $records = array_reverse($records);
165 $selected_records = array_slice(
170 return $selected_records;
ilDidacticTemplateSettingsTableFilter $filter
getRows(DataRowBuilder $row_builder, array $visible_column_ids, Range $range, Order $order, ?array $filter_data, ?array $additional_parameters)
This is called by the table to retrieve rows; map data-records to rows using the $row_builder e...
join($init, callable $fn)
getRecords(Order $order, Range $range)
Both the subject and the direction need to be specified when expressing an order. ...
static _lookupObjId(int $ref_id)
buildDataRow(string $id, array $record)
static _lookupTitle(int $obj_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(ilDidacticTemplateSettingsTableFilter $filter, ilLanguage $lng, UIFactory $ui_factory, UIRenderer $ui_renderer, StaticURLService $static_url, DataFactory $data_factory)
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
DataFactory $data_factory
StaticURLService $static_url
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
filter(string $filter_id, $class_path, string $cmd, bool $activated=true, bool $expanded=true)
static _lookupType(int $id, bool $reference=false)
getTotalRowCount(?array $filter_data, ?array $additional_parameters)
Mainly for the purpose of pagination-support, it is important to know about the total number of recor...
A simple class to express a naive range of whole positive numbers.