50 $this->file = $file_version_gui->
getFile();
51 $this->upload = $DIC->upload();
52 $this->calling_gui = $file_version_gui;
53 $this->lng = $DIC->language();
54 $this->save_mode =
$mode;
58 $this->
setFormAction($DIC->ctrl()->getFormAction($file_version_gui));
65 $this->lng->loadLanguageModule(
'file');
66 switch ($this->save_mode) {
67 case self::MODE_REPLACE:
69 $this->
setTitle($this->lng->txt(
'replace_file'));
74 $this->
setTitle($this->lng->txt(
'file_new_version'));
81 $title =
new ilTextInputGUI($this->lng->txt(self::F_TITLE), self::F_TITLE);
82 $title->setInfo($this->lng->txt(
"if_no_title_then_filename"));
98 $this->lng->txt(self::F_FILE),
101 $file->setRequired(
true);
103 $file->setMaxFiles(1);
107 $in_file =
new ilFileInputGUI($this->lng->txt(self::F_FILE), self::F_FILE);
119 public function saveObject()
124 if (!$this->upload->hasUploads()) {
133 $file_temp_name =
$file[
'tmp_name'];
135 $this->upload->process();
140 $result = $this->upload->getResults()[$file_temp_name];
141 if (
$result->getStatus() === ProcessingStatus::REJECTED) {
145 if (strlen(trim($input_title)) === 0) {
149 switch ($this->save_mode) {
151 $this->file->appendUpload(
$result, $input_title);
153 case self::MODE_REPLACE:
154 $this->file->replaceWithUpload(
$result, $input_title);
158 $this->file->setDescription($this->
getInput((
string) self::F_DESCRIPTION));
159 $this->file->update();
168 $values[self::F_TITLE] = $this->file->getTitle();
169 $values[self::F_DESCRIPTION] = $this->file->getDescription();
const TITLE_LENGTH
max length of object title
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
Class ilCountPDFPagesPreProcessors.
const CMD_CREATE_REPLACING_VERSION
const CMD_CREATE_NEW_VERSION