19 declare(strict_types=1);
77 protected bool $has_write =
false 81 $this->
lng = $DIC->language();
82 $this->tpl = $DIC->ui()->mainTemplate();
83 $this->
factory = $DIC->ui()->factory();
84 $this->
renderer = $DIC->ui()->renderer();
86 $this->request = $DIC->http()->request();
87 $this->
http = $DIC->http();
88 $this->
access = $DIC->access();
89 $this->parent_obj = $parentObj;
91 $DIC->resourceStorage(),
93 $DIC->ui()->mainTemplate()
98 DataRowBuilder $row_builder,
99 array $visible_column_ids,
103 ?array $additional_parameters
108 [$order_field, $order_direction] = $order->
join(
110 fn($ret, $key, $value) => [$key, $value]
113 usort($records,
static function (array $left, array $right) use ($order_field):
int {
114 if (\in_array($order_field, [
'container',
'title',
'type'],
true)) {
115 if (\in_array($order_field, [
'container',
'title'],
true)) {
116 $order_field .=
'_sortable';
119 return \ilStr::strCmp(
125 if ($order_field ===
'active') {
126 return $right[$order_field] <=> $left[$order_field];
129 return $left[$order_field] <=> $right[$order_field];
133 $records = array_reverse($records);
141 foreach ($records as $record) {
142 yield $row_builder->buildDataRow((
string) $record[
'id'], $record);
148 ?array $additional_parameters
167 if ($this->cached_records !==
null) {
171 $container_deleted_title_part =
'<span class="il_ItemAlertProperty">' . $this->
lng->txt(
'deleted') .
'</span>';
187 $badge->setId($badge_item[
'id']);
188 $badge->setImageRid($badge_item[
'image_rid']);
189 $badge->setImage($badge_item[
'image']);
195 $image_src = $this->badge_image_service->getImageFromResourceId($badge);
196 if ($image_src !==
'') {
197 $images[
'rendered'] = $this->
renderer->render(
198 $this->
factory->image()->responsive(
204 $image_src_large = $this->badge_image_service->getImageFromResourceId(
208 if ($image_src_large !==
'') {
209 $images[
'large'] = $this->
factory->image()->responsive(
216 $sortable_container_title_parts = [
217 'title' => $badge_item[
'parent_title'] ??
'' 219 $container_title_parts = [
221 $this->
factory->symbol()->icon()->custom(
222 ilObject::_getIcon($badge_item[
'parent_id'],
'big', $badge_item[
'parent_type'] ??
''),
223 $this->
lng->txt(
'obj_' . ($badge_item[
'parent_type'] ??
''))
226 'title' => $sortable_container_title_parts[
'title'],
229 if ($badge_item[
'deleted']) {
230 $container_title_parts[
'suffix'] = $container_deleted_title_part;
231 $sortable_container_title_parts[
'suffix'] = $container_deleted_title_part;
234 $ref_id = array_shift($ref_ids);
236 $container_title_parts[
'title'] = $this->
renderer->render(
238 $container_title_parts[
'title'],
243 $container_title_parts[
'suffix'] = $container_deleted_title_part;
244 $sortable_container_title_parts[
'suffix'] = $container_deleted_title_part;
248 $modal = $modal_container->constructModal(
250 $badge_item[
'title'],
252 'active' => $badge_item[
'active'] ? $this->
lng->txt(
'yes') : $this->
lng->txt(
'no'),
253 'type' => $type_caption,
254 'container' => implode(
' ', \array_slice($container_title_parts, 1,
null,
true)),
259 'id' => $badge_item[
'id'],
260 'active' => (bool) $badge_item[
'active'],
261 'type' => $type_caption,
262 'image' => $images[
'rendered'] ? ($modal_container->renderShyButton(
266 'title' => implode(
'', [
267 $modal_container->renderShyButton($badge_item[
'title'], $modal),
268 $modal_container->renderModal($modal)
270 'title_sortable' => $badge_item[
'title'],
271 'container' => implode(
' ', $container_title_parts),
272 'container_sortable' => implode(
' ', $sortable_container_title_parts),
276 $this->cached_records = $rows;
287 'image' => $this->
factory->table()->column()->text($this->
lng->txt(
'image'))->withIsSortable(
false),
288 'title' => $this->
factory->table()->column()->text($this->
lng->txt(
'title')),
289 'type' => $this->
factory->table()->column()->text($this->
lng->txt(
'type')),
290 'container' => $this->
factory->table()->column()->text($this->
lng->txt(
'container')),
291 'active' => $this->
factory->table()->column()->boolean(
292 $this->
lng->txt(
'active'),
293 $this->
lng->txt(
'yes'),
294 $this->
lng->txt(
'no')
295 )->withOrderingLabels(
296 $this->
lng->txt(
'badge_sort_active_badges_first'),
297 $this->
lng->txt(
'badge_sort_active_badges_last')
310 return $this->has_write ? [
311 'obj_badge_activate' => $this->
factory->table()->action()->multi(
312 $this->
lng->txt(
'activate'),
313 $url_builder->
withParameter($action_parameter_token,
'obj_badge_activate'),
316 'obj_badge_deactivate' =>
317 $this->
factory->table()->action()->multi(
318 $this->
lng->txt(
'deactivate'),
319 $url_builder->
withParameter($action_parameter_token,
'obj_badge_deactivate'),
322 'obj_badge_delete' =>
323 $this->
factory->table()->action()->multi(
324 $this->
lng->txt(
'delete'),
325 $url_builder->
withParameter($action_parameter_token,
'obj_badge_delete'),
328 'obj_badge_show_users' =>
329 $this->
factory->table()->action()->single(
330 $this->
lng->txt(
'user'),
331 $url_builder->
withParameter($action_parameter_token,
'obj_badge_show_users'),
339 $df = new \ILIAS\Data\Factory();
341 $table_uri = $df->uri($this->request->getUri()->__toString());
343 $query_params_namespace = [
'tid'];
345 [$url_builder, $action_parameter_token, $row_id_token] = $url_builder->acquireParameters(
346 $query_params_namespace,
353 ->data($this, $this->
lng->txt(
'badge_object_badges'), $this->
getColumns())
354 ->withId(self::class)
356 ->withActions($this->
getActions($url_builder, $action_parameter_token, $row_id_token))
357 ->withRequest($this->request);
361 $query = $this->
http->wrapper()->query();
362 if ($query->has($action_parameter_token->getName())) {
363 $action = $query->retrieve($action_parameter_token->getName(), $this->
refinery->kindlyTo()->string());
364 $ids = $query->retrieve($row_id_token->getName(), $this->
refinery->custom()->transformation(fn($v) => $v));
366 if ($action ===
'obj_badge_delete') {
368 if (\is_array($ids) && \count($ids) > 0) {
369 if ($ids === [
'ALL_OBJECTS']) {
377 $ids[] = $badge_item[
'id'];
381 foreach ($ids as
$id) {
382 $badge =
new ilBadge((
int) $id);
383 $items[] = $this->
factory->modal()->interruptiveItem()->keyValue(
385 (
string) $badge->getId(),
390 $this->
http->saveResponse(
395 $this->factory->modal()->interruptive(
396 $this->
lng->txt(
'badge_deletion'),
397 $this->
lng->txt(
'badge_deletion_confirmation'),
399 )->withAffectedItems($items)
403 $this->
http->sendResponse();
404 $this->
http->close();
getRows(DataRowBuilder $row_builder, array $visible_column_ids, Range $range, Order $order, ?array $filter_data, ?array $additional_parameters)
join($init, callable $fn)
static _getIcon(int $obj_id=0, string $size="big", string $type="", bool $offline=false)
Get icon for repository item.
__construct(ilObjBadgeAdministrationGUI $parentObj, protected bool $has_write=false)
readonly Renderer $renderer
readonly ilAccessHandler $access
static _getAllReferences(int $id)
get all reference ids for object ID
getActions(URLBuilder $url_builder, URLBuilderToken $action_parameter_token, URLBuilderToken $row_id_token)
readonly ServerRequestInterface RequestInterface $request
readonly Factory $factory
Both the subject and the direction need to be specified when expressing an order. ...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getTotalRowCount(?array $filter_data, ?array $additional_parameters)
Mainly for the purpose of pagination-support, it is important to know about the total number of recor...
static http()
Fetches the global http state from ILIAS.
readonly ilObjBadgeAdministrationGUI $parent_obj
readonly ilBadgeImage $badge_image_service
static getExtendedTypeCaption(ilBadgeType $a_type)
readonly ilGlobalTemplateInterface $tpl
readonly ILIAS Refinery Factory $refinery
static ofString(string $string)
Creates a new stream with an initial value.
withParameter(URLBuilderToken $token, string|array $value)
Change an acquired parameter's value if the supplied token is valid.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
static getObjectInstances(?array $filter=null)
A simple class to express a naive range of whole positive numbers.