19 declare(strict_types=1);
49 $r = $DIC[
'ui.renderer'];
52 $table = $repo->getTableForRepresentation();
55 $table->withRequest($DIC->http()->request())
62 protected \ILIAS\Data\Factory
$df;
67 $this->ui_factory = $DIC[
'ui.factory'];
68 $this->df = new \ILIAS\Data\Factory();
74 return $this->ui_factory->table()->data(
76 'a data table from a repository',
84 array $visible_column_ids,
88 ?array $additional_parameters
91 $this->ui_factory->symbol()->icon()->custom(
'assets/images/standard/icon_checked.svg',
'',
'small'),
92 $this->ui_factory->symbol()->icon()->custom(
'assets/images/standard/icon_unchecked.svg',
'',
'small')
94 foreach ($this->
doSelect($order, $range) as $idx => $record) {
95 $row_id = (string) $record[
'usr_id'];
96 $record[
'achieve_txt'] = $record[
'achieve'] > 80 ?
'passed' :
'failed';
97 $record[
'failure_txt'] =
"not " . $record[
"achieve_txt"];
98 $record[
'repeat'] = $record[
'achieve'] < 80;
99 $record[
'achieve_icon'] = $icons[(
int) $record[
'achieve'] > 80];
100 yield $row_builder->buildDataRow($row_id, $record);
106 ?array $additional_parameters
114 $sql_order_part = $order->
join(
'ORDER BY', fn(...$o) => implode(
' ', $o));
115 $sql_range_part = sprintf(
'LIMIT %2$s OFFSET %1$s', ...$range->
unpack());
117 fn($rec) => array_merge($rec, [
'sql_order' => $sql_order_part,
'sql_range' => $sql_range_part]),
127 'usr_id' =>
$f->table()->column()->number(
"User ID")
128 ->withIsSortable(
false),
129 'login' =>
$f->table()->column()->text(
"Login")
130 ->withHighlight(
true),
131 'email' =>
$f->table()->column()->eMail(
"eMail"),
132 'last' =>
$f->table()->column()->date(
"last login", $this->df->dateFormat()->germanLong()),
133 'achieve' =>
$f->table()->column()->status(
"progress")
134 ->withIsOptional(
true),
135 'achieve_txt' =>
$f->table()->column()->status(
"success")
136 ->withIsSortable(
false)
137 ->withIsOptional(
true),
138 'failure_txt' =>
$f->table()->column()->status(
"failure")
139 ->withIsSortable(
false)
140 ->withIsOptional(
true,
false),
141 'achieve_icon' =>
$f->table()->column()->statusIcon(
"achieved")
142 ->withIsOptional(
true),
143 'repeat' =>
$f->table()->column()->boolean(
"repeat",
'yes',
'no')
144 ->withIsSortable(
false),
145 'fee' =>
$f->table()->column()->number(
"Fee")
147 ->withUnit(
'£',
I\Column\Number::UNIT_POSITION_FORE),
148 'sql_order' =>
$f->table()->column()->text(
"sql order part")
149 ->withIsSortable(
false)
150 ->withIsOptional(
true),
151 'sql_range' =>
$f->table()->column()->text(
"sql range part")
152 ->withIsSortable(
false)
153 ->withIsOptional(
true)
160 [
'usr_id' => 123,
'login' =>
'superuser',
'email' =>
'user@example.com',
161 'last' => new \DateTimeImmutable(),
'achieve' => 20,
'fee' => 0
163 [
'usr_id' => 867,
'login' =>
'student1',
'email' =>
'student1@example.com',
164 'last' => new \DateTimeImmutable(),
'achieve' => 90,
'fee' => 40
166 [
'usr_id' => 8923,
'login' =>
'student2',
'email' =>
'student2@example.com',
167 'last' => new \DateTimeImmutable(),
'achieve' => 66,
'fee' => 36.789
169 [
'usr_id' => 8748,
'login' =>
'student3_longname',
'email' =>
'student3_long_email@example.com',
170 'last' => new \DateTimeImmutable(),
'achieve' => 66,
'fee' => 36.789
getTableForRepresentation()
join($init, callable $fn)
Interface Observer Contains several chained tasks and infos about them.
getColumsForRepresentation()
getTotalRowCount(?array $filter_data, ?array $additional_parameters)
Both the subject and the direction need to be specified when expressing an order. ...
repo_implementation()
expected output: > ILIAS shows the rendered Component.
getRows(I\DataRowBuilder $row_builder, array $visible_column_ids, Range $range, Order $order, ?array $filter_data, ?array $additional_parameters)
ILIAS UI Factory $ui_factory
doSelect(Order $order, Range $range)
A simple class to express a naive range of whole positive numbers.