47 $this->
ctrl = $DIC->ctrl();
48 $this->
lng = $DIC->language();
49 $this->
user = $DIC->user();
50 $this->
tabs = $DIC->tabs();
51 $this->
toolbar = $DIC->toolbar();
52 $this->tpl = $DIC[
"tpl"];
53 $this->
help = $DIC[ilHelp::class];
54 $ilCtrl = $DIC->ctrl();
55 $lng = $DIC->language();
59 $ilCtrl->saveParameter($this,
"tax_node");
60 $ilCtrl->saveParameter($this,
"tax_id");
65 $this->request = $DIC->http()->request();
66 $params = $DIC->http()->request()->getQueryParams();
67 $this->current_tax_node = (
int) (
$params[
"tax_node"] ?? null);
68 $this->requested_tax_id = (
int) (
$params[
"tax_id"] ?? null);
69 $this->requested_move_ids = (string) (
$params[
"move_ids"] ??
"");
82 $this->assigned_object_id = $a_val;
106 $this->list_info = trim($a_val);
119 string $a_component_id,
123 $this->assigned_item_sorting =
true;
124 $this->assigned_item_info_obj = $a_item_info_obj;
125 $this->assigned_item_comp_id = $a_component_id;
126 $this->assigned_item_obj_id = $a_obj_id;
127 $this->assigned_item_type = $a_item_type;
137 $cmd = $ilCtrl->
getCmd(
"listTaxonomies");
165 if (in_array($tax_id, $tax_ids)) {
195 $ilToolbar->setFormAction($ilCtrl->getFormAction($this));
196 $ilToolbar->addFormButton(
$lng->
txt(
"tax_create_node"),
"createTaxNode");
198 $ilToolbar->setCloseFormTag(
false);
204 if ($tax_node === 0) {
207 $tree = $tax->getTree();
242 return parent::checkPermissionBool($perm, $cmd,
$type,
$node_id);
253 $ilCtrl->
redirect($this,
"listTaxonomies");
261 $this->requested_new_type =
"tax";
263 parent::saveObject();
276 $a_new_object->
getId(),
279 $ilCtrl->setParameter($this,
"tax_id", $a_new_object->
getId());
280 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"tax_added"),
true);
281 $ilCtrl->redirect($this,
"editSettings");
285 public function showTree(
bool $a_ass_items =
false): void
293 ?
"listAssignedItems" 296 $DIC->globalScreen()->tool()->context()->current()
301 $DIC->globalScreen()->tool()->context()->current()
306 $DIC->globalScreen()->tool()->context()->current()
311 $DIC->globalScreen()->tool()->context()->current()
316 $DIC->globalScreen()->tool()->context()->current()
341 $ilHelp->setSubScreenId(
"create_node");
364 $or->setMaxLength(5);
369 if ($a_mode ==
"edit") {
371 $ti->setValue($node->getTitle());
372 if (is_object($or)) {
373 $or->setValue($node->getOrderNr());
378 if ($a_mode ==
"create") {
379 $form->addCommandButton(
"saveTaxNode",
$lng->
txt(
"save"));
380 $form->addCommandButton(
"listNodes",
$lng->
txt(
"cancel"));
381 $form->setTitle(
$lng->
txt(
"tax_new_tax_node"));
383 $form->addCommandButton(
"updateTaxNode",
$lng->
txt(
"save"));
384 $form->addCommandButton(
"listNodes",
$lng->
txt(
"cancel"));
385 $form->setTitle(
$lng->
txt(
"tax_edit_tax_node"));
388 $form->setFormAction($ilCtrl->getFormAction($this));
403 if ($form->checkInput()) {
406 $node->setTitle($form->getInput(
"title"));
411 $order_nr = $form->getInput(
"order_nr");
413 if ($order_nr ===
"") {
417 $node->setOrderNr($order_nr);
418 $node->setTaxonomyId($tax->getId());
426 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"msg_obj_modified"),
true);
427 $ilCtrl->redirect($this,
"listNodes");
429 $form->setValuesByPost();
444 if ($form->checkInput()) {
447 $node->setTitle($form->getInput(
"title"));
451 $node->setOrderNr($form->getInput(
"order_nr"));
456 $this->tpl->setOnScreenMessage(
'info',
$lng->
txt(
"msg_obj_modified"),
true);
457 $ilCtrl->redirect($this,
"");
459 $form->setValuesByPost();
473 $body = $this->request->getParsedBody();
475 if (!isset($body[
"id"])) {
476 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"no_checkbox"),
true);
477 $ilCtrl->redirect($this,
"listNodes");
481 $ilHelp->setSubScreenId(
"del_items");
487 $confirmation_gui->setFormAction($ilCtrl->getFormAction($this));
488 $confirmation_gui->setHeaderText($this->
lng->txt(
"info_delete_sure"));
491 foreach ($body[
"id"] as
$id) {
492 $confirmation_gui->addItem(
499 $confirmation_gui->setCancel(
$lng->
txt(
"cancel"),
"listNodes");
500 $confirmation_gui->setConfirm(
$lng->
txt(
"confirm"),
"confirmedDelete");
511 $body = $this->request->getParsedBody();
514 foreach ($body[
"id"] as
$id) {
518 $node_data = $tax_tree->getNodeData($id);
519 if (is_object($node)) {
522 if ($tax_tree->isInTree($id)) {
523 $tax_tree->deleteTree($node_data);
529 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"info_deleted"),
true);
531 $ilCtrl->redirect($this,
"listNodes");
541 $body = $this->request->getParsedBody();
544 if (is_array($body[
"order"] ?? null)) {
545 foreach ($body[
"order"] as $k => $v) {
552 if (is_array($body[
"title"] ?? null)) {
553 foreach ($body[
"title"] as $k => $v) {
560 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"msg_obj_modified"));
561 $ilCtrl->redirect($this,
"listNodes");
573 $body = $this->request->getParsedBody();
575 if (!isset($body[
"id"])) {
576 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"no_checkbox"),
true);
577 $ilCtrl->redirect($this,
"listNodes");
581 $ilHelp->setSubScreenId(
"move_items");
583 $ilToolbar->addButton(
585 $ilCtrl->getLinkTarget($this,
"listNodes")
588 $this->tpl->setOnScreenMessage(
'info',
$lng->
txt(
"tax_please_select_target"));
590 if (is_array($body[
"id"])) {
591 $ilCtrl->setParameter($this,
"move_ids", implode(
",", $body[
"id"]));
602 if (!$tax_exp->handleCommand()) {
616 if ($this->requested_move_ids !=
"") {
617 $move_ids = explode(
",", $this->requested_move_ids);
619 $tree = $tax->getTree();
622 foreach ($move_ids as $m_id) {
625 if ($node->getTaxonomyId() == $tax->getId() &&
626 ($target_node->getTaxonomyId() == $tax->getId() ||
630 $m_id == $target_node->getId()) {
631 $this->tpl->setOnScreenMessage(
'failure',
$lng->
txt(
"tax_target_within_nodes"),
true);
632 $this->
ctrl->redirect($this,
"listNodes");
646 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"msg_obj_modified"),
true);
647 $ilCtrl->redirect($this,
"listNodes");
662 $cgui->setFormAction($ilCtrl->getFormAction($this));
663 $cgui->setHeaderText(
$lng->
txt(
"tax_confirm_deletion"));
664 $cgui->setCancel(
$lng->
txt(
"cancel"),
"listTaxonomies");
665 $cgui->setConfirm(
$lng->
txt(
"delete"),
"deleteTaxonomy");
667 $cgui->addItem(
"id[]", 0, $tax->getTitle());
683 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"tax_tax_deleted"),
true);
684 $ilCtrl->redirect($this,
"listTaxonomies");
698 if (count($tax_ids) == 0 || $this->
getMultiple()) {
699 $ilToolbar->addButton(
701 $ilCtrl->getLinkTarget($this,
"createAssignedTaxonomy")
704 $this->tpl->setOnScreenMessage(
'info',
$lng->
txt(
"tax_max_one_tax"));
728 $ilTabs->clearTargets();
736 $ilTabs->setBackTarget(
738 $ilCtrl->getLinkTarget($this,
"listTaxonomies")
744 $ilCtrl->getLinkTarget($this,
"listNodes")
746 if ($this->assigned_item_sorting) {
749 $lng->
txt(
"tax_assigned_items"),
750 $ilCtrl->getLinkTarget($this,
"listAssignedItems")
756 $ilCtrl->getLinkTarget($this,
"editSettings")
759 $ilTabs->activateTab($a_id);
786 $ti->setMaxLength(200);
789 $ti->setValue($tax->getTitle());
796 $ta->
setValue($tax->getDescription());
805 $si->setOptions($options);
807 $si->setValue($tax->getSortingMode());
810 if ($this->assigned_item_sorting) {
816 $form->addCommandButton(
"updateSettings",
$lng->
txt(
"save"));
818 $form->setTitle(
$lng->
txt(
"settings"));
819 $form->setFormAction($ilCtrl->getFormAction($this));
834 if ($form->checkInput()) {
836 $tax->setTitle($form->getInput(
"title"));
837 $tax->setDescription($form->getInput(
"description"));
838 $tax->setSortingMode((
int) $form->getInput(
"sorting"));
839 $tax->setItemSorting((
bool) $form->getInput(
"item_sorting"));
842 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"msg_obj_modified"),
true);
843 $ilCtrl->redirect($this,
"editSettings");
845 $form->setValuesByPost();
866 $this->current_tax_node,
868 $this->assigned_item_comp_id,
869 $this->assigned_item_obj_id,
870 $this->assigned_item_type,
871 $this->assigned_item_info_obj
884 $body = $this->request->getParsedBody();
886 if (is_array($body[
"order"])) {
887 $order = $body[
"order"];
889 foreach ($order as $a_item_id => $ord_nr) {
891 $this->assigned_item_comp_id,
892 $this->assigned_item_obj_id,
893 $this->assigned_item_type,
896 $tax_ass->setOrderNr($tax_node, $a_item_id, $ord_nr);
899 $this->assigned_item_comp_id,
900 $this->assigned_item_obj_id,
901 $this->assigned_item_type,
904 $tax_ass->fixOrderNr($tax_node);
905 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"msg_obj_modified"),
true);
907 $ilCtrl->redirect($this,
"listAssignedItems");
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
showTree(bool $a_ass_items=false)
moveTree(int $a_source_id, int $a_target_id, int $a_location=self::POS_LAST_NODE)
Move Tree Implementation public.
deleteTaxonomy()
Delete taxonomy.
static getNextOrderNr(int $a_tax_id, int $a_parent_id)
Put this node into the taxonomy tree.
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...
editSettings()
Edit settings.
string $requested_move_ids
int $assigned_item_obj_id
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...
deleteItems()
Confirm deletion screen for items.
redirect(object $a_gui_obj, string $a_cmd=null, string $a_anchor=null, bool $is_async=false)
saveTaxNode()
Save tax node form.
New implementation of ilObjectGUI.
updateSettings()
Update taxonomy settings.
getCmd(string $fallback_command=null)
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
listTaxonomies()
List taxonomies.
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
bool $assigned_item_sorting
static writeTitle(int $a_node_id, string $a_title)
Write title.
initCreationForms(string $a_new_type)
Init creation forms.
createTaxNode()
Create tax node.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getUsageOfObject(int $a_obj_id, bool $a_include_titles=false)
executeCommand()
Execute command.
loadLanguageModule(string $a_module)
Load language module.
saveAssignedItemsSorting()
Save assigned items sorting.
createAssignedTaxonomy()
Create assigned taxonomy.
setTitleIcon(string $a_icon_path, string $a_icon_desc="")
set title icon
handleCommand()
Handle explorer internal command.
confirmDeleteTaxonomy()
Confirm taxonomy deletion.
afterSave(ilObject $a_new_object)
After saving,.
setAssignedObject(int $a_val)
isGrandChild(int $a_startnode_id, int $a_querynode_id)
checks if a node is in the path of an other node
setValue(string $a_value)
activateAssignedItemSorting(ilTaxAssignedItemInfo $a_item_info_obj, string $a_component_id, int $a_obj_id, string $a_item_type)
Activate sorting mode of assigned objects.
ilTaxAssignedItemInfo $assigned_item_info_obj
static _lookupTitle(int $obj_id)
setContent(string $a_html)
Sets content for standard template.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setScreenIdComponent(string $a_comp)
static _lookupTitle(int $a_obj_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
pasteItems()
Paste items (move operation)
ilGlobalTemplateInterface $tpl
static putInTree(int $a_tax_id, ilTaxonomyNode $a_node, int $a_parent_id=0, int $a_target_node_id=0, int $a_order_nr=0)
updateTaxNode()
Update tax node.
getParentId(int $a_node_id)
get parent id of given node
setTitle(string $a_title, bool $hidden=false)
Sets title in standard template.
static _lookupDescription(int $obj_id)
confirmedDelete()
Delete taxonomy nodes.
setTabs()
create tabs (repository/workspace switch)
static saveUsage(int $a_tax_id, int $a_obj_id)
static writeOrderNr(int $a_node_id, int $a_order_nr)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $node_id=null)
listAssignedItems()
List assigned items.
__construct(Container $dic, ilPlugin $plugin)
setDescription(string $a_descr)
Sets description below title in standard template.
initCreateForm(string $new_type)
This class represents a text area property in a property form.
setListInfo(string $a_val)
initTaxNodeForm(string $a_mode="edit")
string $assigned_item_type
saveSorting()
Save settings and sorting.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setOpenFormTag(bool $a_val)
static fixOrderNumbers(int $a_tax_id, int $a_parent_id)
string $assigned_item_comp_id
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setMultiple(bool $a_val)
Set multiple.