19 declare(strict_types=1);
53 public function __construct(
protected bool $has_write =
false)
56 $this->
lng = $DIC->language();
57 $this->tpl = $DIC->ui()->mainTemplate();
58 $this->
factory = $DIC->ui()->factory();
59 $this->
renderer = $DIC->ui()->renderer();
61 $this->request = $DIC->http()->request();
62 $this->
http = $DIC->http();
70 if ($this->cached_records !==
null) {
79 $title = $template->getTitle();
81 $image_src = $template->getImageFromResourceId();
82 if ($image_src !==
'') {
83 $image_component = $this->
factory->image()->responsive(
87 $image_html = $this->
renderer->render($image_component);
89 $image_src_large = $template->getImageFromResourceId(
92 $large_image_component = $this->
factory->image()->responsive(
97 $modal = $modal_container->constructModal($large_image_component, $template->getTitle());
99 $image = implode(
'', [
100 $modal_container->renderShyButton($image_html, $modal),
101 $modal_container->renderModal($modal)
103 $title = $modal_container->renderShyButton($template->getTitle(), $modal);
107 'id' => $template->getId(),
110 'title_sortable' => $template->getTitle()
114 $this->cached_records = $rows;
120 DataRowBuilder $row_builder,
121 array $visible_column_ids,
125 ?array $additional_parameters
130 [$order_field, $order_direction] = $order->
join(
132 fn($ret, $key, $value) => [$key, $value]
135 usort($records,
static function (array $left, array $right) use ($order_field):
int {
136 if ($order_field ===
'title') {
137 return \ilStr::strCmp(
138 $left[$order_field .
'_sortable'],
139 $right[$order_field .
'_sortable']
143 return $left[$order_field] <=> $right[$order_field];
147 $records = array_reverse($records);
155 foreach ($records as $record) {
156 yield $row_builder->buildDataRow((
string) $record[
'id'], $record);
162 ?array $additional_parameters
173 'image' => $this->
factory->table()->column()->text($this->
lng->txt(
'image'))->withIsSortable(
false),
174 'title' => $this->
factory->table()->column()->text($this->
lng->txt(
'title'))
186 return $this->has_write ? [
187 'badge_image_template_edit' => $this->
factory->table()->action()->single(
188 $this->
lng->txt(
'edit'),
189 $url_builder->
withParameter($action_parameter_token,
'badge_image_template_editImageTemplate'),
192 'badge_image_template_delete' =>
193 $this->
factory->table()->action()->standard(
194 $this->
lng->txt(
'delete'),
195 $url_builder->
withParameter($action_parameter_token,
'badge_image_template_delete'),
203 $df = new \ILIAS\Data\Factory();
205 $table_uri = $df->uri($this->request->getUri()->__toString());
207 $query_params_namespace = [
'tid'];
209 [$url_builder, $action_parameter_token, $row_id_token] = $url_builder->acquireParameters(
210 $query_params_namespace,
217 ->data($this, $this->
lng->txt(
'badge_image_templates'), $this->
getColumns())
218 ->withId(self::class)
220 ->withActions($this->
getActions($url_builder, $action_parameter_token, $row_id_token))
221 ->withRequest($this->request);
224 $query = $this->
http->wrapper()->query();
225 if ($query->has(
'tid')) {
226 $query_values = $query->retrieve(
232 if ($query_values === [
'ALL_OBJECTS']) {
234 if ($template->getId() !==
null) {
235 $items[] = $this->
factory->modal()->interruptiveItem()->keyValue(
236 (
string) $template->getId(),
237 (string) $template->getId(),
238 $template->getTitle()
242 } elseif (\is_array($query_values)) {
243 foreach ($query_values as
$id) {
245 $items[] = $this->
factory->modal()->interruptiveItem()->keyValue(
247 (
string) $badge->getId(),
253 $items[] = $this->
factory->modal()->interruptiveItem()->keyValue(
254 (
string) $badge->getId(),
255 (string) $badge->getId(),
259 if ($query->has($action_parameter_token->getName())) {
260 $action = $query->retrieve($action_parameter_token->getName(), $this->
refinery->kindlyTo()->string());
261 if ($action ===
'badge_image_template_delete') {
262 $this->
http->saveResponse(
267 $this->factory->modal()->interruptive(
268 $this->
lng->txt(
'badge_deletion'),
269 $this->
lng->txt(
'badge_deletion_confirmation'),
271 )->withAffectedItems($items)
275 $this->
http->sendResponse();
276 $this->
http->close();
join($init, callable $fn)
getActions(URLBuilder $url_builder, URLBuilderToken $action_parameter_token, URLBuilderToken $row_id_token)
getRows(DataRowBuilder $row_builder, array $visible_column_ids, Range $range, Order $order, ?array $filter_data, ?array $additional_parameters)
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...
Both the subject and the direction need to be specified when expressing an order. ...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static http()
Fetches the global http state from ILIAS.
readonly ServerRequestInterface RequestInterface $request
static ofString(string $string)
Creates a new stream with an initial value.
readonly Factory $factory
withParameter(URLBuilderToken $token, string|array $value)
Change an acquired parameter's value if the supplied token is valid.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
readonly ilGlobalTemplateInterface $tpl
readonly ILIAS Refinery Factory $refinery
__construct(protected bool $has_write=false)
A simple class to express a naive range of whole positive numbers.
readonly Renderer $renderer