42 $this->
user = $DIC->user();
43 $this->
ctrl = $DIC->ctrl();
44 $this->
lng = $DIC->language();
45 $this->
tabs = $DIC->tabs();
46 $this->log = $DIC[
"ilLog"];
47 $this->tpl = $DIC->ui()->mainTemplate();
49 $this->tree = $a_tree;
55 $this->obj = $a_st_object;
65 $next_class = $this->
ctrl->getNextClass($this);
66 $cmd = $this->
ctrl->getCmd();
68 switch ($next_class) {
69 case 'ilobjectmetadatagui':
73 $md_gui =
new ilObjectMetaDataGUI($this->content_object, $this->obj->getType(), $this->obj->getId());
74 $md_gui->
addMDObserver($this->obj,
'MDUpdateListener',
'General');
75 $md_gui->addMDObserver($this->obj,
'MDUpdateListener',
'Educational');
76 $this->
ctrl->forwardCommand($md_gui);
79 case "ilconditionhandlergui":
84 $this->
ctrl->forwardCommand($this->condHI);
85 $ilTabs->setTabActive(
'preconditions');
89 if ($cmd ==
'listConditions') {
92 $this->condHI->executeCommand();
93 } elseif (($cmd ==
"create") && ($this->requested_new_type ==
"pg")) {
96 $pg_gui->executeCommand();
106 if ($this->requested_obj_id != 0) {
129 $ilCtrl->setParameter($this,
"backcmd",
"showHierarchy");
133 $form_gui->setTitle($this->obj->getTitle());
135 $form_gui->setTree($this->tree);
136 $form_gui->setCurrentTopNodeId($this->obj->getId());
137 $form_gui->addMultiCommand(
$lng->
txt(
"delete"),
"delete");
138 $form_gui->addMultiCommand(
$lng->
txt(
"cut"),
"cutItems");
139 $form_gui->addMultiCommand(
$lng->
txt(
"copy"),
"copyItems");
140 $form_gui->addMultiCommand(
$lng->
txt(
"cont_de_activate"),
"activatePages");
141 if ($this->content_object->getLayoutPerPage()) {
142 $form_gui->addMultiCommand(
$lng->
txt(
"cont_set_layout"),
"setPageLayout");
145 $form_gui->addCommand(
$lng->
txt(
"cont_save_all_titles"),
"saveAllTitles");
146 $form_gui->addHelpItem(
$lng->
txt(
"cont_chapters_after_pages"));
147 $up_gui =
"ilobjlearningmodulegui";
148 $ilCtrl->setParameterByClass($up_gui,
"active_node", $this->obj->getId());
149 $ilCtrl->setParameterByClass($up_gui,
"active_node", null);
151 $ctpl =
new ilTemplate(
"tpl.chap_and_pages.html",
true,
true,
"Modules/LearningModule");
152 $ctpl->setVariable(
"HIERARCHY_FORM", $form_gui->getHTML());
153 $ilCtrl->setParameter($this,
"obj_id", $this->requested_obj_id);
157 $this->tpl->setContent($ml_head . $ctpl->get());
158 $this->tpl->addOnloadCode(
"window.setTimeout(() => { $('body').trigger('il-lm-editor-tree'); }, 500);");
165 string $a_return =
"view" 170 $items = $this->request->getIds();
171 if (count($items) == 0) {
172 $this->tpl->setOnScreenMessage(
'failure',
$lng->
txt(
"no_checkbox"),
true);
173 $ilCtrl->redirect($this,
"showHierarchy");
177 foreach ($items as $k => $item) {
182 foreach ($todel as $k) {
187 $this->tpl->setOnScreenMessage(
'failure',
$lng->
txt(
"cont_choose_pages_or_chapters_only"),
true);
188 $ilCtrl->redirect($this,
"showHierarchy");
193 $this->tpl->setOnScreenMessage(
'info',
$lng->
txt(
"cont_selected_items_have_been_cut"),
true);
195 $ilCtrl->redirect($this, $a_return);
202 string $a_return =
"view" 207 $items = $this->request->getIds();
208 if (count($items) == 0) {
209 $this->tpl->setOnScreenMessage(
'failure',
$lng->
txt(
"no_checkbox"),
true);
210 $ilCtrl->redirect($this,
"showHierarchy");
214 foreach ($items as $k => $item) {
219 foreach ($todel as $k) {
224 $this->tpl->setOnScreenMessage(
'failure',
$lng->
txt(
"cont_choose_pages_or_chapters_only"),
true);
225 $ilCtrl->redirect($this,
"showHierarchy");
231 $this->tpl->setOnScreenMessage(
'info',
$lng->
txt(
"cont_selected_items_have_been_copied"),
true);
232 $ilCtrl->redirect($this, $a_return);
242 $titles = $this->request->getTitles();
245 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"lm_save_titles"),
true);
246 $ilCtrl->redirect($this,
"showHierarchy");
259 $this->tpl->addBlockFile(
"ADM_CONTENT",
"adm_content",
"tpl.structure_edit.html",
"Modules/LearningModule");
262 $this->tpl->setCurrentBlock(
"form");
263 $this->
ctrl->setParameter($this,
"backcmd",
"subchap");
264 $this->tpl->setVariable(
"FORMACTION", $this->
ctrl->getFormAction($this));
265 $this->tpl->setVariable(
"HEADER_TEXT", $this->
lng->txt(
"cont_subchapters"));
269 $childs = $this->tree->getChilds($this->obj->getId());
270 foreach ($childs as $child) {
271 if ($child[
"type"] !=
"st") {
274 $this->tpl->setCurrentBlock(
"table_row");
277 $this->tpl->setVariable(
"CHECKBOX_ID", $child[
"obj_id"]);
281 $this->
ctrl->setParameterByClass(
"ilStructureObjectGUI",
"obj_id", $child[
"obj_id"]);
282 $link = $this->
ctrl->getLinkTargetByClass(
"ilStructureObjectGUI",
"view");
283 $this->tpl->setVariable(
"LINK_TARGET", $link);
286 $this->tpl->setVariable(
291 $this->content_object->isActiveNumbering()
295 $this->tpl->parseCurrentBlock();
300 $this->tpl->setCurrentBlock(
"notfound");
301 $this->tpl->setVariable(
"NUM_COLS", 3);
302 $this->tpl->setVariable(
"TXT_OBJECT_NOT_FOUND", $this->
lng->txt(
"obj_not_found"));
303 $this->tpl->parseCurrentBlock();
308 $this->tpl->setVariable(
"NUM_COLS", 3);
309 $acts = array(
"delete" =>
"delete",
"cutChapter" =>
"cut",
310 "copyChapter" =>
"copyChapter");
311 if (
$ilUser->clipboardHasObjectsOfType(
"st")) {
312 $acts[
"pasteChapter"] =
"pasteChapter";
318 $this->tpl->setVariable(
"NUM_COLS", 3);
319 $subobj = array(
"st");
321 $this->tpl->setCurrentBlock(
"add_object");
322 $this->tpl->setVariable(
"SELECT_OBJTYPE", $opts);
323 $this->tpl->setVariable(
"BTN_NAME",
"create");
324 $this->tpl->setVariable(
"TXT_ADD", $this->
lng->txt(
"insert"));
325 $this->tpl->parseCurrentBlock();
327 $this->tpl->setCurrentBlock(
"form");
328 $this->tpl->parseCurrentBlock();
330 $ilCtrl->setParameter($this,
"obj_id", $this->requested_obj_id);
339 $this->obj->setType(
"st");
340 $this->obj->setTitle($form->
getInput(
"title"));
341 $this->obj->setDescription($form->
getInput(
"desc"));
342 $this->obj->setLMId($this->content_object->getId());
343 $this->obj->create();
351 if ($this->requested_obj_id > 0) {
352 $this->
ctrl->redirect($this,
"subchap");
368 $tree =
new ilTree($this->content_object->getId());
373 $parent_id = ($this->requested_obj_id > 0)
374 ? $this->requested_obj_id
378 if (count($childs) != 0) {
379 $target = $childs[count($childs) - 1][
"obj_id"];
386 parent::putInTree($target);
403 if (!
$ilUser->clipboardHasObjectsOfType(
"pg")) {
432 $ids = $this->request->getIds();
433 if (count($ids) > 0) {
434 $act_items = array();
436 foreach ($ids as
$id) {
437 $path = $this->tree->getPathId($id);
439 foreach (
$path as $path_id) {
440 if ($path_id != $id && in_array($path_id, $ids)) {
450 foreach ($act_items as $id) {
451 $childs = $this->tree->getChilds($id);
452 foreach ($childs as $child) {
456 $this->content_object->getType()
460 $this->content_object->getType(),
468 $this->content_object->getType()
472 $this->content_object->getType(),
478 $this->tpl->setOnScreenMessage(
'failure',
$lng->
txt(
"no_checkbox"),
true);
481 $this->
ctrl->redirect($this,
"view");
487 $this->condHI->setBackButtons(array());
488 $this->condHI->setAutomaticValidation(
false);
489 $this->condHI->setTargetType(
"st");
490 $this->condHI->setTargetRefId($this->content_object->getRefId());
491 $this->condHI->setTargetId($this->obj->getId());
492 $this->condHI->setTargetTitle($this->obj->getTitle());
501 if ($this->requested_obj_id != 0) {
502 if ($this->requested_new_type ==
"pg") {
503 $this->
ctrl->redirect($this,
"view");
505 $this->
ctrl->redirect($this,
"subchap");
517 "cont_pages_and_subchapters",
518 $this->
ctrl->getLinkTarget($this,
'showHierarchy'),
519 array(
"view",
"showHierarchy"),
526 $this->
ctrl->getLinkTarget($this,
'listConditions'),
532 $mdgui =
new ilObjectMetaDataGUI($this->content_object, $this->obj->getType(), $this->obj->getId());
533 $mdtab = $mdgui->
getTab();
544 $this->tpl->setTitle(
545 $this->
lng->txt($this->obj->getType()) .
": " . $this->obj->getTitle()
549 $ilTabs->addNonTabbedLink(
551 $lng->
txt(
"cont_presentation_view"),
552 ILIAS_HTTP_PATH .
"/goto.php?target=st_" . $this->obj->getId(),
562 int $a_target_ref_id = 0
565 $main_tpl = $DIC->ui()->mainTemplate();
567 $lng = $DIC->language();
568 $ilAccess = $DIC->access();
569 $ctrl = $DIC->ctrl();
578 if (in_array($a_target_ref_id, $ref_ids)) {
579 $ref_ids = array_merge(array($a_target_ref_id), $ref_ids);
583 foreach ($ref_ids as
$ref_id) {
585 if ($ilAccess->checkAccess(
"read",
"", $ref_id)) {
593 $main_tpl->setOnScreenMessage(
'failure', sprintf(
594 $lng->
txt(
"msg_no_perm_read_item"),
607 bool $a_as_sub =
false 617 $parent_id = $node_id;
620 $ilCtrl->redirect($this,
"showHierarchy");
625 $parent_id = $this->tree->getParentId($node_id);
628 $parent_id = $node_id;
632 for (
$i = 1;
$i <= $num;
$i++) {
634 $chap->setType(
"st");
635 $chap->setTitle(
$lng->
txt(
"cont_new_chap"));
636 $chap->setLMId($this->content_object->getId());
641 $ilCtrl->redirect($this,
"view");
656 bool $a_as_sub =
false,
657 string $a_return =
"view" 663 $ilLog->
write(
"Insert Chapter From Clipboard");
671 $parent_id = $node_id;
674 $ilCtrl->redirect($this,
"showHierarchy");
679 $parent_id = $this->tree->getParentId($node_id);
682 $parent_id = $node_id;
686 $childs = $this->tree->getChildsByType($parent_id,
"pg");
687 if (count($childs) != 0) {
688 $target = $childs[count($childs) - 1][
"obj_id"];
694 $chapters =
$ilUser->getClipboardObjects(
"st",
true);
695 $copied_nodes = array();
697 foreach ($chapters as $chap) {
698 $ilLog->write(
"Call pasteTree, Target LM: " . $this->content_object->getId() .
", Chapter ID: " . $chap[
"id"]
699 .
", Parent ID: " . $parent_id .
", Target: " . $target);
700 $cid = ilLMObject::pasteTree(
701 $this->content_object,
705 (
string) ($chap[
"insert_time"] ??
""),
714 $ilUser->clipboardDeleteObjectsOfType(
"pg");
715 $ilUser->clipboardDeleteObjectsOfType(
"st");
719 $this->content_object->checkTree();
720 $ilCtrl->redirect($this, $a_return);
737 $parent_id = $this->tree->getParentId($node_id);
740 $parent_id = $node_id;
744 for (
$i = 1;
$i <= $num;
$i++) {
746 $page->setType(
"pg");
747 $page->setTitle(
$lng->
txt(
"cont_new_page"));
748 $page->setLMId($this->content_object->getId());
754 $this->tpl->setOnScreenMessage(
"success", $this->
lng->txt(
"lm_page_added"),
true);
756 $this->tpl->setOnScreenMessage(
"success", $this->
lng->txt(
"lm_pages_added"),
true);
759 $ilCtrl->redirect($this,
"showHierarchy");
771 $parent_id = $this->tree->getParentId($node_id);
774 $parent_id = $node_id;
779 $pages =
$ilUser->getClipboardObjects(
"pg");
780 $copied_nodes = array();
781 foreach ($pages as $pg) {
782 $cid = ilLMObject::pasteTree(
783 $this->content_object,
787 (
string) ($pg[
"insert_time"] ??
""),
796 $ilUser->clipboardDeleteObjectsOfType(
"pg");
797 $ilUser->clipboardDeleteObjectsOfType(
"st");
801 $ilCtrl->redirect($this,
"view");
809 $this->content_object->executeDragDrop(
810 $req->getHFormPar(
"source_id"),
811 $req->getHFormPar(
"target_id"),
812 $req->getHFormPar(
"fc"),
813 $req->getHFormPar(
"as_subitem")
815 $ilCtrl->redirect($this,
"showHierarchy");
831 $ids = $this->request->getIds();
832 if (count($ids) == 0) {
833 $this->tpl->setOnScreenMessage(
'failure',
$lng->
txt(
"no_checkbox"),
true);
834 $ilCtrl->redirect($this,
"showHierarchy");
852 $ids = $this->request->getIds();
853 foreach ($ids as
$id) {
856 $this->
form->addItem($hi);
861 $this->content_object->getLayout()
864 $this->
form->addItem($layout);
866 $this->
form->addCommandButton(
"savePageLayout",
$lng->
txt(
"save"));
867 $this->
form->addCommandButton(
"showHierarchy",
$lng->
txt(
"cancel"));
869 $this->
form->setTitle(
$lng->
txt(
"cont_set_layout"));
870 $this->
form->setFormAction($ilCtrl->getFormAction($this));
881 $ids = $this->request->getIds();
882 $layout = $this->request->getLayout();
883 foreach ($ids as
$id) {
887 $this->content_object
890 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"msg_obj_modified"),
true);
891 $ilCtrl->redirect($this,
"showHierarchy");
899 $ilCtrl->redirect($this,
"showHierarchy");
906 $ilCtrl->
setParameter($this,
"transl", $this->requested_totransl);
907 $ilCtrl->redirect($this,
"showHierarchy");
939 $fields[
"title"] =
$f->input()->field()->text(
$lng->
txt(
"title"),
"");
942 $fields[
"layout_id"] = $ts;
946 $section1 =
$f->input()->field()->section($fields,
$lng->
txt(
"cont_insert_pagelayout"));
949 return $f->input()->container()->form()->standard($form_action, [
"sec" => $section1]);
962 $form = $form->withRequest($DIC->http()->request());
963 $data = $form->getData();
964 $layout_id =
$data[
"sec"][
"layout_id"];
965 $node_id = $this->request->getNodeId();
967 $this->content_object->getId(),
968 $this->request->getMulti(),
970 $this->request->getFirstChild(),
972 $data[
"sec"][
"title"]
975 if ($this->request->getMulti() <= 1) {
976 $this->tpl->setOnScreenMessage(
"success", $this->
lng->txt(
"lm_page_added"),
true);
978 $this->tpl->setOnScreenMessage(
"success", $this->
lng->txt(
"lm_pages_added"),
true);
982 $ilCtrl->redirect($this,
"showHierarchy",
"node_" . $node_id);
static updateInternalLinks(array $a_copied_nodes, string $a_parent_type="lm")
Update internal links, after multiple pages have been copied.
static _lookupActive(int $a_id, string $a_parent_type, bool $a_check_scheduled_activation=false, string $a_lang="-")
lookup activation status
static setAction(string $a_action)
EditingGUIRequest $request
static _getPresentationTitle(int $a_st_id, string $a_mode=self::CHAPTER_TITLE, bool $a_include_numbers=false, bool $a_time_scheduled_activation=false, bool $a_force_content=false, int $a_lm_id=0, string $a_lang="-", bool $a_include_short=false)
saveAllTitles()
Save all titles of chapters/pages.
initConditionHandlerInterface()
class ilConditionHandlerGUI
static getLayoutOption(string $a_txt, string $a_var, string $a_def_option="")
insertChapter(bool $a_as_sub=false)
Insert (multiple) chapters at node.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
redirectByClass( $a_class, string $a_cmd=null, string $a_anchor=null, bool $is_async=false)
initSetPageLayoutForm()
Init set page layout form.
ilGlobalTemplateInterface $tpl
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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 saveTitles(ilObjLearningModule $a_lm, array $a_titles, string $a_lang="-")
Save titles for lm objects.
checkTree()
check the content object tree
static _getAllReferences(int $id)
get all reference ids for object ID
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
static uniqueTypesCheck(array $a_items)
Check for unique types (all pages or all chapters)
static _goto(string $a_target, int $a_target_ref_id=0)
write(string $a_message, $a_level=ilLogLevel::INFO)
write log message
User Interface for Structure Objects Editing.
setTreeTablePK(string $a_column_name)
set column containing primary key in tree table
setParameterByClass(string $a_class, string $a_parameter, $a_value)
insertSubchapter()
Insert (multiple) subchapters at node.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getLayoutCssFix()
Get layout css fix (workaround for broken radio options)
static clipboardCut(int $a_cont_obj_id, array $a_ids)
Copy a set of chapters/pages into the clipboard.
cancel()
cancel creation of new page or chapter
Base class for ilStructureObjects and ilPageObjects (see ILIAS DTD)
static putInTree(ilLMObject $a_obj, int $a_parent_id=0, int $a_target_node_id=0)
put this object into content object tree
cutItems(string $a_return="view")
Copy items to clipboard, then cut them from the current tree.
setStructureObject(ilStructureObject $a_st_object)
setPageLayout()
Set layout for multipl pages.
catch(\Exception $e) $req
__construct(ilObjLearningModule $a_content_obj, ilLMTree $a_tree)
getChildsByType(int $a_node_id, string $a_type)
get child nodes of given node by object type
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setTableNames(string $a_table_tree, string $a_table_obj_data, string $a_table_obj_reference="")
set table names The primary key of the table containing your object_data must be 'obj_id' You may use...
ilConditionHandlerGUI $condHI
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupTitle(int $obj_id)
setContent(string $a_html)
Sets content for standard template.
insertPageFromTemplate()
Insert (multiple) pages templates at node.
static writeLayout(int $a_obj_id, string $a_layout, ?ilObjLearningModule $a_lm=null)
Write layout setting.
static insertPagesFromTemplate(int $lm_id, int $num, int $node_id, bool $first_child, int $layout_id, string $title="")
Insert (multiple) pages templates at node.
setBackTarget(string $a_title, string $a_target, string $a_frame="")
clearTargets()
clear all targets
putInTree(?int $target=null)
put chapter into tree
form( $class_path, string $cmd)
static _writeActive(int $a_id, string $a_parent_type, bool $a_active)
write activation status
static getMultiLangHeader(int $a_lm_id, object $a_gui_class, string $a_mode="")
copyChapter()
copy a single chapter (selection)
User Interface for Learning Module Page Objects Editing.
savePageLayout()
Save page layout.
getLinkTarget(object $a_gui_obj, string $a_cmd=null, string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
saveParameter(object $a_gui_obj, $a_parameter)
static _lookupType(int $a_obj_id, int $a_lm_id=0)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
subchap()
display subchapters of structure object
static _lookupContObjID(int $a_id)
get learning module id for lm object
showActions(array $a_actions)
show possible action (form buttons)
copyItems(string $a_return="view")
Copy items to clipboard.
setParameter(object $a_gui_obj, string $a_parameter, $a_value)
insertTemplate()
Displays GUI to select template for page.
static _gotoRepositoryRoot(bool $raise_error=false)
Goto repository root.
static clipboardCopy(int $a_cont_obj_id, array $a_ids)
Copy a set of chapters/pages into the clipboard.
insertChapterClip(bool $a_as_sub=false, string $a_return="view")
Insert Chapter from clipboard.