40 $this->
setId(self::class);
42 $this->file = $calling_gui_class->
getFile();
43 $this->current_version = $this->file->getVersion();
47 $this->dic->language()->loadLanguageModule(
'file');
50 $this->
setRowTemplate(
"tpl.file_version_row.html",
"Modules/File");
54 $this->
setTitle($this->dic->language()->txt(
"versions"));
58 $this->
setFormAction($this->dic->ctrl()->getFormAction($calling_gui_class));
63 $this->dic->language()->txt(
"file_rollback")
68 $this->
addColumn($this->dic->language()->txt(
"version"),
"",
"auto");
69 $this->
addColumn($this->dic->language()->txt(
"date"));
70 $this->
addColumn($this->dic->language()->txt(
"file_uploaded_by"));
71 $this->
addColumn($this->dic->language()->txt(
"filename"));
72 $this->
addColumn($this->dic->language()->txt(
"versionname"));
73 $this->
addColumn($this->dic->language()->txt(
"filesize"),
"",
"",
false);
74 $this->
addColumn($this->dic->language()->txt(
"type"));
75 $this->
addColumn($this->dic->language()->txt(
"action"));
84 foreach ($this->file->getVersions() as
$version) {
85 $versions[] =
$version->getArrayCopy();
87 usort($versions,
static fn (array $i1, array $i2):
int => $i2[
'version'] - $i1[
'version']);
90 $this->
setMaxCount(is_array($versions) ? count($versions) : 0);
93 protected function fillRow(array $a_set): void
95 $hist_id = $a_set[
"hist_entry_id"];
100 $rollback_version = $a_set[
"rollback_version"];
101 $rollback_user_id = $a_set[
"rollback_user_id"];
105 $username = trim(
$name[
"title"] .
" " .
$name[
"firstname"] .
" " .
$name[
"lastname"]);
108 $filesize = $a_set[
"size"];
111 $action = $this->dic->language()->txt(
"file_version_" . $a_set[
"action"]);
112 if ($a_set[
"action"] ==
"rollback") {
114 $rollback_username = trim($name[
"title"] .
" " . $name[
"firstname"] .
" " . $name[
"lastname"]);
115 $action = sprintf($action, $rollback_version, $rollback_username);
124 $actions->setId($hist_id);
125 $actions->setListTitle($this->dic->language()->txt(
"actions"));
127 $this->dic->language()->txt(
"delete"),
131 if ($this->current_version !== (
int)
$version) {
133 $this->dic->language()->txt(
"file_rollback"),
143 $this->tpl->setVariable(
"TXT_VERSION",
$version);
144 $this->tpl->setVariable(
148 $this->tpl->setVariable(
"TXT_UPLOADED_BY", $username);
149 $this->tpl->setVariable(
"DL_LINK", $link);
150 $this->tpl->setVariable(
"TXT_FILENAME",
$filename);
151 $this->tpl->setVariable(
"TXT_VERSIONNAME", $a_set[
'title']);
155 $this->tpl->setCurrentBlock(
"version_selection");
156 $this->tpl->setVariable(
"OBJ_ID", $hist_id);
157 $this->tpl->parseCurrentBlock();
159 $this->tpl->setCurrentBlock(
"version_txt_actions");
160 $this->tpl->setVariable(
"TXT_ACTION", $action);
161 $this->tpl->parseCurrentBlock();
163 $this->tpl->setCurrentBlock(
"version_actions");
165 $this->tpl->setVariable(
"ACTIONS", $actions->getHTML());
167 $this->tpl->parseCurrentBlock();
const CMD_DELETE_VERSIONS
setFormAction(string $a_form_action, bool $a_multipart=false)
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
static _lookupName(int $a_user_id)
lookup user name
const CMD_DOWNLOAD_VERSION
Customizing of pimple-DIC for ILIAS.
static formatSize(int $size, string $a_mode='short', ?ilLanguage $a_lng=null)
Returns the specified file size value in a human friendly form.
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
Class ilFileVersionsTableGUI.
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__construct(Container $dic, ilPlugin $plugin)
setLimit(int $a_limit=0, int $a_default_limit=0)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
disable(string $a_module_name)
const CMD_ROLLBACK_VERSION
addMultiCommand(string $a_cmd, string $a_text)
__construct(ilFileVersionsGUI $calling_gui_class, string $a_parent_cmd=ilFileVersionsGUI::CMD_DEFAULT)
ilFileVersionsTableGUI constructor.
setEnableHeader(bool $a_enableheader)
setMaxCount(int $a_max_count)
set max.
setPrefix(string $a_prefix)