19 declare(strict_types=1);
44 return $this->ui_factory->table()->data(
53 $f = $this->ui_factory->table()->column();
55 'module' =>
$f->text(ucfirst($this->
lng->txt(
"module"))),
56 'all' =>
$f->number($this->
lng->txt(
"language_scope_global")),
57 'changed' =>
$f->number($this->lng->txt(
"language_scope_local")),
58 'unchanged' =>
$f->number($this->lng->txt(
"language_scope_unchanged")),
68 foreach ($modules as $module) {
70 $row[
"module"] = $module;
71 $row[
"all"] = count($this->
object->getAllValues([$module]));
72 $row[
"changed"] = count($this->
object->getChangedValues([$module]));
73 $row[
"unchanged"] = $row[
"all"] - $row[
"changed"];
74 isset($total[
"all"]) ? $total[
"all"] += $row[
"all"] : $total[
"all"] = $row[
"all"];
75 isset($total[
"changed"]) ? $total[
"changed"] += $row[
"changed"] : $total[
"changed"] = $row[
"changed"];
76 isset($total[
"unchanged"]) ? $total[
"unchanged"] += $row[
"unchanged"] : $total[
"unchanged"] = $row[
"unchanged"];
79 $total[
"module"] = $this->
lng->txt(
"language_all_modules");
80 $total[
"all"] = $total[
"all"];
81 $total[
"changed"] = $total[
"changed"];
82 $total[
"unchanged"] = $total[
"unchanged"];
83 array_unshift(
$data, $total);
86 list($order_field, $order_direction) = $order->join([], fn($ret, $key, $value) => [$key, $value]);
89 static function (
$a,
$b) use ($order_field) {
90 switch ($order_field) {
92 $a_aspect =
$a[
"module"];
93 $b_aspect =
$b[
"module"];
96 $a_aspect =
$a[
"all"];
97 $b_aspect =
$b[
"all"];
100 $a_aspect =
$a[
"changed"];
101 $b_aspect =
$b[
"changed"];
104 $a_aspect =
$a[
"unchanged"];
105 $b_aspect =
$b[
"unchanged"];
108 return $a_aspect <=> $b_aspect;
111 if ($order_direction ===
'DESC') {
128 array $visible_column_ids,
132 ?array $additional_parameters
134 foreach ($this->
getItems($range, $order) as $idx => $record) {
135 $obj_id = (string) $idx;
136 $record[
'module'] = $record[
'module'];
137 $record[
'all'] = $record[
'all'];
138 $record[
'changed'] = $record[
'changed'];
139 $record[
'unchanged'] = $record[
'unchanged'];
141 yield $row_builder->buildDataRow($obj_id, $record);
Interface Observer Contains several chained tasks and infos about them.
getItems(?Range $range=null, ?Order $order=null)
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 _getModules(string $a_lang_key)
Get all modules of a language.
__construct(?ilObject $object, ILIAS\UI\Factory $ui_factory, ilLanguage $lng,)
getRows(\ILIAS\UI\Component\Table\DataRowBuilder $row_builder, array $visible_column_ids, \ILIAS\Data\Range $range, \ILIAS\Data\Order $order, ?array $filter_data, ?array $additional_parameters)
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
A simple class to express a naive range of whole positive numbers.
getTotalRowCount(?array $filter_data, ?array $additional_parameters)
ILIAS UI Factory $ui_factory