19 declare(strict_types=1);
32 protected \ilLanguage
$lng;
43 $this->
lng = $DIC->language();
44 $this->ui_fac = $DIC->ui()->factory();
45 $this->ui_ren = $DIC->ui()->renderer();
46 $this->request = $DIC->http()->request();
47 $this->
access = $DIC->access();
57 $table = $this->ui_fac->table()
58 ->data($data_retrieval, $this->
lng->txt(
"cont_usage"), $columns)
64 ->withRequest($this->request);
72 "object" => $this->ui_fac->table()->column()->text($this->
lng->txt(
"objects")),
73 "sub_object" => $this->ui_fac->table()->column()->text($this->
lng->txt(
"subobjects")),
74 "version" => $this->ui_fac->table()->column()->text($this->
lng->txt(
"cont_versions"))
75 ->withIsSortable(
false),
76 "type" => $this->ui_fac->table()->column()->text($this->
lng->txt(
"type")),
77 "link" => $this->ui_fac->table()->column()->link($this->
lng->txt(
"cont_link"))
78 ->withIsSortable(
false)
86 $data_retrieval =
new class (
100 protected int $term_id
104 public function getRows(
106 array $visible_column_ids,
110 ?array $additional_parameters
112 $records = $this->getRecords($range, $order);
113 foreach ($records as $idx => $record) {
114 $row_id = (string) $record[
"id"];
116 yield $row_builder->buildDataRow($row_id, $record);
120 public function getTotalRowCount(
122 ?array $additional_parameters
124 return count($this->getRecords());
132 foreach ($usages as $usage) {
133 if (empty($agg_usages[$usage[
"type"] .
":" . $usage[
"id"]])) {
134 $usage[
"hist_nr"] = [$usage[
"hist_nr"] ?? 0];
135 $agg_usages[$usage[
"type"] .
":" . $usage[
"id"]] = $usage;
137 $agg_usages[$usage[
"type"] .
":" . $usage[
"id"]][
"hist_nr"][] =
138 $usage[
"hist_nr"] ?? 0;
144 foreach ($agg_usages as $k => $usage) {
145 $records[$i][
"id"] = $k;
148 if (is_int(strpos($usage[
"type"],
":"))) {
149 $us_arr = explode(
":", $usage[
"type"]);
150 $usage[
"type"] = $us_arr[1];
151 $cont_type = $us_arr[0];
154 switch ($usage[
"type"]) {
158 switch ($cont_type) {
160 $page_obj = new \ilLMPage($usage[
"id"]);
161 $lm_obj = new \ilObjLearningModule($page_obj->getParentId(),
false);
162 $item[
"obj_type_txt"] = $this->
lng->txt(
"obj_" . $cont_type);
163 $item[
"obj_title"] = $lm_obj->getTitle();
164 $item[
"sub_txt"] = $this->
lng->txt(
"pg");
166 $ref_id = $this->getFirstWritableRefId($lm_obj->getId());
173 $page_obj = new \ilWikiPage($usage[
"id"]);
174 $item[
"obj_type_txt"] = $this->
lng->txt(
"obj_wiki");
176 $item[
"sub_txt"] = $this->
lng->txt(
"pg");
178 $ref_id = $this->getFirstWritableRefId($page_obj->getParentId());
185 $page_obj = new \ilGlossaryDefPage($usage[
"id"]);
186 $term_id = $page_obj->getId();
188 $item[
"obj_type_txt"] = $this->
lng->txt(
"obj_glo");
190 $item[
"sub_txt"] = $this->
lng->txt(
"cont_term");
192 $ref_id = $this->getFirstWritableRefId($page_obj->getParentId());
204 $item[
"obj_type_txt"] = $this->
lng->txt(
"obj_" . $cont_type);
206 $ref_id = $this->getFirstWritableRefId($usage[
"id"]);
213 $item[
"obj_title"] =
"Page " . $cont_type .
", " . $usage[
"id"];
219 $item[
"obj_type_txt"] = $this->
lng->txt(
"obj_mep");
221 $ref_id = $this->getFirstWritableRefId($usage[
"id"]);
228 $item[
"obj_type_txt"] = $this->
lng->txt(
"obj_mob");
230 $item[
"sub_txt"] = $this->
lng->txt(
"cont_link_area");
234 $item[
"obj_type_txt"] = $this->
lng->txt(
"cont_sqst");
237 $item[
"sub_txt"] = $this->
lng->txt(
"question");
239 $ref_id = $this->getFirstWritableRefId($obj_id);
246 $item[
"obj_type_txt"] = $this->
lng->txt(
"obj_glo");
248 $item[
"sub_txt"] = $this->
lng->txt(
"glo_referenced_term");
249 $ref_id = $this->getFirstWritableRefId($usage[
"id"]);
256 $item[
"obj_title"] =
"Type " . $usage[
"type"] .
", " . $usage[
"id"];
261 if (is_array($usage[
"hist_nr"]) &&
262 (count($usage[
"hist_nr"]) > 1 || $usage[
"hist_nr"][0] > 0)) {
263 asort($usage[
"hist_nr"]);
265 if ($usage[
"hist_nr"][0] == 0) {
266 array_shift($usage[
"hist_nr"]);
267 $usage[
"hist_nr"][] = 0;
269 foreach ($usage[
"hist_nr"] as $nr) {
273 $ver .= $sep . $this->
lng->txt(
"cont_current_version");
278 $records[$i][
"version"] = $ver;
281 if (($item[
"obj_type_txt"] ??
"") !=
"") {
282 $records[$i][
"type"] = $item[
"obj_type_txt"];
285 if (($usage[
"type"] ??
"") !=
"clip") {
286 $records[$i][
"object"] = $item[
"obj_title"];
287 if ($item[
"obj_link"] ??
"") {
288 $link = $this->ui_fac->link()->standard($this->
lng->txt(
"cont_link"), $item[
"obj_link"]);
289 $records[$i][
"link"] = $link;
293 if (($item[
"sub_txt"] ??
"") !=
"") {
294 $sub_text = $item[
"sub_txt"];
295 if (($item[
"sub_title"] ??
"") !=
"") {
297 $sub_text .= $item[
"sub_title"];
299 $records[$i][
"sub_object"] = $sub_text;
302 $records[$i][
"object"] = $this->
lng->txt(
"cont_users_have_mob_in_clip1") .
303 " " . $usage[
"cnt"] .
" " . $this->
lng->txt(
"cont_users_have_mob_in_clip2");
310 $records = $this->orderRecords($records, $order);
314 $records = $this->limitRecords($records, $range);
320 protected function getFirstWritableRefId(
int $obj_id):
int 323 foreach ($ref_ids as
$ref_id) {
324 if ($this->access->checkAccess(
"write",
"", $ref_id)) {
332 return $data_retrieval;
static getUsages(int $a_term_id)
static _getAllReferences(int $id)
get all reference ids for object ID
static lookupTitle(int $a_page_id, string $lang="-")
static _getTitle(int $question_id)
Returns the question title of a question with a given id.
Both the subject and the direction need to be specified when expressing an order. ...
__construct(int $term_id)
static _lookupTitle(int $a_obj_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _lookupTitle(int $obj_id)
static _getStaticLink(?int $a_ref_id, string $a_type='', bool $a_fallback_goto=true, string $append="")
static lookupObjFi(int $a_qid)
static _lookGlossaryTerm(int $term_id)
get glossary term
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
A simple class to express a naive range of whole positive numbers.
ServerRequestInterface $request
static _lookGlossaryID(int $term_id)
get glossary id form term id