39 $this->
user = $DIC->user();
40 $this->
help = $DIC[
"ilHelp"];
47 if (!$this->assignment ||
49 !$this->submission->canView()) {
54 $cmd = $ilCtrl->getCmd(
"showassignmenttext");
58 $this->{$cmd .
"Object"}();
69 $lng = $DIC->language();
70 $ilCtrl = $DIC->ctrl();
74 $button->setPrimary(
true);
75 $button->setCaption(
"exc_text_assignment_edit");
76 $button->setUrl($ilCtrl->getLinkTargetByClass(array(
"ilExSubmissionGUI",
"ilExSubmissionTextGUI"),
"editAssignmentText"));
78 $button->setCaption(
"exc_text_assignment_show");
79 $button->setUrl($ilCtrl->getLinkTargetByClass(array(
"ilExSubmissionGUI",
"ilExSubmissionTextGUI"),
"showAssignmentText"));
81 $files_str = $button->render();
92 bool $a_read_only =
false 98 $form->setTitle($this->
lng->txt(
"exc_assignment") .
" \"" . $this->assignment->getTitle() .
"\"");
103 $this->mandatory_manager->isMandatoryForUser($this->submission->getAssignment()->getId(), $this->
user->getId())
106 $text->setMaxNumOfChars($this->assignment->getMaxCharLimit());
107 $text->setMinNumOfChars($this->assignment->getMinCharLimit());
109 if ($text->isCharLimited()) {
111 if ($this->assignment->getMinCharLimit() !== 0) {
112 $char_msg .=
$lng->
txt(
"exc_min_char_limit") .
": " . $this->assignment->getMinCharLimit();
114 if ($this->assignment->getMaxCharLimit() !== 0) {
115 $char_msg .=
" " .
$lng->
txt(
"exc_max_char_limit") .
": " . $this->assignment->getMaxCharLimit();
117 $text->setInfo($char_msg);
120 $form->addItem($text);
124 $text->setUseRte(
true);
125 $text->setRTESupport($this->submission->getUserId(),
"exca~",
"exc_ass");
128 $text->disableButtons(array(
147 $form->setFormAction($ilCtrl->getFormAction($this,
"updateAssignmentText"));
148 $form->addCommandButton(
"updateAssignmentTextAndReturn", $this->
lng->txt(
"save_return"));
149 $form->addCommandButton(
"updateAssignmentText", $this->
lng->txt(
"save"));
150 $form->addCommandButton(
"returnToParent", $this->
lng->txt(
"cancel"));
152 $form->setFormAction($ilCtrl->getFormAction($this,
"returnToParent"));
154 $form->addItem($text);
165 if (!$this->submission->canSubmit()) {
166 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"exercise_time_over"),
true);
167 $ilCtrl->
redirect($this,
"returnToParent");
176 $ilHelp->setScreenId(
"text_submission");
178 if ($a_form === null) {
181 $files = $this->submission->getFiles();
183 $files = array_shift($files);
184 if (trim($files[
"atext"]) !==
'' && trim($files[
"atext"]) !==
'0') {
185 $text = $a_form->getItemByPostVar(
"atxt");
192 $this->tpl->setContent($a_form->getHTML());
205 bool $a_return =
false 209 if (!$this->submission->canSubmit()) {
210 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"exercise_time_over"),
true);
211 $ilCtrl->
redirect($this,
"returnToParent");
218 $rte = $form->getItemByPostVar(
"atxt");
221 if ($form->checkInput()) {
222 $text = trim($form->getInput(
"atxt"));
224 $returned_id = $this->submission->updateTextSubmission(
236 foreach (
$mobs as $mob) {
246 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"exc_text_saved"),
true);
248 $ilCtrl->redirect($this,
"returnToParent");
250 $ilCtrl->redirect($this,
"editAssignmentText");
254 $form->setValuesByPost();
260 if (!$this->submission->isTutor()) {
266 $files = $this->submission->getFiles();
268 $files = array_shift($files);
269 if (trim($files[
"atext"]) !==
'' && trim($files[
"atext"]) !==
'0') {
270 if ($files[
"late"] &&
271 !$this->submission->hasPeerReviewAccess()) {
272 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"exc_late_submission"));
275 $text = $a_form->getItemByPostVar(
"atxt");
281 $this->tpl->setContent($a_form->getHTML());
static _replaceMediaObjectImageSrc(string $a_text, int $a_direction=0, string $nic='')
Replaces image source from mob image urls with the mob id or replaces mob id with the correct image s...
static _getMediaObjects(string $a_text, int $a_direction=0)
Returns all media objects found in the passed string.
handleNewUpload(bool $a_no_notifications=false)
updateAssignmentTextObject(bool $a_return=false)
updateAssignmentTextAndReturnObject()
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
static _getRichTextEditor()
Returns the identifier for the Rich Text Editor.
redirect(object $a_gui_obj, string $a_cmd=null, string $a_anchor=null, bool $is_async=false)
Exercise submission base gui.
addProperty(string $a_name, string $a_value, string $a_link="")
add a property to current section
static getOverviewContent(ilInfoScreenGUI $a_info, ilExSubmission $a_submission)
getNextClass($a_gui_class=null)
showAssignmentTextObject()
setScreenIdComponent(string $a_comp)
__construct(ilObjExercise $a_exercise, ilExSubmission $a_submission)
editAssignmentTextObject(ilPropertyFormGUI $a_form=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
initAssignmentTextForm(bool $a_read_only=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getUsedHTMLTags(string $a_module="")
Returns an array of all allowed HTML tags for text editing.