57 $this->file = $file_version_gui->
getFile();
59 $this->
lng = $DIC->language();
60 $this->save_mode = $mode;
61 $this->ui_factory = $DIC->ui()->factory();
62 $this->ui_renderer = $DIC->ui()->renderer();
63 $this->request = $DIC->http()->request();
64 $this->global_tpl = $DIC->ui()->mainTemplate();
65 $this->resource_services = $DIC->resourceStorage();
66 $this->post_url = $DIC->ctrl()->getFormAction(
70 $this->
lng->loadLanguageModule(
'file');
76 switch ($this->save_mode) {
77 case self::MODE_REPLACE:
78 $this->global_tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'replace_file_info'));
79 $group_title = $this->
lng->txt(
'replace_file');
83 $this->global_tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'file_new_version_info'));
84 $group_title = $this->
lng->txt(
'file_new_version');
89 self::F_TITLE => $this->ui_factory->input()->field()->text(
90 $this->
lng->txt(self::F_TITLE),
91 $this->
lng->txt(
"if_no_title_then_filename")
96 self::F_DESCRIPTION => $this->ui_factory->input()->field()->textarea(
97 $this->
lng->txt(self::F_DESCRIPTION)
99 self::F_FILE => $this->ui_factory->input()->field()->file(
102 $this->save_mode === self::MODE_REPLACE
106 $this->
lng->txt(self::F_FILE)
110 $group = $this->ui_factory->input()->field()->group(
$inputs, $group_title);
112 $this->
form = $this->ui_factory->input()->container()->form()->standard($this->post_url, [$group]);
117 $this->
form = $this->
form->withRequest($this->request);
120 $title = !empty(
$data[self::F_TITLE]) ?
$data[self::F_TITLE] : $this->file->getTitle();
121 $description =
$data[self::F_DESCRIPTION] !==
'' ?
$data[self::F_DESCRIPTION] : $this->file->getDescription();
122 $revision_number =
$data[self::F_FILE][0] ?? null;
123 if ($revision_number === null) {
126 $revision_number = (
int) $revision_number;
129 $rid = $this->resource_services->manage()->find($this->file->getResourceId());
130 $resource = $this->resource_services->manage()->getResource($rid);
131 $new_revision = $resource->getSpecificRevision($revision_number);
133 $new_revision->setTitle(
134 $this->
ensureSuffix($title, $new_revision->getInformation()->getSuffix())
136 $this->resource_services->manage()->updateRevision($new_revision);
138 $this->file->setDescription($description);
139 $this->file->updateObjectFromCurrentRevision();
146 return $this->ui_renderer->render($this->
form);
155 case self::MODE_REPLACE:
static getUploadSizeLimitBytes()
Class ilFileVersionsUploadHandlerGUI.
form( $class_path, string $cmd)
trait ilObjFileSecureString
Trait ilObjFileSecureString.
const CMD_CREATE_REPLACING_VERSION
ensureSuffix(string $title, ?string $suffix=null)
const CMD_CREATE_NEW_VERSION