29 public static function isActive(
int $a_parent_ref_id,
int $a_parent_obj_id,
string $a_parent_obj_type): bool
31 return (
bool) self::getActiveTaxonomiesForParentRefId($a_parent_ref_id);
34 protected function init(): void
36 $params = $this->request->getQueryParams();
37 $body = $this->request->getParsedBody();
38 $this->incoming_id = (
int) ($body[
"taxNode"] ?? (
$params[
"taxNode"] ??
null));
41 public function render(array &$a_html,
object $a_parent_gui): void
43 foreach (self::$valid_tax_map[$this->parent_ref_id] as $tax_id) {
45 $tax_exp->setSkipRootNode(
true);
46 $tax_exp->setOnClick(
"il.Classification.toggle({tax_node: '{NODE_CHILD}'});");
48 if (isset($this->selection) && is_array($this->selection)) {
49 foreach ($this->selection as $node_id) {
50 $tax_exp->setPathOpen($node_id);
51 $tax_exp->setNodeSelected($node_id);
55 if (!$tax_exp->handleCommand()) {
58 "html" => $tax_exp->getHTML(
true)
67 if ($incoming_id !== 0) {
68 if (is_array($a_saved)) {
69 foreach ($a_saved as $idx => $node_id) {
70 if ($node_id == $incoming_id) {
71 unset($a_saved[$idx]);
78 return array($incoming_id);
89 $this->selection = $a_value;
96 $tree = $DIC->repositoryTree();
98 if (!isset(self::$valid_tax_map[$a_parent_ref_id])) {
101 $all_valid = array();
102 foreach ($tree->getPathFull($a_parent_ref_id) as $node) {
103 if ($node[
"type"] ==
"cat") {
104 $node_valid = array();
107 (
int) $node[
"obj_id"],
111 $all_valid = array_merge(
118 if (substr($keyword, 0, strlen($prefix)) == $prefix && (
bool) $value) {
119 $active[] = substr($keyword, strlen($prefix));
123 $node_valid = array_intersect($all_valid, $active);
126 if (count($node_valid) !== 0) {
127 foreach ($node_valid as $idx => $node_id) {
130 unset($node_valid[$idx]);
142 $sorted_ids =
array_map(
static function (array $id_and_title) {
143 return (
int) $id_and_title[
"id"];
145 self::$valid_tax_map[$node[
"ref_id"]] = $sorted_ids;
150 if (isset(self::$valid_tax_map[$a_parent_ref_id]) && is_array(self::$valid_tax_map[$a_parent_ref_id])) {
151 return count(self::$valid_tax_map[$a_parent_ref_id]);
159 $tax_obj_ids = array();
163 foreach ($this->selection as $node_id) {
165 $tax_map[$node->getTaxonomyId()][] = (
int) $node_id;
168 foreach ($tax_map as $tax_id => $node_ids) {
172 foreach ($node_ids as $node_id) {
173 $tax_nodes = array();
174 $tax_nodes = array_merge($tax_nodes, $tax_tree->getSubTreeIds((
int) $node_id));
175 $tax_nodes[] = (
int) $node_id;
176 if (!isset($tax_obj_ids[$tax_id])) {
179 $tax_obj_ids[$tax_id] = array_intersect(
180 $tax_obj_ids[$tax_id],
189 foreach ($tax_obj_ids as $tax_objs) {
190 $obj_ids = $obj_ids ===
null ? $tax_objs : array_intersect($obj_ids, $tax_objs);
193 return (array) $obj_ids;
render(array &$a_html, object $a_parent_gui)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static isActive(int $a_parent_ref_id, int $a_parent_obj_id, string $a_parent_obj_type)
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
static findObjectsByNode(int $a_tax_id, array $a_node_ids, string $a_item_type)
Find object which have assigned nodes.
setSelection(array $a_value)
const CONTAINER_SETTING_TAXBLOCK
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)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _lookupTitle(int $obj_id)
importPostData(?array $a_saved=null)
static array $valid_tax_map
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
static getActiveTaxonomiesForParentRefId(int $a_parent_ref_id)
static _lookupContainerSetting(int $a_id, string $a_keyword, ?string $a_default_value=null)
static _lookupType(int $id, bool $reference=false)
static _getContainerSettings(int $a_id)
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)