44 $this->
ui = $DIC->ui();
45 $this->lng = $DIC->language();
47 $this->
user = $DIC->user();
59 switch ($body[
"action"]) {
77 return $this->
format($body);
81 return $this->
delete($body);
93 throw new Exception(
"Unknown action " . $body[
"action"]);
105 $pcids = $body[
"data"][
"pcids"];
106 $page = $this->page_gui->getPageObject();
115 $updated = $page->cutContents($hids);
127 $target_pcid = $body[
"data"][
"target_pcid"];
128 $page = $this->page_gui->getPageObject();
129 $updated = $page->pasteContents($this->
getIdForPCId($target_pcid),
130 $page->getPageConfig()->getEnableSelfAssessment());
142 $pcids = $body[
"data"][
"pcids"];
143 $page = $this->page_gui->getPageObject();
152 $page->copyContents($hids);
164 $pcids = $body[
"data"][
"pcids"];
165 $par = $body[
"data"][
"paragraph_format"];
166 $sec = $body[
"data"][
"section_format"];
167 $med = $body[
"data"][
"media_format"];
168 $page = $this->page_gui->getPageObject();
177 $updated = $page->assignCharacteristic($hids, $par, $sec, $med);
188 $pcids = $body[
"data"][
"pcids"];
189 $page = $this->page_gui->getPageObject();
198 $updated = $page->deleteContents(
201 $this->page_gui->getPageConfig()->getEnableSelfAssessment()
214 $target = $body[
"data"][
"target"];
215 $source = $body[
"data"][
"source"];
217 $page = $this->page_gui->getPageObject();
228 $target = explode(
":", $target);
230 $updated = $page->moveContentAfter(
$source[0], $target[0],
$source[1], $target[1]);
241 return $this->ui_wrapper->sendPage($this->page_gui, $updated);
251 $page = $this->page_gui->getPageObject();
253 if (!in_array($pcid, [
"",
"pg"])) {
254 $hier_ids = $page->getHierIdsForPCIds([$pcid]);
255 $id = $hier_ids[$pcid] .
":" . $pcid;
267 $page = $this->page_gui->getPageObject();
269 if (!in_array($pcid, [
"",
"pg"])) {
270 $hier_ids = $page->getHierIdsForPCIds([$pcid]);
271 $id = $hier_ids[$pcid];
284 $page = $this->page_gui->getPageObject();
286 $hier_ids = $page->getHierIdsForPCIds([$body[
"data"][
"pcid"]]);
287 $pcid = $hier_ids[$body[
"data"][
"pcid"]] .
":" . $body[
"data"][
"pcid"];
289 $content =
"<div id='" .
290 $pcid .
"' class='ilc_text_block_" .
291 $body[
"data"][
"characteristic"] .
"'>" . $body[
"data"][
"content"] .
"</div>";
293 $this->content_obj = new \ilPCParagraph($page);
295 $this->updated = $this->content_obj->saveJS(
303 $data = new \stdClass();
304 $data->renderedContent =
"Test the rendered content";
315 $pcids = $body[
"data"][
"pcids"];
316 $page = $this->page_gui->getPageObject();
325 $updated = $page->switchEnableMultiple(
328 $this->page_gui->getPageConfig()->getEnableSelfAssessment()
342 $pcid = $body[
"data"][
"pcid"];
343 $list_cmd = $body[
"data"][
"list_cmd"];
344 $page = $this->page_gui->getPageObject();
346 $pc = $page->getContentObjectForPcId($pcid);
353 case "newItemBefore":
354 $pc->newItemBefore();
366 $updated = $page->update();
getIdForPCId($pcid)
Get id for pcid.
sendPage($updated)
Send whole page as response.
listEdit($body)
Activate command.
getHierIdForPCId($pcid)
Get id for pcid.
dragDropCommand($body)
Drag and dropt command.
Command action handler interface.
updateCommand($body)
All command.
format($body)
Format command.
cutCommand($body)
All command.
copyCommand($body)
Copy/paste command.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
activate($body)
Activate command.
__construct(\ilPageObjectGUI $page_gui)
pasteCommand($body)
All command.