19 declare(strict_types=1);
32 protected \ilLanguage
$lng;
52 $this->
lng = $DIC->language();
53 $this->tree = $DIC->repositoryTree();
54 $this->ui_fac = $DIC->ui()->factory();
55 $this->ui_ren = $DIC->ui()->renderer();
56 $this->request = $DIC->http()->request();
70 $table = $this->ui_fac->table()
71 ->data($data_retrieval, $this->
lng->txt(
"skmg_assigned_objects"), $columns)
74 $this->parent_obj::class .
"_" .
75 $this->skill_id .
"_" .
76 $this->tref_id .
"_" .
79 ->withRequest($this->request);
87 "type" => $this->ui_fac->table()->column()->statusIcon($this->
lng->txt(
"type"))
88 ->withIsSortable(
false),
89 "title" => $this->ui_fac->table()->column()->text($this->
lng->txt(
"title")),
90 "path" => $this->ui_fac->table()->column()->text($this->
lng->txt(
"path"))
91 ->withIsSortable(
false)
99 $data_retrieval =
new class (
113 protected array $objects
117 public function getRows(
119 array $visible_column_ids,
123 ?array $additional_parameters
125 $records = $this->getRecords($range, $order);
126 foreach ($records as $idx => $record) {
127 $row_id = (string) $record[
"obj_id"];
129 yield $row_builder->buildDataRow($row_id, $record);
133 public function getTotalRowCount(
135 ?array $additional_parameters
137 return count($this->getRecords());
144 foreach ($this->objects as $obj_id) {
146 $obj_ref_id = end($obj_ref_id);
152 $records[$i][
"obj_id"] = $obj_id;
156 $icon = $this->ui_fac->symbol()->icon()->standard(
158 $this->
lng->txt(
"icon") .
" " . $this->
lng->txt($obj_type),
161 $records[$i][
"type"] = $icon;
163 $obj_ref_id_parent = $this->tree->getParentId($obj_ref_id);
164 $path = new \ilPathGUI();
165 $records[$i][
"path"] =
$path->getPath($this->tree->getParentId($obj_ref_id_parent), $obj_ref_id);
171 $records = $this->orderRecords($records, $order);
175 $records = $this->limitRecords($records, $range);
182 return $data_retrieval;
static _getAllReferences(int $id)
get all reference ids for object ID
ServerRequestInterface $request
Both the subject and the direction need to be specified when expressing an order. ...
__construct(object $parent_obj, array $objects, int $skill_id=0, int $tref_id=0, int $profile_id=0)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _lookupTitle(int $obj_id)
This is how the factory for UI elements looks.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupType(int $id, bool $reference=false)
A simple class to express a naive range of whole positive numbers.