ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjectOwnershipManagementTableGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 
27 {
29  protected ilTree $tree;
33  protected Refinery $refinery;
34 
35  protected int $user_id;
36 
37  public function __construct(?object $parent_obj, string $parent_cmd, int $user_id)
38  {
39  global $DIC;
40 
41  $this->ctrl = $DIC['ilCtrl'];
42  $this->lng = $DIC['lng'];
43  $this->access = $DIC['ilAccess'];
44  $this->tree = $DIC['tree'];
45  $this->obj_definition = $DIC['objDefinition'];
46  $this->ui_factory = $DIC['ui.factory'];
47  $this->ui_renderer = $DIC['ui.renderer'];
48  $this->refinery = $DIC['refinery'];
49 
50  $this->user_id = $user_id;
51  $this->setId('objownmgmt'); // #16373
52 
53  parent::__construct($parent_obj, $parent_cmd);
54 
55  $this->addColumn($this->lng->txt('title'), 'title');
56  $this->addColumn($this->lng->txt('path'), 'path');
57  $this->addColumn($this->lng->txt('action'));
58 
59  $this->setFormAction($this->ctrl->getFormAction($parent_obj, $parent_cmd));
60  $this->setRowTemplate('tpl.obj_ownership_row.html', 'components/ILIAS/ILIASObject');
61  $this->setDisableFilterHiding();
62 
63  $this->setDefaultOrderField('title');
64  $this->setDefaultOrderDirection('asc');
65  }
66 
67  public function initItems(array $data): void
68  {
69  $process_arr = [];
70  $is_admin = false;
71  $a_type = '';
72  if ($data === []) {
73  return;
74  }
75 
76  if (!$this->user_id) {
77  $is_admin = $this->access->checkAccess('visible', '', SYSTEM_FOLDER_ID);
78  }
79 
80  foreach ($data as $id => $item) {
81  // workspace objects won't have references
83  if ($refs) {
84  foreach ($refs as $ref_id) {
85  // objects in trash are hidden
86  if (!$this->tree->isDeleted($ref_id)) {
87  if ($this->user_id) {
88  $readable = $this->access->checkAccessOfUser(
89  $this->user_id,
90  'read',
91  '',
92  $ref_id,
93  $a_type
94  );
95  } else {
96  $readable = $is_admin;
97  }
98 
99  $process_arr[$ref_id] = [
100  'obj_id' => $id,
101  'ref_id' => $ref_id,
102  'type' => ilObject::_lookupType($id),
103  'title' => $item,
104  'path' => $this->buildPath($ref_id),
105  'readable' => $readable
106  ];
107  }
108  }
109  }
110  }
111 
112  $this->setData($process_arr);
113  }
114 
115  protected function fillRow(array $set): void
116  {
117  $icon = $this->ui_factory->symbol()->icon()->standard($set['type'], $set['title'], Standard::MEDIUM);
118  $this->tpl->setVariable('ICON', $this->ui_renderer->render($icon));
119 
120  $this->tpl->setVariable(
121  'TITLE',
122  $this->refinery->encode()->htmlSpecialCharsAsEntities()->transform(
123  $set['title']
124  )
125  );
126  $this->tpl->setVariable('PATH', $set['path']);
127 
128  if ($set['readable'] && !$this->isParentReadOnly()) {
129  $this->tpl->setCurrentBlock('actions');
130  $this->tpl->setVariable('ACTIONS', $this->buildActions($set['ref_id'], $set['type']));
131  $this->tpl->parseCurrentBlock();
132  }
133  }
134 
135  protected function buildActions(int $ref_id, string $type): string
136  {
137  $this->ctrl->setParameter($this->parent_obj, 'ownid', $ref_id);
138 
139  $actions = [];
140  $actions[] = $this->ui_factory->link()->standard(
141  $this->lng->txt('show'),
142  ilLink::_getLink($ref_id, $type)
143  )->withOpenInNewViewport(true);
144 
145  $actions[] = $this->ui_factory->link()->standard(
146  $this->lng->txt('move'),
147  $this->ctrl->getLinkTargetByClass(get_class($this->parent_obj), 'move')
148  );
149 
150  $actions[] = $this->ui_factory->link()->standard(
151  $this->lng->txt('change_owner'),
152  $this->ctrl->getLinkTargetByClass(get_class($this->parent_obj), 'changeOwner')
153  );
154 
155  if (!in_array($type, ['crsr', 'catr', 'grpr']) && $this->obj_definition->allowExport($type)) {
156  $actions[] = $this->ui_factory->link()->standard(
157  $this->lng->txt('export'),
158  $this->ctrl->getLinkTargetByClass(get_class($this->parent_obj), 'export')
159  );
160  }
161 
162  $actions[] = $this->ui_factory->link()->standard(
163  $this->lng->txt('delete'),
164  $this->ctrl->getLinkTargetByClass(get_class($this->parent_obj), 'delete')
165  );
166 
167  $actions_dropdown = $this->ui_factory->dropdown()->standard($actions)
168  ->withLabel($this->lng->txt('actions'));
169 
170  $this->ctrl->setParameter($this->parent_obj, 'ownid', '');
171 
172  return $this->ui_renderer->render($actions_dropdown);
173  }
174 
175  protected function buildPath(int $ref_id): string
176  {
177  $path = '...';
178  $counter = 0;
179  $path_full = $this->tree->getPathFull($ref_id);
180  foreach ($path_full as $data) {
181  if (++$counter < (count($path_full) - 2)) {
182  continue;
183  }
184  if ($ref_id != $data['ref_id']) {
185  $path .= ' &raquo; ' . $data['title'];
186  }
187  }
188 
189  return $path;
190  }
191 
192  protected function isParentReadOnly(): bool
193  {
194  if (!method_exists($this->parent_obj, 'isReadOnly')) {
195  return false;
196  }
197  return $this->parent_obj->isReadOnly();
198  }
199 }
setData(array $a_data)
__construct(?object $parent_obj, string $parent_cmd, int $user_id)
setFormAction(string $a_form_action, bool $a_multipart=false)
static _getAllReferences(int $id)
get all reference ids for object ID
setDisableFilterHiding(bool $a_val=true)
const SYSTEM_FOLDER_ID
Definition: constants.php:35
setId(string $a_val)
$path
Definition: ltiservices.php:29
$ref_id
Definition: ltiauth.php:65
setDefaultOrderField(string $a_defaultorderfield)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
global $DIC
Definition: shib_login.php:22
setDefaultOrderDirection(string $a_defaultorderdirection)
__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)
static _lookupType(int $id, bool $reference=false)