50 $this->
user = $DIC->user();
52 $this->
tabs = $DIC->tabs();
58 $next_class = $this->
ctrl->getNextClass($this);
61 $cmd = $this->
ctrl->getCmd();
63 switch ($next_class) {
65 case strtolower(ilRepoStandardUploadHandlerGUI::class):
67 $gui = $form->getRepoStandardUploadHandlerGUI(
"input_file");
77 public function edit(): void
79 $form = $this->
initPropertyForm($this->
lng->txt(
"cont_edit_src"),
"update",
"cancelCreate");
85 $this->
tabs->setBackTarget(
"",
"");
87 $cmd = $this->
ctrl->getCmd();
88 if ($cmd ==
"update") {
89 $form->setValuesByPost();
101 $par_content = $this->content_obj->xml2output($this->content_obj->getText());
103 $par_content = str_replace(
"{",
"[curlybegin ", $par_content);
104 $par_content = str_replace(
"}",
" curlyend]", $par_content);
106 $form->getItemByPostVar(
"par_content")->setValue($par_content);
111 ->factory()->input()->field()
113 $this->
lng->txt(
"cont_pc_code")
115 $t = $this->gui->ui()->renderer()->render(
$f);
116 $t = str_replace(
"<textarea",
"<textarea name='code' rows='20' form='copg-src-form' ", $t);
117 $t = str_replace(
"[curlybegin ",
"{", $t);
118 $t = str_replace(
" curlyend]",
"}", $t);
119 $t =
"<div class='c-form copg-src-form'>$t</div>";
127 $form = $this->
initPropertyForm($this->
lng->txt(
"cont_insert_src"),
"create",
"cancelCreate");
129 if ($this->pg_obj->getParentType() ==
"lm") {
130 $this->tpl->setVariable(
132 $this->
ctrl->getLinkTargetByClass(
"ilInternalLinkGUI",
"showLinkHelp")
134 $this->tpl->setVariable(
"TXT_ILINK",
"[" . $this->
lng->txt(
"cont_internal_link") .
"]");
139 $cmd = $this->
ctrl->getCmd();
140 if ($cmd ==
"create_src") {
141 $form->setValuesByPost();
146 $form->getItemByPostVar(
"par_language")->setValue($ilUser->getLanguage());
149 $form->getItemByPostVar(
"par_showlinenumbers")->setChecked(
true);
151 $form->getItemByPostVar(
"par_subcharacteristic")->setValue(
"");
152 $form->getItemByPostVar(
"par_content")->setValue(
"");
155 $this->tpl->setContent($form->getHTML());
160 $this->requested_par_content = $this->request->getRaw(
"par_content");
161 $this->requested_par_downloadtitle = str_replace(
'"',
'', $this->request->getString(
"par_downloadtitle"));
187 $this->updated = $this->content_obj->setText(
188 $this->content_obj->input2xml($this->requested_par_content, 0,
false)
191 if ($this->updated !==
true) {
197 $this->updated = $this->pg_obj->update();
199 if ($this->updated ===
true && $this->
ctrl->getCmd() !=
"upload") {
200 $this->
ctrl->returnToParent($this,
"jump" . $this->hier_id);
208 $this->
ctrl->returnToParent($this,
"jump" . $this->hier_id);
214 $this->content_obj->create($this->pg_obj, $this->hier_id, $this->pc_id);
215 $this->content_obj->setLanguage($this->request->getString(
"par_language"));
219 $this->requested_par_content = $this->request->getRaw(
"par_content");
220 $this->requested_par_downloadtitle = str_replace(
'"',
'', $this->request->getString(
"par_downloadtitle"));
224 $this->content_obj->setCharacteristic(
225 $this->request->getString(
"par_characteristic")
227 $this->content_obj->setSubCharacteristic(
228 $this->request->getString(
"par_subcharacteristic")
230 $this->content_obj->setDownloadTitle(str_replace(
'"',
'', $this->requested_par_downloadtitle));
231 $this->content_obj->setShowLineNumbers(
232 $this->request->getString(
"par_showlinenumbers") ?
'y' :
'n' 234 $this->content_obj->setCharacteristic(
'Code');
241 $this->updated = $this->content_obj->setText(
242 $this->content_obj->input2xml($this->requested_par_content, 0,
false)
245 if ($this->updated !==
true) {
250 $this->updated = $this->pg_obj->update();
252 if ($this->updated ===
true) {
253 $this->
ctrl->returnToParent($this,
"jump" . $this->hier_id);
261 $this->
ctrl->returnToParent($this,
"jump" . $this->hier_id);
266 if (isset($_FILES[
'userfile'][
'name'])) {
267 $userfile = $_FILES[
'userfile'][
'tmp_name'];
269 if ($userfile ==
"" || !is_uploaded_file($userfile)) {
270 $error_str =
"<strong>Error(s):</strong><br>Upload error: file name must not be empty!";
271 $this->tpl->setVariable(
"MESSAGE", $error_str);
272 $this->content_obj->setText(
273 $this->content_obj->input2xml(
274 $this->request->getRaw(
"par_content"),
282 $this->requested_par_content = file_get_contents($userfile);
283 $this->requested_par_downloadtitle = $_FILES[
'userfile'][
'name'];
300 $prog_langs[$k] = $v;
311 $form->setTitle($a_title);
312 $form->setFormAction($this->
ctrl->getFormAction($this, $a_cmd));
313 $form->addCommandButton($a_cmd, $this->
lng->txt(
"save"));
314 $form->addCommandButton($a_cmd_cancel, $this->
lng->txt(
"cancel"));
331 $form->addItem($code);
346 $this->
ctrl->setParameter($this,
"cname",
"SourceCode");
347 $form = $this->gui->form([self::class],
"#")
349 ->hidden(
"mode",
"import")
352 $this->
lng->txt(
"import_file"),
353 \Closure::fromCallable([$this,
'handleUploadResult']),
363 $this->
lng->txt(
"cont_download_title")
367 $this->
lng->txt(
"cont_src"),
372 $this->
lng->txt(
"cont_show_line_numbers")
378 ?
string $download_title =
null,
379 ?
string $subchar =
null,
380 ?
bool $line_numbers =
null 381 ): \
ILIAS\Repository\Form\FormAdapterGUI {
382 $this->
ctrl->setParameter($this,
"cname",
"SourceCode");
383 $form = $this->gui->form([self::class],
"#")
385 ->hidden(
"mode",
"manual")
388 $this->
lng->txt(
"cont_download_title"),
394 $this->
lng->txt(
"cont_src"),
401 $this->
lng->txt(
"cont_show_line_numbers"),
411 $this->content_obj->getDownloadTitle(),
412 $this->content_obj->getSubCharacteristic(),
413 ($this->content_obj->getShowLineNumbers() ==
"y")
422 $uuid = $fac->uuid4AsString();
423 $name = $uuid .
".txt";
434 HandlerResult::STATUS_OK,
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(ilPageObject $a_pg_obj, ?ilPageContent $a_content_obj, string $a_hier_id, string $a_pc_id="")
string $requested_par_downloadtitle
Interface Observer Contains several chained tasks and infos about them.
string $requested_par_content
Content object of ilPageObject (see ILIAS DTD).
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
User Interface for Editing of Page Content Objects (Paragraphs, Tables, ...)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
handleUploadResult(FileUpload $upload, UploadResult $result)
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
moveOneFileTo(UploadResult $uploadResult, string $destination, int $location=Location::STORAGE, string $file_name='', bool $override_existing=false)
Moves a single File (the attributes, metadata and upload-status of which are contained in UploadResul...
static getBaseContentStylePath()
Class BasicHandlerResult.
setCurrentTextLang(string $lang_key)
getEditorScriptTag(string $form_pc_id="", string $form_cname="")
static getSupportedLanguagesV51()
Get supported languages (keys are ILIAS <= 5.1 internal values, values are for representation) ...
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
getProgLangOptions()
Get selectable programming languages.
getManualFormAdapter(?string $download_title=null, ?string $subchar=null, ?bool $line_numbers=null)
initPropertyForm(string $a_title, string $a_cmd, string $a_cmd_cancel)
ILIAS COPage InternalGUIService $gui