33 $this->
user = $DIC->user();
34 $this->
help = $DIC[
"ilHelp"];
41 if (!$this->assignment ||
43 !$this->submission->canView()) {
47 $class = $ilCtrl->getNextClass($this);
48 $cmd = $ilCtrl->getCmd(
"showassignmenttext");
52 $this->{$cmd .
"Object"}();
61 $lng = $DIC->language();
62 $ilCtrl = $DIC->ctrl();
66 $button->setPrimary(
true);
67 $button->setCaption(
"exc_text_assignment_edit");
68 $button->setUrl($ilCtrl->getLinkTargetByClass(array(
"ilExSubmissionGUI",
"ilExSubmissionTextGUI"),
"editAssignmentText"));
69 $files_str = $button->render();
72 $button->setCaption(
"exc_text_assignment_show");
73 $button->setUrl($ilCtrl->getLinkTargetByClass(array(
"ilExSubmissionGUI",
"ilExSubmissionTextGUI"),
"showAssignmentText"));
74 $files_str = $button->render();
91 $form->setTitle($this->lng->txt(
"exc_assignment") .
" \"" . $this->assignment->getTitle() .
"\"");
96 $this->mandatory_manager->isMandatoryForUser($this->submission->getAssignment()->getId(), $this->
user->getId()));
98 $text->setMaxNumOfChars($this->assignment->getMaxCharLimit());
99 $text->setMinNumOfChars($this->assignment->getMinCharLimit());
101 if ($text->isCharLimited()) {
103 if ($this->assignment->getMinCharLimit()) {
104 $char_msg .=
$lng->txt(
"exc_min_char_limit") .
": " . $this->assignment->getMinCharLimit();
106 if ($this->assignment->getMaxCharLimit()) {
107 $char_msg .=
" " .
$lng->txt(
"exc_max_char_limit") .
": " . $this->assignment->getMaxCharLimit();
109 $text->setInfo($char_msg);
112 $form->addItem($text);
116 $text->setUseRte(
true);
117 $text->setRTESupport($this->submission->getUserId(),
"exca~",
"exc_ass");
120 $text->disableButtons(array(
139 $form->setFormAction($ilCtrl->getFormAction($this,
"updateAssignmentText"));
140 $form->addCommandButton(
"updateAssignmentTextAndReturn", $this->lng->txt(
"save_return"));
141 $form->addCommandButton(
"updateAssignmentText", $this->lng->txt(
"save"));
142 $form->addCommandButton(
"returnToParent", $this->lng->txt(
"cancel"));
144 $form->setFormAction($ilCtrl->getFormAction($this,
"returnToParent"));
146 $form->addItem($text);
157 if (!$this->submission->canSubmit()) {
159 $ilCtrl->redirect($this,
"returnToParent");
188 $ilHelp->setScreenIdComponent(
"exc");
189 $ilHelp->setScreenId(
"text_submission");
194 $files = $this->submission->getFiles();
196 $files = array_shift($files);
197 if (trim($files[
"atext"])) {
198 $text = $a_form->getItemByPostVar(
"atxt");
205 $this->tpl->setContent($a_form->getHTML());
217 if (!$this->submission->canSubmit()) {
219 $ilCtrl->redirect($this,
"returnToParent");
226 $rte = $form->getItemByPostVar(
"atxt");
229 if ($form->checkInput()) {
230 $text = trim($form->getInput(
"atxt"));
232 $existing = $this->submission->getFiles();
234 $returned_id = $this->submission->updateTextSubmission(
246 foreach (
$mobs as $mob) {
256 ilUtil::sendSuccess($this->lng->txt(
"exc_text_saved"),
true);
258 $ilCtrl->redirect($this,
"returnToParent");
260 $ilCtrl->redirect($this,
"editAssignmentText");
264 $form->setValuesByPost();
270 if (!$this->submission->isTutor()) {
276 $files = $this->submission->getFiles();
278 $files = array_shift($files);
279 if (trim($files[
"atext"])) {
280 if ($files[
"late"] &&
281 !$this->submission->hasPeerReviewAccess()) {
285 $text = $a_form->getItemByPostVar(
"atxt");
291 $this->tpl->setContent($a_form->getHTML());
static _getMediaObjects($a_text, $a_direction=0)
Returns all media objects found in the passed string.
updateAssignmentTextAndReturnObject()
updateAssignmentTextObject($a_return=false)
static _getRichTextEditor()
Returns the identifier for the Rich Text Editor.
triggerAssignmentTool()
Trigger assigment tool.
Exercise submission base gui.
static _getUsedHTMLTags($a_module="")
Returns an array of all allowed HTML tags for text editing.
static getOverviewContent(ilInfoScreenGUI $a_info, ilExSubmission $a_submission)
initAssignmentTextForm($a_read_only=false)
static _replaceMediaObjectImageSrc($a_text, $a_direction=0, $nic=IL_INST_ID)
Replaces image source from mob image urls with the mob id or replaces mob id with the correct image s...
handleNewUpload($a_no_notifications=false)
showAssignmentTextObject()
__construct(ilObjExercise $a_exercise, ilExSubmission $a_submission)
Constructor.
editAssignmentTextObject(ilPropertyFormGUI $a_form=null)
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
This class represents a non editable value in a property form.
addProperty($a_name, $a_value, $a_link="")
add a property to current section
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
Exercise submission //TODO: This class has to much static methods related to delivered "files"...
Object-based submissions (ends up as static file)