3 declare(strict_types=1);
44 $this->
setId(
'usages');
48 $this->
setRowTemplate(
'tpl.lti_consume_provider_usage_table_row.html',
'Modules/LTIConsumer');
50 $this->
setTitle($DIC->language()->txt(
'tbl_provider_usage_header'));
51 $this->
setDescription($DIC->language()->txt(
'tbl_provider_usage_header_info'));
54 public function init(): void
56 parent::determineSelectedColumns();
64 $this->
addColumn($DIC->language()->txt(
'tbl_lti_prov_icon'),
'icon');
65 $this->
addColumn($DIC->language()->txt(
'tbl_lti_prov_title'),
'title');
66 $this->
addColumn($DIC->language()->txt(
'tbl_lti_prov_usages_trashed'),
'usedByIsTrashed');
67 $this->
addColumn($DIC->language()->txt(
'tbl_lti_prov_used_by'),
'used_by');
70 protected function fillRow(array $a_set): void
74 $this->tpl->setVariable(
'TITLE', $a_set[
'title']);
77 $this->tpl->setCurrentBlock(
'usages_trashed');
78 $usagesTrashed = $a_set[
'usedByIsTrashed'] && $this->
isTrashEnabled() ? $DIC->language()->txt(
'yes') :
'';
79 $this->tpl->setVariable(
'USAGES_TRASHED', $usagesTrashed);
80 $this->tpl->parseCurrentBlock();
83 $this->tpl->setCurrentBlock(
'used_by');
84 $tree = $this->
buildLinkToUsedBy($a_set[
'usedByObjId'], (
int) $a_set[
'usedByRefId'], (
string) $a_set[
'usedByTitle'], (
bool) $usagesTrashed);
85 $this->tpl->setVariable(
'TREE_TO_USED_BY', $tree[
'tree']);
86 $this->tpl->parseCurrentBlock();
89 if (isset($a_set[
'icon'])) {
90 $this->tpl->setVariable(
'ICON_SRC', $a_set[
'icon']);
91 $this->tpl->setVariable(
'ICON_ALT', basename($a_set[
'icon']));
94 $this->tpl->setVariable(
'ICON_SRC',
$icon);
95 $this->tpl->setVariable(
'ICON_ALT',
'lti');
106 $tree = $DIC->repositoryTree()->getPathFull($refId);
108 foreach ($tree as $node) {
109 $node[
'title'] = (
int) $node[
'parent'] === 0 ? $DIC->language()->txt(
'repository') : $node[
'title'];
110 $treeNodes[] = $trashed ===
true ? $node[
'title'] :
'<a href="' .
ilLink::_getLink((
int) $node[
'ref_id']) .
'">' . $node[
'title'] .
'</a>';
112 $endnode =
'<a href="' .
ilLink::_getLink((
int) $refId) .
'">' . $title .
'</a>';
113 if ($trashed ===
true) {
117 return [
'endnode' => $endnode,
'tree' => implode(
' > ', $treeNodes)];
123 return (
bool) ((
int) $DIC->settings()->get(
'enable_trash',
"0"));
ilLTIConsumerProviderUsageTableGUI $table
buildLinkToUsedBy(int $objId, int $refId, string $title, bool $trashed)
static _getIcon(int $obj_id=0, string $size="big", string $type="", bool $offline=false)
Get icon for repository item.
setDescription(string $a_val)
__construct(ilLTIConsumerAdministrationGUI $a_parent_obj, string $a_parent_cmd)
ilLTIConsumerProviderUsageTableGUI constructor.
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
static _getLink(?int $a_ref_id, string $a_type='', array $a_params=array(), string $append="")
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__construct(Container $dic, ilPlugin $plugin)
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)