19 declare(strict_types=1);
56 $this->ui_factory = $DIC[
'ui.factory'];
57 $this->
lng = $DIC->language();
58 $this->folder = $a_folder;
62 $this->
ctrl = $DIC->ctrl();
64 $this->
access = $DIC->access();
69 $table = $this->ui_factory->table()->data(
74 if ($this->
access->checkAccess(
'write',
'', $this->folder->getId())) {
75 $table = $table->withActions($this->
getActions());
83 $icon_yes =
$f->symbol()->icon()->custom(
84 'assets/images/standard/icon_checked.svg',
85 $this->
lng->txt(
'yes'),
88 $icon_no =
$f->symbol()->icon()->custom(
89 'assets/images/standard/icon_unchecked.svg',
90 $this->
lng->txt(
'no'),
94 'language' =>
$f->table()->column()->link($this->
lng->txt(
"language"))->withIsSortable(
false),
95 'status' =>
$f->table()->column()->text($this->
lng->txt(
"status"))->withIsSortable(
false),
96 'users' =>
$f->table()->column()->text($this->
lng->txt(
"users"))->withIsSortable(
false),
97 'page_translation' =>
$f->table()->column()->boolean($this->
lng->txt(
"language_translation"), $icon_yes, $icon_no)->withIsSortable(
false),
98 'last_refresh' =>
$f->table()->column()->text($this->
lng->txt(
"last_refresh"))->withIsSortable(
false),
99 'last_change' =>
$f->table()->column()->text($this->
lng->txt(
"last_change"))->withIsSortable(
false)
105 $actions = array_merge(
110 $this->
buildAction(
'lang_uninstall_changes',
'standard',
true),
117 protected function buildAction(
string $act,
string $type,
bool $async =
false): array
119 $action = $this->ui_factory->table()->action()
121 $this->
lng->txt($act),
122 $this->url_builder->withParameter($this->action_token, $act),
126 $action = $action->withAsync(
true);
129 return [$act => $action];
137 $languages = $this->folder->getLanguages();
142 foreach ($languages as $k => $l) {
143 $data[] = array_merge($l, [
"key" => $k]);
144 $names[] = $l[
'name'];
145 $installed[] = str_starts_with($l[
"desc"],
'installed') ? 1 : 2;
149 array_multisort($installed, SORT_ASC, $names, SORT_ASC,
$data);
160 array $visible_column_ids,
164 ?array $additional_parameters
166 foreach ($this->
getItems($range, $order) as $idx => $record) {
167 $obj_id = (string) $record[
'obj_id'];
168 $language = $record[
'name'];
169 if ($record[
"status"]) {
170 $language .=
' (' . $this->
lng->txt($record[
"status"]) .
')';
172 $to_language = $this->url_builder
173 ->withParameter($this->action_token,
'view')
174 ->withParameter($this->row_id_token, $obj_id)
176 ->buildURI()->__toString();
178 $record[
'language'] = $this->ui_factory->link()->standard($language, $to_language)->withDisabled();
180 $record[
'status'] = $this->
lng->txt($record[
'desc']);
182 $record[
'page_translation'] =
false;
183 if ($this->
ilSetting->get(
"lang_translate_" . $record[
"key"])) {
184 $record[
'page_translation'] =
true;
188 if ($record[
"desc"] !==
"not_installed") {
189 if ($this->
access->checkAccess(
'write',
'', $this->folder->getId())) {
190 $record[
'language'] = $record[
'language']->withDisabled(
false);
198 yield $row_builder->buildDataRow($obj_id, $record)
199 ->withDisabledAction(
'setSystemLanguage', ($record[
'desc'] ===
'not_installed') || ($record[
'key'] === $this->
lng->getDefaultLanguage()))
200 ->withDisabledAction(
'setUserLanguage', ($record[
'desc'] ===
'not_installed') || ($record[
'key'] === $this->
lng->getUserLanguage()))
201 ->withDisabledAction(
'refresh', ($record[
'desc'] ===
'not_installed'))
202 ->withDisabledAction(
'uninstall', ($record[
'desc'] ===
'not_installed'))
203 ->withDisabledAction(
'lang_uninstall_changes', ($record[
'desc'] ===
'not_installed'))
204 ->withDisabledAction(
'install', ($record[
'desc'] !==
'not_installed'))
205 ->withDisabledAction(
'install_local', ($record[
'desc'] !==
'not_installed'));
212 ILIAS_HTTP_PATH .
"/" . $this->
ctrl->getLinkTargetByClass(
Interface Observer Contains several chained tasks and infos about them.
static countUsers(string $a_lang)
Count number of users that use a language.
buildAction(string $act, string $type, bool $async=false)
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. ...
getURIWithTargetClass(string $target_gui, string $command)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
ilObjLanguageFolder $folder
__construct(ilObjLanguageFolder $a_folder, URLBuilder $url_builder, URLBuilderToken $action_token, URLBuilderToken $row_id_token)
getItems(?Range $range=null, ?Order $order=null)
Get language data.
ILIAS UI Factory $ui_factory
URLBuilderToken $action_token
Class ilObjLanguageFolder contains all function to manage language support for ILIAS3 install...
getRows(\ILIAS\UI\Component\Table\DataRowBuilder $row_builder, array $visible_column_ids, Range $range, Order $order, ?array $filter_data, ?array $additional_parameters)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
URLBuilderToken $row_id_token
static _getLastLocalChange(string $a_key)
get the date of the last local change $a_key language key Return change_date "yyyy-mm-dd hh:mm:ss" ...
A simple class to express a naive range of whole positive numbers.