48 string $a_md_obj_type,
53 $this->obj_definition = $DIC[
"objDefinition"];
54 $this->tree = $DIC->repositoryTree();
57 $this->
tabs = $DIC->tabs();
58 $this->
ctrl = $DIC->ctrl();
59 $this->
lng = $DIC->language();
60 $this->tpl = $DIC->ui()->mainTemplate();
63 $this->request = $DIC->http()->request();
65 $this->md_rbac_id = $a_md_rbac_id;
66 $this->md_obj_id = $a_md_obj_id;
67 $this->md_obj_type = $a_md_obj_type;
68 $this->ref_id = $a_ref_id;
70 $params = $this->request->getQueryParams();
71 $this->requested_post_var =
$params[
"postvar"] ??
"";
81 $next_class = $this->
ctrl->getNextClass($this);
82 $cmd = $this->
ctrl->getCmd(
"show");
84 if ($next_class ==
'ilformpropertydispatchgui') {
87 $item = $form->getItemByPostVar($this->requested_post_var);
88 $form_prop_dispatch->setItem($item);
89 return $this->
ctrl->forwardCommand($form_prop_dispatch);
90 } elseif (in_array($cmd, array(
"show",
"save"))) {
96 public function show(): void
109 if ($form->checkInput()) {
111 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"msg_obj_modified"),
true);
114 $form->setValuesByPost();
127 $form->addCommandButton(
"save", $this->
lng->txt(
"save"));
128 $form->setTitle($this->
lng->txt(
"tax_tax_assignment"));
129 $form->setFormAction($this->
ctrl->getFormAction($this));
141 if ($this->ref_id > 0 && $objDefinition->isRBACObject($this->md_obj_type)) {
143 foreach ($tree->
getPathFull($this->ref_id) as $node) {
145 if ((
int) $node[
"ref_id"] != $this->ref_id && $node[
"type"] ==
"cat") {
147 (
int) $node[
"obj_id"],
153 if (count($tax_ids) !== 0) {
177 if (is_array($tax_ids)) {
178 foreach ($tax_ids as $tax_id) {
182 foreach ($ta->getAssignmentsOfItem($this->md_obj_id) as $ass) {
183 $node_ids[] = $ass[
"node_id"];
187 $tax_sel->setValue($node_ids);
198 $body = $this->request->getParsedBody();
200 if (is_array($tax_ids)) {
201 foreach ($tax_ids as $tax_id) {
205 $ta->deleteAssignmentsOfItem($this->md_obj_id);
208 if (isset($body[
"md_tax_" . $tax_id])) {
209 foreach ($body[
"md_tax_" . $tax_id] as $node_id) {
210 $ta->addAssignment($node_id, $this->md_obj_id);
227 if (is_array($tax_ids)) {
230 $lng->
txt(
"tax_tax_assignment"),
initTaxNodeAssignment(int $a_tax_id)
string $requested_post_var
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...
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...
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
getLinkTarget(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
ilObjectDefinition $obj_definition
__construct(int $a_md_rbac_id, int $a_md_obj_id, string $a_md_obj_type, int $a_ref_id)
Constructor.
setContent(string $a_html)
Sets content for standard template.
static getUsageOfObject(int $a_obj_id, bool $a_include_titles=false)
executeCommand()
Execute command.
getPathFull(int $a_endnode_id, int $a_startnode_id=0)
get path from a given startnode to a given endnode if startnode is not given the rootnode is startnod...
addSubTab(string $a_id, string $a_text, string $a_link, string $a_frame="")
initForm()
Init taxonomy form.
Taxonomies selection for metadata helper GUI.
redirect(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
getSelectableTaxonomies()
updateFromMDForm()
Import settings from MD (quick edit) form.
RequestInterface $request
addToMDForm(ilPropertyFormGUI $a_form)
Add taxonomy selector to MD (quick edit) form.
static _lookupContainerSetting(int $a_id, string $a_keyword, ?string $a_default_value=null)
ilGlobalTemplateInterface $tpl