ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilExSubmissionTextGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
13 {
17  protected $user;
18 
22  protected $help;
23 
24 
28  public function __construct(ilObjExercise $a_exercise, ilExSubmission $a_submission)
29  {
30  global $DIC;
31 
32  parent::__construct($a_exercise, $a_submission);
33  $this->user = $DIC->user();
34  $this->help = $DIC["ilHelp"];
35  }
36 
37  public function executeCommand()
38  {
39  $ilCtrl = $this->ctrl;
40 
41  if (!$this->assignment ||
42  $this->assignment->getType() != ilExAssignment::TYPE_TEXT ||
43  !$this->submission->canView()) {
44  return;
45  }
46 
47  $class = $ilCtrl->getNextClass($this);
48  $cmd = $ilCtrl->getCmd("showassignmenttext");
49 
50  switch ($class) {
51  default:
52  $this->{$cmd . "Object"}();
53  break;
54  }
55  }
56 
57  public static function getOverviewContent(ilInfoScreenGUI $a_info, ilExSubmission $a_submission)
58  {
59  global $DIC;
60 
61  $lng = $DIC->language();
62  $ilCtrl = $DIC->ctrl();
63 
64  if ($a_submission->canSubmit()) {
65  $button = ilLinkButton::getInstance();
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();
70  } else {
71  $button = ilLinkButton::getInstance();
72  $button->setCaption("exc_text_assignment_show");
73  $button->setUrl($ilCtrl->getLinkTargetByClass(array("ilExSubmissionGUI", "ilExSubmissionTextGUI"), "showAssignmentText"));
74  $files_str = $button->render();
75  }
76 
77  $a_info->addProperty($lng->txt("exc_files_returned_text"), $files_str);
78  }
79 
80 
81  //
82  // TEXT ASSIGNMENT (EDIT)
83  //
84 
85  protected function initAssignmentTextForm($a_read_only = false)
86  {
87  $ilCtrl = $this->ctrl;
88  $lng = $this->lng;
89 
90  $form = new ilPropertyFormGUI();
91  $form->setTitle($this->lng->txt("exc_assignment") . " \"" . $this->assignment->getTitle() . "\"");
92 
93  if (!$a_read_only) {
94  $text = new ilTextAreaInputGUI($this->lng->txt("exc_your_text"), "atxt");
95  $text->setRequired((bool)
96  $this->mandatory_manager->isMandatoryForUser($this->submission->getAssignment()->getId(), $this->user->getId()));
97  $text->setRows(40);
98  $text->setMaxNumOfChars($this->assignment->getMaxCharLimit());
99  $text->setMinNumOfChars($this->assignment->getMinCharLimit());
100 
101  if ($text->isCharLimited()) {
102  $char_msg = "";
103  if ($this->assignment->getMinCharLimit()) {
104  $char_msg .= $lng->txt("exc_min_char_limit") . ": " . $this->assignment->getMinCharLimit();
105  }
106  if ($this->assignment->getMaxCharLimit()) {
107  $char_msg .= " " . $lng->txt("exc_max_char_limit") . ": " . $this->assignment->getMaxCharLimit();
108  }
109  $text->setInfo($char_msg);
110  }
111 
112  $form->addItem($text);
113 
114  // custom rte tags
115  if (ilObjAdvancedEditing::_getRichTextEditor() === "tinymce") {
116  $text->setUseRte(true);
117  $text->setRTESupport($this->submission->getUserId(), "exca~", "exc_ass");
118 
119  // see ilObjForumGUI
120  $text->disableButtons(array(
121  'charmap',
122  'undo',
123  'redo',
124  'alignleft',
125  'aligncenter',
126  'alignright',
127  'alignjustify',
128  'anchor',
129  'fullscreen',
130  'cut',
131  'copy',
132  'paste',
133  'pastetext',
134  'code',
135  // 'formatselect' #13234
136  ));
137  }
138 
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"));
143  } else {
144  $form->setFormAction($ilCtrl->getFormAction($this, "returnToParent"));
145  $text = new ilNonEditableValueGUI($this->lng->txt("exc_files_returned_text"), "atxt", true);
146  $form->addItem($text);
147  }
148 
149  return $form;
150  }
151 
152  public function editAssignmentTextObject(ilPropertyFormGUI $a_form = null)
153  {
154  $ilCtrl = $this->ctrl;
156 
157  if (!$this->submission->canSubmit()) {
158  ilUtil::sendFailure($this->lng->txt("exercise_time_over"), true);
159  $ilCtrl->redirect($this, "returnToParent");
160  }
161 
162  $this->triggerAssignmentTool();
163 
164  /*
165  $deadline = max($this->assignment->getDeadline(), $this->assignment->getExtendedDeadline());
166  if($deadline)
167  {
168  $deadline = $this->assignment->getPersonalDeadline($ilUser->getId());
169 
170  // extended deadline date should not be presented anywhere
171  // see ilExAssignmentGUI::addSchedule()
172  $dl_info = ilDatePresentation::formatDate(new ilDateTime($deadline, IL_CAL_UNIX));
173 
174  // #16151 - extended deadline warning (only after deadline passed)
175  if($deadline < time())
176  {
177  $dl = ilDatePresentation::formatDate(new ilDateTime($deadline, IL_CAL_UNIX));
178  $dl = '<br /><span class="warning">'.sprintf($this->lng->txt("exc_late_submission_warning"), $dl).'</span>';
179  $dl_info .= $dl;
180  }
181 
182  ilUtil::sendInfo($this->lng->txt("exc_edit_until").": ".$dl_info);
183  }*/
184 
185  $this->handleTabs();
186 
187  $ilHelp = $this->help;
188  $ilHelp->setScreenIdComponent("exc");
189  $ilHelp->setScreenId("text_submission");
190 
191  if (!$a_form) {
192  $a_form = $this->initAssignmentTextForm();
193 
194  $files = $this->submission->getFiles();
195  if ($files) {
196  $files = array_shift($files);
197  if (trim($files["atext"])) {
198  $text = $a_form->getItemByPostVar("atxt");
199  // mob id to mob src
200  $text->setValue(ilRTE::_replaceMediaObjectImageSrc($files["atext"], 1));
201  }
202  }
203  }
204 
205  $this->tpl->setContent($a_form->getHTML());
206  }
207 
209  {
210  $this->updateAssignmentTextObject(true);
211  }
212 
213  public function updateAssignmentTextObject($a_return = false)
214  {
215  $ilCtrl = $this->ctrl;
216 
217  if (!$this->submission->canSubmit()) {
218  ilUtil::sendFailure($this->lng->txt("exercise_time_over"), true);
219  $ilCtrl->redirect($this, "returnToParent");
220  }
221 
222  $form = $this->initAssignmentTextForm();
223 
224  // we are not using a purifier, so we have to set the valid RTE tags
225  // :TODO:
226  $rte = $form->getItemByPostVar("atxt");
227  $rte->setRteTags(ilObjAdvancedEditing::_getUsedHTMLTags("exc_ass"));
228 
229  if ($form->checkInput()) {
230  $text = trim($form->getInput("atxt"));
231 
232  $existing = $this->submission->getFiles();
233 
234  $returned_id = $this->submission->updateTextSubmission(
235  // mob src to mob id
237  );
238 
239  // no empty text
240  if ($returned_id) {
241  // #16532 - always send notifications
242  $this->handleNewUpload();
243 
244  // mob usage
245  $mobs = ilRTE::_getMediaObjects($text, 0);
246  foreach ($mobs as $mob) {
247  if (ilObjMediaObject::_exists($mob)) {
248  ilObjMediaObject::_removeUsage($mob, 'exca~:html', $this->submission->getUserId());
249  ilObjMediaObject::_saveUsage($mob, 'exca:html', $returned_id);
250  }
251  }
252  } else {
253  $this->handleRemovedUpload();
254  }
255 
256  ilUtil::sendSuccess($this->lng->txt("exc_text_saved"), true);
257  if ($a_return) {
258  $ilCtrl->redirect($this, "returnToParent");
259  } else {
260  $ilCtrl->redirect($this, "editAssignmentText");
261  }
262  }
263 
264  $form->setValuesByPost();
265  $this->editAssignmentTextObject($form);
266  }
267 
268  public function showAssignmentTextObject()
269  {
270  if (!$this->submission->isTutor()) {
271  $this->handleTabs();
272  }
273 
274  $a_form = $this->initAssignmentTextForm(true);
275 
276  $files = $this->submission->getFiles();
277  if ($files) {
278  $files = array_shift($files);
279  if (trim($files["atext"])) {
280  if ($files["late"] &&
281  !$this->submission->hasPeerReviewAccess()) {
282  ilUtil::sendFailure($this->lng->txt("exc_late_submission"));
283  }
284 
285  $text = $a_form->getItemByPostVar("atxt");
286  // mob id to mob src
287  $text->setValue(nl2br(ilRTE::_replaceMediaObjectImageSrc($files["atext"], 1)));
288  }
289  }
290 
291  $this->tpl->setContent($a_form->getHTML());
292  }
293 }
static _getMediaObjects($a_text, $a_direction=0)
Returns all media objects found in the passed string.
Class ilInfoScreenGUI.
$mobs
Definition: imgupload.php:54
static _getRichTextEditor()
Returns the identifier for the Rich Text Editor.
This class represents a property form user interface.
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 _removeUsage($a_mob_id, $a_type, $a_id, $a_usage_hist_nr=0, $a_lang="-")
Remove usage of mob in another container.
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...
user()
Definition: user.php:4
help()
Definition: help.php:2
Class ilObjExercise.
handleNewUpload($a_no_notifications=false)
__construct(ilObjExercise $a_exercise, ilExSubmission $a_submission)
Constructor.
editAssignmentTextObject(ilPropertyFormGUI $a_form=null)
global $DIC
Definition: goto.php:24
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"...
$ilUser
Definition: imgupload.php:18
static _exists($a_id, $a_reference=false, $a_type=null)
checks wether a lm content object with specified id exists or not
static _saveUsage($a_mob_id, $a_type, $a_id, $a_usage_hist_nr=0, $a_lang="-")
Save usage of mob within another container (e.g.
setRequired($a_required)
Set Required.
Object-based submissions (ends up as static file)