26 protected ?\ILIAS\Taxonomy\Settings\ModifierGUIInterface
$modifier =
null;
27 protected \ILIAS\DI\UIServices
$ui;
28 protected \ILIAS\Taxonomy\InternalGUIService
$gui;
29 protected \ILIAS\Taxonomy\InternalDomainService
$domain;
51 $service = $DIC->taxonomy()->internal();
53 $this->domain = $domain =
$service->domain();
55 $this->
ctrl = $gui->ctrl();
56 $this->
tabs = $gui->tabs();
57 $this->
toolbar = $gui->toolbar();
58 $this->tpl = $gui->ui()->mainTemplate();
59 $this->
help = $gui->help();
61 $this->request = $gui->http()->request();
63 $this->
lng = $domain->lng();
64 $this->
user = $domain->user();
65 $this->
ui = $gui->ui();
70 $this->
ctrl->saveParameter($this,
"tax_node");
71 $this->
ctrl->saveParameter($this,
"tax_id");
73 $this->
lng->loadLanguageModule(
"tax");
76 $params = $this->request->getQueryParams();
78 $this->requested_tax_id = (
int) (
$params[
"tax_id"] ?? null);
79 $this->requested_move_ids = (string) (
$params[
"move_ids"] ??
"");
92 $this->assigned_object_id = $a_val;
121 $this->list_info = trim($a_val);
134 string $a_component_id,
138 $this->assigned_item_sorting =
true;
139 $this->assigned_item_info_obj = $a_item_info_obj;
140 $this->assigned_item_comp_id = $a_component_id;
141 $this->assigned_item_obj_id = $a_obj_id;
142 $this->assigned_item_type = $a_item_type;
151 $this->
tabs->activateSubTab(
"tax_settings");
153 $cmd = $ilCtrl->getCmd(
"listTaxonomies");
170 if (in_array($tax_id, $tax_ids)) {
200 $ilToolbar->setFormAction($ilCtrl->getFormAction($this));
201 $ilToolbar->addFormButton(
$lng->
txt(
"tax_create_node"),
"createTaxNode");
203 $ilToolbar->setCloseFormTag(
false);
209 if ($tax_node === 0) {
212 $tree = $tax->getTree();
247 return parent::checkPermissionBool($perm, $cmd,
$type,
$node_id);
266 $this->requested_new_type =
"tax";
268 parent::saveObject();
281 $a_new_object->
getId(),
284 $ilCtrl->setParameter($this,
"tax_id", $a_new_object->
getId());
285 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"tax_added"),
true);
286 $ilCtrl->redirect($this,
"editSettings");
290 public function showTree(
bool $a_ass_items =
false): void
298 ?
"listAssignedItems" 301 $DIC->globalScreen()->tool()->context()->current()
306 $DIC->globalScreen()->tool()->context()->current()
311 $DIC->globalScreen()->tool()->context()->current()
316 $DIC->globalScreen()->tool()->context()->current()
321 $DIC->globalScreen()->tool()->context()->current()
346 $ilHelp->setSubScreenId(
"create_node");
369 $or->setMaxLength(5);
374 if ($a_mode ==
"edit") {
376 $ti->setValue($node->getTitle());
377 if (is_object($or)) {
378 $or->setValue($node->getOrderNr());
383 if ($a_mode ==
"create") {
384 $form->addCommandButton(
"saveTaxNode",
$lng->
txt(
"save"));
385 $form->addCommandButton(
"listNodes",
$lng->
txt(
"cancel"));
386 $form->setTitle(
$lng->
txt(
"tax_new_tax_node"));
388 $form->addCommandButton(
"updateTaxNode",
$lng->
txt(
"save"));
389 $form->addCommandButton(
"listNodes",
$lng->
txt(
"cancel"));
390 $form->setTitle(
$lng->
txt(
"tax_edit_tax_node"));
393 $form->setFormAction($ilCtrl->getFormAction($this));
408 if ($form->checkInput()) {
411 $node->setTitle($form->getInput(
"title"));
416 $order_nr = $form->getInput(
"order_nr");
418 if ($order_nr ===
"") {
422 $node->setOrderNr($order_nr);
423 $node->setTaxonomyId($tax->getId());
431 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"msg_obj_modified"),
true);
432 $ilCtrl->redirect($this,
"listNodes");
434 $form->setValuesByPost();
449 if ($form->checkInput()) {
452 $node->setTitle($form->getInput(
"title"));
456 $node->setOrderNr($form->getInput(
"order_nr"));
461 $this->tpl->setOnScreenMessage(
'info',
$lng->
txt(
"msg_obj_modified"),
true);
462 $ilCtrl->redirect($this,
"");
464 $form->setValuesByPost();
478 $body = $this->request->getParsedBody();
480 if (!isset($body[
"id"])) {
481 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"no_checkbox"),
true);
482 $ilCtrl->redirect($this,
"listNodes");
486 $ilHelp->setSubScreenId(
"del_items");
492 $confirmation_gui->setFormAction($ilCtrl->getFormAction($this));
493 $confirmation_gui->setHeaderText($this->
lng->txt(
"info_delete_sure"));
496 foreach ($body[
"id"] as
$id) {
497 $confirmation_gui->addItem(
504 $confirmation_gui->setCancel(
$lng->
txt(
"cancel"),
"listNodes");
505 $confirmation_gui->setConfirm(
$lng->
txt(
"confirm"),
"confirmedDelete");
516 $body = $this->request->getParsedBody();
519 foreach ($body[
"id"] as
$id) {
523 $node_data = $tax_tree->getNodeData($id);
524 if (is_object($node)) {
527 if ($tax_tree->isInTree($id)) {
528 $tax_tree->deleteTree($node_data);
534 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"info_deleted"),
true);
536 $ilCtrl->redirect($this,
"listNodes");
546 $body = $this->request->getParsedBody();
549 if (is_array($body[
"order"] ??
false)) {
550 foreach ($body[
"order"] as $k => $v) {
557 if (is_array($body[
"title"] ??
false)) {
558 foreach ($body[
"title"] as $k => $v) {
565 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"msg_obj_modified"));
566 $ilCtrl->redirect($this,
"listNodes");
578 $body = $this->request->getParsedBody();
580 if (!isset($body[
"id"])) {
581 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"no_checkbox"),
true);
582 $ilCtrl->redirect($this,
"listNodes");
586 $ilHelp->setSubScreenId(
"move_items");
588 $ilToolbar->addButton(
590 $ilCtrl->getLinkTarget($this,
"listNodes")
593 $this->tpl->setOnScreenMessage(
'info',
$lng->
txt(
"tax_please_select_target"));
595 if (is_array($body[
"id"])) {
596 $ilCtrl->setParameter($this,
"move_ids", implode(
",", $body[
"id"]));
607 if (!$tax_exp->handleCommand()) {
621 if ($this->requested_move_ids !=
"") {
622 $move_ids = explode(
",", $this->requested_move_ids);
624 $tree = $tax->getTree();
627 foreach ($move_ids as $m_id) {
630 if ($node->getTaxonomyId() == $tax->getId() &&
631 ($target_node->getTaxonomyId() == $tax->getId() ||
635 $m_id == $target_node->getId()) {
636 $this->tpl->setOnScreenMessage(
'failure',
$lng->
txt(
"tax_target_within_nodes"),
true);
637 $this->
ctrl->redirect($this,
"listNodes");
651 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"msg_obj_modified"),
true);
652 $ilCtrl->redirect($this,
"listNodes");
667 $cgui->setFormAction($ilCtrl->getFormAction($this));
668 $cgui->setHeaderText(
$lng->
txt(
"tax_confirm_deletion"));
669 $cgui->setCancel(
$lng->
txt(
"cancel"),
"returnToSettingsParent");
670 $cgui->setConfirm(
$lng->
txt(
"delete"),
"deleteTaxonomy");
672 $cgui->addItem(
"id[]", 0, $tax->getTitle());
688 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"tax_tax_deleted"),
true);
703 if (count($tax_ids) == 0 || $this->
getMultiple()) {
704 $ilToolbar->addButton(
706 $ilCtrl->getLinkTarget($this,
"createAssignedTaxonomy")
709 $this->tpl->setOnScreenMessage(
'info',
$lng->
txt(
"tax_max_one_tax"));
724 return $this->
ctrl->getParentReturn($this);
743 $ilTabs->clearTargets();
751 $ilTabs->setBackTarget(
759 $ilCtrl->getLinkTarget($this,
"listNodes")
761 if ($this->assigned_item_sorting) {
764 $lng->
txt(
"tax_assigned_items"),
765 $ilCtrl->getLinkTarget($this,
"listAssignedItems")
771 $ilCtrl->getLinkTarget($this,
"editSettings")
774 $ilTabs->activateTab($a_id);
801 $ti->setMaxLength(200);
804 $ti->setValue($tax->getTitle());
811 $ta->
setValue($tax->getDescription());
822 $si->setValue($tax->getSortingMode());
825 if ($this->assigned_item_sorting) {
827 $cb->setChecked($tax->getItemSorting());
831 $form->addCommandButton(
"updateSettings",
$lng->
txt(
"save"));
833 $form->setTitle(
$lng->
txt(
"settings"));
834 $form->setFormAction($ilCtrl->getFormAction($this));
849 if ($form->checkInput()) {
851 $tax->setTitle($form->getInput(
"title"));
852 $tax->setDescription($form->getInput(
"description"));
853 $tax->setSortingMode((
int) $form->getInput(
"sorting"));
854 $tax->setItemSorting((
bool) $form->getInput(
"item_sorting"));
857 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"msg_obj_modified"),
true);
858 $ilCtrl->redirect($this,
"editSettings");
860 $form->setValuesByPost();
881 $this->current_tax_node,
883 $this->assigned_item_comp_id,
884 $this->assigned_item_obj_id,
885 $this->assigned_item_type,
886 $this->assigned_item_info_obj
899 $body = $this->request->getParsedBody();
901 if (is_array($body[
"order"])) {
902 $order = $body[
"order"];
904 foreach ($order as $a_item_id => $ord_nr) {
906 $this->assigned_item_comp_id,
907 $this->assigned_item_obj_id,
908 $this->assigned_item_type,
911 $tax_ass->setOrderNr($tax_node, $a_item_id, $ord_nr);
914 $this->assigned_item_comp_id,
915 $this->assigned_item_obj_id,
916 $this->assigned_item_type,
919 $tax_ass->fixOrderNr($tax_node);
920 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"msg_obj_modified"),
true);
922 $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
ILIAS Taxonomy InternalDomainService $domain
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.
saveTaxNode()
Save tax node form.
New implementation of ilObjectGUI.
updateSettings()
Update taxonomy settings.
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
Interface Observer Contains several chained tasks and infos about them.
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
listTaxonomies()
List taxonomies.
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.
createTaxNode()
Create tax node.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setContent(string $a_html)
Sets content for standard template.
static getUsageOfObject(int $a_obj_id, bool $a_include_titles=false)
executeCommand()
Execute command.
setTitle(string $a_title, bool $hidden=false)
Sets title in standard template.
saveAssignedItemsSorting()
Save assigned items sorting.
createAssignedTaxonomy()
Create assigned taxonomy.
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)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
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
ILIAS Taxonomy InternalGUIService $gui
multiple()
description: > This example show how the UI-Elements itself looks like.
static _lookupTitle(int $obj_id)
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 getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
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
setTitleIcon(string $a_icon_path, string $a_icon_desc="")
set title icon
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.
setDescription(string $a_descr)
Sets description below title in standard template.
__construct(Container $dic, ilPlugin $plugin)
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.
redirectToURL(string $target_url)
ILIAS Taxonomy Settings ModifierGUIInterface $modifier
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setOpenFormTag(bool $a_val)
setModifier(?\ILIAS\Taxonomy\TaxonomyModifierGUI $modifier)
static fixOrderNumbers(int $a_tax_id, int $a_parent_id)
string $assigned_item_comp_id
setMultiple(bool $a_val)
Set multiple.