19 declare(strict_types=1);
68 public function __construct(
int $parent_obj_id,
string $parent_obj_type,
protected bool $has_write =
false)
72 $this->
lng = $DIC->language();
73 $this->tpl = $DIC->ui()->mainTemplate();
74 $this->
factory = $DIC->ui()->factory();
75 $this->
renderer = $DIC->ui()->renderer();
77 $this->request = $DIC->http()->request();
78 $this->
http = $DIC->http();
80 $this->parent_id = $parent_obj_id;
81 $this->parent_type = $parent_obj_type;
83 $DIC->resourceStorage(),
85 $DIC->ui()->mainTemplate()
103 if ($this->cached_records !==
null) {
115 $image_src = $this->badge_image_service->getImageFromBadge($badge);
116 if ($image_src !==
'') {
117 $images[
'rendered'] = $this->
renderer->render(
118 $this->
factory->image()->responsive(
124 $image_src_large = $this->badge_image_service->getImageFromBadge(
128 if ($image_src_large !==
'') {
129 $images[
'large'] = $this->
factory->image()->responsive(
136 $modal = $modal_container->constructModal(
140 'description' => $badge->getDescription(),
141 'badge_criteria' => $badge->getCriteria(),
146 'id' => $badge->getId(),
148 'active' => $badge->isActive(),
149 'type' => $this->parent_type !==
'bdga' 151 : $badge->getTypeInstance()->getCaption(),
152 'manual' => !$badge->getTypeInstance() instanceof
ilBadgeAuto,
153 'image' => $images[
'rendered'] ? ($modal_container->renderShyButton(
157 'title' => implode(
'', [
158 $modal_container->renderShyButton($badge->getTitle(), $modal),
159 $modal_container->renderModal($modal)
161 'title_sortable' => $badge->getTitle()
165 $this->cached_records = $rows;
171 DataRowBuilder $row_builder,
172 array $visible_column_ids,
176 ?array $additional_parameters
181 [$order_field, $order_direction] = $order->
join(
183 fn($ret, $key, $value) => [$key, $value]
186 usort($records,
static function (array $left, array $right) use ($order_field):
int {
187 if (\in_array($order_field, [
'title',
'type'],
true)) {
188 if ($order_field ===
'title') {
189 $order_field .=
'_sortable';
192 return \ilStr::strCmp(
198 if ($order_field ===
'active') {
199 return $right[$order_field] <=> $left[$order_field];
202 return $left[$order_field] <=> $right[$order_field];
206 $records = array_reverse($records);
214 foreach ($records as $record) {
216 ->buildDataRow((
string) $record[
'id'], $record)
217 ->withDisabledAction(
218 'award_revoke_badge',
219 !$record[
'manual'] || !$record[
'active']
226 ?array $additional_parameters
237 'image' => $this->
factory->table()->column()->text($this->
lng->txt(
'image'))->withIsSortable(
false),
238 'title' => $this->
factory->table()->column()->text($this->
lng->txt(
'title')),
239 'type' => $this->
factory->table()->column()->text($this->
lng->txt(
'type')),
240 'active' => $this->
factory->table()->column()->boolean(
241 $this->
lng->txt(
'active'),
242 $this->
lng->txt(
'yes'),
243 $this->
lng->txt(
'no')
244 )->withOrderingLabels(
245 $this->
lng->txt(
'badge_sort_active_badges_first'),
246 $this->
lng->txt(
'badge_sort_active_badges_last')
259 return $this->has_write ? [
260 'badge_table_activate' =>
261 $this->
factory->table()->action()->multi(
262 $this->
lng->txt(
'activate'),
263 $url_builder->
withParameter($action_parameter_token,
'badge_table_activate'),
266 'badge_table_deactivate' =>
267 $this->
factory->table()->action()->multi(
268 $this->
lng->txt(
'deactivate'),
269 $url_builder->
withParameter($action_parameter_token,
'badge_table_deactivate'),
272 'badge_table_edit' => $this->
factory->table()->action()->single(
273 $this->
lng->txt(
'edit'),
274 $url_builder->
withParameter($action_parameter_token,
'badge_table_edit'),
277 'badge_table_delete' =>
278 $this->
factory->table()->action()->standard(
279 $this->
lng->txt(
'delete'),
280 $url_builder->
withParameter($action_parameter_token,
'badge_table_delete'),
283 'award_revoke_badge' =>
284 $this->
factory->table()->action()->single(
285 $this->
lng->txt(
'badge_award_revoke'),
286 $url_builder->
withParameter($action_parameter_token,
'award_revoke_badge'),
294 $df = new \ILIAS\Data\Factory();
296 $table_uri = $df->uri($this->request->getUri()->__toString());
298 $query_params_namespace = [
'tid'];
300 [$url_builder, $action_parameter_token, $row_id_token] = $url_builder->acquireParameters(
301 $query_params_namespace,
308 ->data($this, $this->
lng->txt(
'obj_bdga'), $this->
getColumns())
309 ->withId(self::class .
'_' . $this->parent_id)
311 ->withActions($this->
getActions($url_builder, $action_parameter_token, $row_id_token))
312 ->withRequest($this->request);
315 $query = $this->
http->wrapper()->query();
317 if ($query->has($action_parameter_token->getName())) {
318 $action = $query->retrieve($action_parameter_token->getName(), $this->
refinery->to()->string());
319 $ids = $query->retrieve($row_id_token->getName(), $this->
refinery->custom()->transformation(fn($v) => $v));
321 if ($action ===
'delete') {
323 foreach ($ids as
$id) {
324 $items[] = $this->
factory->modal()->interruptiveItem()->keyValue(
326 $row_id_token->getName(),
331 $this->
http->saveResponse(
336 $this->factory->modal()->interruptive(
337 $this->
lng->txt(
'badge_deletion'),
338 $this->
lng->txt(
'badge_deletion_confirmation'),
340 )->withAffectedItems($items)
344 $this->
http->sendResponse();
345 $this->
http->close();
ilBadgeImage $badge_image_service
readonly ilGlobalTemplateInterface $tpl
readonly Renderer $renderer
join($init, callable $fn)
getActions(URLBuilder $url_builder, URLBuilderToken $action_parameter_token, URLBuilderToken $row_id_token,)
static getInstancesByParentId(int $a_parent_id, ?array $a_filter=null)
__construct(int $parent_obj_id, string $parent_obj_type, protected bool $has_write=false)
readonly ILIAS Refinery Factory $refinery
Both the subject and the direction need to be specified when expressing an order. ...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
readonly string $parent_type
static http()
Fetches the global http state from ILIAS.
static getExtendedTypeCaption(ilBadgeType $a_type)
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...
getRows(DataRowBuilder $row_builder, array $visible_column_ids, Range $range, Order $order, ?array $filter_data, ?array $additional_parameters)
readonly Factory $factory
static ofString(string $string)
Creates a new stream with an initial value.
readonly ServerRequestInterface RequestInterface $request
withParameter(URLBuilderToken $token, string|array $value)
Change an acquired parameter's value if the supplied token is valid.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
A simple class to express a naive range of whole positive numbers.