ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilUserRoleStartingPointTableGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
29 {
30  private const TABLE_POSITION_USER_CHOOSES = -1;
31  private const TABLE_POSITION_DEFAULT = 9999;
32 
33  public function __construct(
34  object $parent_obj,
35  private ilUserStartingPointRepository $starting_point_repository,
36  private ilRbacReview $rbac_review,
37  private UIFactory $ui_factory,
38  private Renderer $ui_renderer,
39  ) {
40  $this->setId('usrrolesp');
41 
42  parent::__construct($parent_obj);
43 
44  $this->getItems();
45 
46  $this->setLimit(9999);
47  $this->setTitle($this->lng->txt('user_role_starting_point'));
48 
49  $this->addColumn($this->lng->txt('user_order'));
50  $this->addColumn($this->lng->txt('criteria'));
51  $this->addColumn($this->lng->txt('starting_page'));
52  $this->addColumn($this->lng->txt('actions'));
53  $this->setFormAction($this->ctrl->getFormAction($parent_obj));
54  $this->setRowTemplate('tpl.user_role_starting_point_row.html', 'components/ILIAS/User');
55  $this->addCommandButton('saveOrder', $this->lng->txt('save_order'));
56 
57  $this->setExternalSorting(true);
58  }
59 
63  public function getItems(): void
64  {
65  $dc = new ilObjectDataCache();
66 
67  $valid_points = $this->starting_point_repository->getPossibleStartingPoints();
68 
69  $status = ($this->starting_point_repository->isPersonalStartingPointEnabled()
70  ? $this->lng->txt('yes') : $this->lng->txt('no'));
71 
72  $starting_points = [];
73  $starting_points[] = [
74  'id' => $this->starting_point_repository->getUserStartingPointID(),
75  'criteria' => $this->lng->txt('user_chooses_starting_page'),
76  'starting_page' => $status,
77  'starting_position' => self::TABLE_POSITION_USER_CHOOSES
78  ];
79 
80  $available_starting_points = $this->starting_point_repository->getStartingPoints();
81 
82  foreach ($available_starting_points as $available_starting_point) {
83  $starting_point_type = $available_starting_point->getStartingPointType();
84  $position = $available_starting_point->getPosition();
85  $sp_text = $this->lng->txt($valid_points[$starting_point_type]) ?? '';
86 
87  if ($starting_point_type === ilUserStartingPointRepository::START_REPOSITORY_OBJ
88  && $available_starting_point->getStartingObject() !== null) {
89  $starting_object_ref_id = $available_starting_point->getStartingObject();
90  $object_id = ilObject::_lookupObjId($starting_object_ref_id);
91  $type = $dc->lookupType($object_id);
92  $title = $dc->lookupTitle($object_id);
93  $sp_text = $this->lng->txt('obj_' . $type) . ' '
94  . '<i>"' . $title . '" (' . $starting_object_ref_id . ')</i>';
95  }
96 
97  if ($available_starting_point->isRoleBasedStartingPoint()) {
98  $options = unserialize($available_starting_point->getRuleOptions(), ['allowed_classes' => false]);
99 
100  $role_obj = ilObjectFactory::getInstanceByObjId((int) $options['role_id'], false);
101  if (!($role_obj instanceof \ilObjRole)) {
102  continue;
103  }
104 
105  $starting_points[] = [
106  'id' => $available_starting_point->getId(),
107  'criteria' => $role_obj->getTitle(),
108  'starting_page' => $sp_text,
109  'starting_position' => $position,
110  'role_id' => $role_obj->getId()
111  ];
112  }
113  }
114 
115  $default_sp = $this->starting_point_repository->getSystemDefaultStartingPointType();
116  $starting_point = $this->lng->txt($valid_points[$default_sp]);
118  $starting_object_ref_id = $this->starting_point_repository->getSystemDefaultStartingObject();
119 
120  $object_id = ilObject::_lookupObjId($starting_object_ref_id);
121  $type = $dc->lookupType($object_id);
122  $title = $dc->lookupTitle($object_id);
123  $starting_point = $this->lng->txt('obj_' . $type) . ' '
124  . '<i>"' . $title . '" (' . $starting_object_ref_id . ')</i>';
125  }
126 
127  $starting_points[] = [
128  'id' => $this->starting_point_repository->getDefaultStartingPointID(),
129  'criteria' => $this->lng->txt('default'),
130  'starting_page' => $starting_point,
131  'starting_position' => self::TABLE_POSITION_DEFAULT
132  ];
133 
134  $sorted_starting_points = $this->starting_point_repository->reArrangePositions(
135  ilArrayUtil::sortArray($starting_points, 'starting_position', 'asc', true)
136  );
137 
138  $this->setData($sorted_starting_points);
139  }
140 
145  protected function fillRow(array $row_data): void
146  {
147  $id = $row_data['id'];
148  $role_id = $row_data['role_id'] ?? null;
149  $this->ctrl->setParameter($this->getParentObject(), 'spid', $id);
150 
151  if ($this->isSortingHidden($id)) {
152  $this->tpl->setVariable('HIDDEN', 'hidden');
153  } else {
154  $this->tpl->setVariable('VAL_ID', 'position[' . (string) $id . ']');
155  $this->tpl->setVariable('VAL_POS', $row_data['starting_position']);
156  }
157 
158  $this->tpl->setVariable(
159  'TXT_TITLE',
160  $this->getTitleForCriterium(
161  $id,
162  $role_id,
163  $row_data['criteria']
164  )
165  );
166 
167  $actions = $this->getActions($id, $role_id);
168 
169  $this->tpl->setVariable('TXT_PAGE', $row_data['starting_page']);
170 
171  $list = $this->ui_factory->dropdown()->standard($actions)->withLabel(
172  $this->lng->txt('actions')
173  );
174 
175  $this->tpl->setVariable('ACTION', $this->ui_renderer->render($list));
176  }
177 
181  private function getActions(int $id, ?int $role_id): array
182  {
183  $actions = [];
184 
185  $edit_url = $this->getEditLink($id, $role_id);
186 
187  $actions[] = $this->ui_factory->link()->standard(
188  $this->lng->txt('edit'),
189  $edit_url
190  );
191 
192  if ($id !== $this->starting_point_repository->getDefaultStartingPointID()
193  && $id !== $this->starting_point_repository->getUserStartingPointID()) {
194  $delete_url = $this->ctrl->getLinkTarget(
195  $this->getParentObject(),
196  'deleteStartingPoint'
197  );
198  $actions[] = $this->ui_factory->link()->standard(
199  $this->lng->txt('delete'),
200  $delete_url
201  );
202  }
203 
204  return $actions;
205  }
206 
207  private function getEditLink(int $id, ?int $role_id): string
208  {
209  $cmd = 'initRoleStartingPointForm';
210  if ($id === $this->starting_point_repository->getUserStartingPointID()) {
211  $cmd = 'initUserStartingPointForm';
212  }
213 
214  $this->ctrl->setParameter($this->getParentObject(), 'rolid', $role_id);
215  return $this->ctrl->getLinkTargetByClass(
216  get_class($this->getParentObject()),
217  $cmd
218  );
219  }
220 
221  private function isSortingHidden(int $id): bool
222  {
223  if ($id === $this->starting_point_repository->getDefaultStartingPointID()
224  || $id === $this->starting_point_repository->getUserStartingPointID()) {
225  return true;
226  }
227  return false;
228  }
229 
230  private function getTitleForCriterium(
231  int $id,
232  ?int $role_id,
233  string $criterium
234  ): string {
235  if ($id === $this->starting_point_repository->getDefaultStartingPointID()
236  || $id === $this->starting_point_repository->getUserStartingPointID()) {
237  return $criterium;
238  }
239 
240  $parent_title = '';
241  if ($role_id !== null && ilObject::_lookupType($role_id) === 'role') {
242  $ref_id = $this->rbac_review->getObjectReferenceOfRole($role_id);
243  if ($ref_id !== ROLE_FOLDER_ID) {
244  $parent_title = ' (' . ilObject::_lookupTitle(ilObject::_lookupObjId($ref_id)) . ')';
245  }
246  }
247  return $this->lng->txt('has_role') . ': '
248  . ilObjRole::_getTranslation($criterium)
249  . $parent_title;
250  }
251 }
Class ilObjRole.
setData(array $a_data)
setFormAction(string $a_form_action, bool $a_multipart=false)
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
TableGUI class for LTI consumer listing.
setId(string $a_val)
static _lookupObjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setExternalSorting(bool $a_val)
__construct(object $parent_obj, private ilUserStartingPointRepository $starting_point_repository, private ilRbacReview $rbac_review, private UIFactory $ui_factory, private Renderer $ui_renderer,)
$ref_id
Definition: ltiauth.php:65
static _lookupTitle(int $obj_id)
static _getTranslation(string $a_role_title)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
const ROLE_FOLDER_ID
Definition: constants.php:34
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
__construct(Container $dic, ilPlugin $plugin)
setLimit(int $a_limit=0, int $a_default_limit=0)
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)
getTitleForCriterium(int $id, ?int $role_id, string $criterium)
static _lookupType(int $id, bool $reference=false)
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)