49 $this->
ui = $DIC->ui();
50 $this->lng = $DIC->language();
52 $this->
user = $DIC->user();
66 switch ($body[
"action"]) {
84 return $this->
split($body);
88 return $this->sectionClassCommand($body);
91 case "cmd.merge.previous":
104 throw new Exception(
"Unknown action " . $body[
"action"]);
116 $updated = $this->
insertParagraph($body[
"data"][
"pcid"], $body[
"data"][
"after_pcid"], $body[
"data"][
"content"], $body[
"data"][
"characteristic"], $body[
"data"][
"fromPlaceholder"]);
118 return $this->response_factory->getResponseObject($this->page_gui, $updated, $body[
"data"][
"pcid"]);
126 protected function insertParagraph($pcid, $after_pcid, $content, $characteristic,
bool $from_placeholder =
false)
128 $page = $this->page_gui->getPageObject();
134 $this->content_obj = new \ilPCParagraph($page);
135 return $this->content_obj->saveJS(
162 $updated = $this->
updateParagraph($body[
"data"][
"pcid"], $body[
"data"][
"content"], $body[
"data"][
"characteristic"]);
167 if ($body[
"data"][
"initial_section_class"] !=
"") {
168 $page = $this->page_gui->getPageObject();
170 $parent = $page->getParentContentObjectForPcId($body[
"data"][
"pcid"]);
172 if (!is_null($parent) && $parent->getType() ==
"sec") {
173 $parent->setCharacteristic($body[
"data"][
"initial_section_class"]);
174 $updated = $page->update();
178 return $this->response_factory->getResponseObject($this->page_gui, $updated, $body[
"data"][
"pcid"]);
188 $page = $this->page_gui->getPageObject();
192 $this->content_obj = new \ilPCParagraph($page);
193 return $this->content_obj->saveJS(
218 $page = $this->page_gui->getPageObject();
220 $pcid =
":" . $body[
"data"][
"pcid"];
222 if ($body[
"data"][
"insert_mode"]) {
226 $content = $this->
getContentForSaving($pcid, $body[
"data"][
"text"], $body[
"data"][
"characteristic"]);
228 $content_obj = new \ilPCParagraph($page);
229 $updated = $content_obj->saveJS(
235 $body[
"data"][
"fromPlaceholder"]
237 $current_after_id = $body[
"data"][
"pcid"];
238 $all_pc_ids[] = $current_after_id;
240 foreach ($body[
"data"][
"new_paragraphs"] as $p) {
241 if ($updated ===
true) {
244 $content = $this->
getContentForSaving($p[
"pcid"], $p[
"model"][
"text"], $p[
"model"][
"characteristic"]);
245 $content_obj = new \ilPCParagraph($page);
246 $updated = $content_obj->saveJS(
253 $all_pc_ids[] = $p[
"pcid"];
254 $current_after_id = $p[
"pcid"];
258 return $this->response_factory->getResponseObjectMulti($this->page_gui, $updated, $all_pc_ids);
270 if (!in_array($pc_id, [
"",
"pg"])) {
271 $hier_ids = $page->getHierIdsForPCIds([$pc_id]);
272 $id = $hier_ids[$pc_id] .
":" . $pc_id;
284 $content = str_replace(
" ",
" ", $content);
286 $pcid .
"' class='ilc_text_block_" .
287 $characteristic .
"'>" . $content .
"</div>";
295 protected function sectionClassCommand($body)
297 $insert_mode = $body[
"data"][
"insert_mode"];
298 $after_pcid = $body[
"data"][
"after_pcid"];
299 $pcid = $body[
"data"][
"pcid"];
300 $content = $body[
"data"][
"text"];
301 $characteristic = $body[
"data"][
"characteristic"];
302 $old_section_characteristic = $body[
"data"][
"old_section_characteristic"];
303 $new_section_characteristic = $body[
"data"][
"new_section_characteristic"];
309 $updated = $this->
insertParagraph($pcid, $after_pcid, $content, $characteristic);
315 $page = $this->page_gui->getPageObject();
317 $parent = $page->getParentContentObjectForPcId($pcid);
320 if (!is_null($parent) && $parent->getType() ==
"sec" && $new_section_characteristic !=
"") {
321 $parent->setCharacteristic($new_section_characteristic);
322 $updated = $page->update();
325 elseif ((is_null($parent) || $parent->getType() !=
"sec") && $old_section_characteristic ==
"" && $new_section_characteristic !=
"") {
326 $sec = new \ilPCSection($page);
327 $hier_ids = $page->getHierIdsForPCIds([$pcid]);
328 $sec->create($page, $hier_ids[$pcid], $pcid);
329 $sec->setCharacteristic($new_section_characteristic);
330 $sec_pcid = $page->generatePcId();
331 $sec->writePCId($sec_pcid);
332 $updated = $page->update();
334 $par = $page->getContentObjectForPcId($pcid);
335 $sec = $page->getContentObjectForPcId($sec_pcid);
337 $sec_node_pc_id = $sec->getNode()->first_child()->get_attribute(
"PCID");
338 $hier_ids = $page->getHierIdsForPCIds([$sec_node_pc_id]);
339 $node = $par->getNode();
340 $node->unlink_node();
341 $page->insertContentNode($node, $hier_ids[$sec_node_pc_id],
IL_INSERT_CHILD, $sec_node_pc_id);
342 $updated = $page->update();
344 elseif ((!is_null($parent) && $parent->getType() ==
"sec") && $old_section_characteristic !=
"" && $new_section_characteristic ==
"") {
346 $sec_node_pc_id = $parent->getNode()->get_attribute(
"PCID");
347 $sec_node_hier_id = $page->getHierIdForPCId($sec_node_pc_id);
349 $childs_reverse = array_reverse($parent->getNode()->first_child()->child_nodes());
350 foreach ($childs_reverse as $child) {
352 $child->unlink_node();
354 $page->insertContentNode($child, $sec_node_hier_id,
IL_INSERT_AFTER, $sec_node_pc_id,
true);
357 $node = $parent->getNode();
358 $node->unlink_node();
359 $updated = $page->update();
362 return $this->ui_wrapper->sendPage($this->page_gui, $updated);
372 $page = $this->page_gui->getPageObject();
375 $body[
"data"][
"previousPcid"],
376 $body[
"data"][
"newPreviousContent"],
377 $body[
"data"][
"previousCharacteristic"]
381 $hier_id = $page->getHierIdForPcId($body[
"data"][
"pcid"]);
382 $updated = $page->deleteContents(
385 $this->page_gui->getPageConfig()->getEnableSelfAssessment()
387 return $this->ui_wrapper->sendPage($this->page_gui, $updated);
398 $remove_section_for_pcid = $body[
"data"][
"removeSectionFromPcid"];
399 $par_text = $body[
"data"][
"paragraphText"];
400 $par_characteristic = $body[
"data"][
"paragraphCharacteristic"];
402 $page = $this->page_gui->getPageObject();
404 $paragraph = $page->getContentObjectForPcId($remove_section_for_pcid);
405 $parent = $page->getParentContentObjectForPcId($remove_section_for_pcid);
406 $parent_pc_id = $parent->getPCId();
411 if (!is_null($parent) && $parent->getType() ==
"sec") {
412 $updated = $this->
updateParagraph($remove_section_for_pcid, $par_text, $par_characteristic);
416 $page->moveContentAfter($paragraph->getHierId(), $parent->getHierId());
417 $updated = $page->update();
422 $hid = $page->getHierIdForPcId($parent_pc_id);
423 $updated = $page->deleteContents(
426 $this->page_gui->getPageConfig()->getEnableSelfAssessment()
431 $updated = $page->update();
434 return $this->ui_wrapper->sendPage($this->page_gui, $updated);
443 $pcids = [$body[
"data"][
"pcid"]];
445 $page = $this->page_gui->getPageObject();
454 $updated = $page->deleteContents(
457 $this->page_gui->getPageConfig()->getEnableSelfAssessment()
460 return $this->ui_wrapper->sendPage($this->page_gui, $updated);
470 $page = $this->page_gui->getPageObject();
472 if (!in_array($pcid, [
"",
"pg"])) {
473 $hier_ids = $page->getHierIdsForPCIds([$pcid]);
474 $id = $hier_ids[$pcid] .
":" . $pcid;
autoUpdateCommand($body)
Auto update.
getIdForPCId($pcid)
Get id for pcid.
insertParagraph($pcid, $after_pcid, $content, $characteristic, bool $from_placeholder=false)
Insert paragraph.
Command action handler interface.
split($body, $auto=false)
Split command.
insertCommand($body, $auto=false)
Insert command.
mergePrevious($body)
Merge with previous paragraph.
cancelCommand($body)
Cancel paragraph.
updateCommand($body, $auto=false)
Update.
autoInsertCommand($body)
Auto update.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
updateParagraph($pcid, $content, $characteristic)
Update paragraph.
__construct(\ilPageObjectGUI $page_gui)
deleteCommand($body)
Delete paragraph.
getFullIdForPCId($page, $pc_id)
Get full id for pc id.
getContentForSaving($pcid, $content, $characteristic)
Get content for saving.