3 declare(strict_types=0);
23 $this->tree = $DIC->repositoryTree();
24 $this->objDefinition = $DIC[
'objDefinition'];
31 bool $a_full_data =
false 35 $cache_idx = $a_ref_id .
"__" . $a_full_data;
36 if (!isset(self::$possible_items[$cache_idx])) {
37 $all_possible = array();
39 if (!$this->tree->isDeleted($a_ref_id)) {
41 $data = $this->tree->getRbacSubtreeInfo($a_ref_id);
43 $node = $this->tree->getNodeData($a_ref_id);
44 $data = $this->tree->getSubTree($node);
46 foreach (
$data as $node) {
48 $item_ref_id = (
int) $node[
'child'];
50 $item_ref_id = (
int) $node[
'ref_id'];
60 switch ($node[
'type']) {
81 $all_possible[] = $item_ref_id;
83 $all_possible[$item_ref_id] = array(
84 'ref_id' => (
int) $item_ref_id,
85 'obj_id' => (
int) $node[
'obj_id'],
86 'title' => (
string) $node[
'title'],
87 'description' => (
string) $node[
'description'],
88 'type' => (
string) $node[
'type']
94 case $this->objDefinition->isPluginTypeName(
106 $all_possible[] = $item_ref_id;
108 $all_possible[$item_ref_id] = array(
109 'ref_id' => (
int) $item_ref_id,
110 'obj_id' => (
int) $node[
'obj_id'],
111 'title' => (
string) $node[
'title'],
112 'description' => (
string) $node[
'description'],
113 'type' => (
string) $node[
'type']
122 self::$possible_items[$cache_idx] = $all_possible;
125 return self::$possible_items[$cache_idx];
132 if ($a_item_type ==
'tst') {
136 if ($olp->isAnonymized()) {
145 parent::cloneCollection($a_target_id, $a_copy_id);
148 $mappings = $cwo->getMappings();
151 $target_collection =
new static($target_obj_id,
$this->mode);
155 ) as $grouping_id => $group) {
156 $target_item_ids = array();
157 foreach ($group[
"items"] as $item) {
158 if (!isset($mappings[$item]) or !$mappings[$item]) {
162 $target_item_ids[] = $mappings[$item];
166 if ($grouping_id &&
sizeof($target_item_ids) > 1) {
168 $num_obligatory = min(
169 sizeof($target_item_ids),
170 $group[
"num_obligatory"]
173 $target_collection->createNewGrouping(
179 foreach ($target_item_ids as $item_id) {
186 protected function read(
int $a_obj_id): void
194 $res = $this->db->query(
195 "SELECT utc.item_id, obd.type" .
196 " FROM ut_lp_collections utc" .
197 " JOIN object_reference obr ON item_id = ref_id" .
198 " JOIN object_data obd ON obr.obj_id = obd.obj_id" .
199 " WHERE utc.obj_id = " . $this->db->quote($a_obj_id,
"integer") .
200 " AND active = " . $this->db->quote(1,
"integer") .
204 if (in_array($row->item_id, $possible) &&
222 $query =
"INSERT INTO ut_lp_collections" .
223 " (obj_id, lpmode, item_id, grouping_id, num_obligatory, active)" .
224 " VALUES (" . $this->db->quote($this->obj_id,
"integer") .
225 ", " . $this->db->quote($this->mode,
"integer") .
226 ", " . $this->db->quote($a_item_id,
"integer") .
227 ", " . $this->db->quote(0,
"integer") .
228 ", " . $this->db->quote(0,
"integer") .
229 ", " . $this->db->quote(1,
"integer") .
231 $this->db->manipulate(
$query);
232 $this->items[] = $a_item_id;
239 $query =
"DELETE FROM ut_lp_collections " .
240 " WHERE obj_id = " . $this->db->quote($this->obj_id,
"integer") .
241 " AND item_id = " . $this->db->quote($a_item_id,
"integer") .
242 " AND grouping_id = " . $this->db->quote(0,
"integer");
243 $this->db->manipulate(
$query);
251 $ilDB = $DIC[
'ilDB'];
252 $query =
"SELECT item_id FROM ut_lp_collections" .
253 " WHERE obj_id = " .
$ilDB->quote($a_obj_id,
"integer") .
254 " AND grouping_id > " .
$ilDB->quote(0,
"integer");
256 return $res->numRows() ? true :
false;
263 $ilDB = $DIC[
'ilDB'];
265 $grouping_ids = array();
267 $query =
"SELECT grouping_id FROM ut_lp_collections" .
268 " WHERE obj_id = " . $this->db->quote($this->obj_id,
"integer") .
269 " AND " . $this->db->in(
"item_id", $a_item_ids,
false,
"integer") .
270 " AND grouping_id > " . $this->db->quote(0,
"integer");
273 $grouping_ids[] = $row->grouping_id;
276 return $grouping_ids;
281 parent::deactivateEntries($a_item_ids);
285 $query =
"UPDATE ut_lp_collections" .
286 " SET active = " . $this->db->quote(0,
"integer") .
287 " WHERE " . $this->db->in(
293 " AND obj_id = " . $this->db->quote($this->obj_id,
"integer");
294 $this->db->manipulate(
$query);
300 parent::activateEntries($a_item_ids);
304 $query =
"UPDATE ut_lp_collections" .
305 " SET active = " . $this->db->quote(1,
"integer") .
306 " WHERE " . $this->db->in(
312 " AND obj_id = " . $this->db->quote($this->obj_id,
"integer");
313 $this->db->manipulate(
$query);
319 int $a_num_obligatory = 1
323 $all_item_ids = array();
325 $query =
"SELECT item_id FROM ut_lp_collections" .
326 " WHERE obj_id = " . $this->db->quote($this->obj_id,
"integer") .
327 " AND " . $this->db->in(
335 $all_item_ids[] = $row->item_id;
338 $all_item_ids = array_unique(array_merge($all_item_ids, $a_item_ids));
343 $query =
"SELECT MAX(grouping_id) grp FROM ut_lp_collections" .
344 " WHERE obj_id = " . $this->db->quote($this->obj_id,
"integer") .
351 $query =
"UPDATE ut_lp_collections SET" .
352 " grouping_id = " . $this->db->quote($grp_id,
"integer") .
353 ", num_obligatory = " . $this->db->quote(
357 ", active = " . $this->db->quote(1,
"integer") .
358 " WHERE obj_id = " . $this->db->quote($this->obj_id,
"integer") .
359 " AND " . $this->db->in(
"item_id", $all_item_ids,
false,
"integer");
360 $this->db->manipulate(
$query);
367 $query =
"UPDATE ut_lp_collections" .
368 " SET grouping_id = " . $this->db->quote(0,
"integer") .
369 ", num_obligatory = " . $this->db->quote(0,
"integer") .
370 " WHERE obj_id = " . $this->db->quote($this->obj_id,
"integer") .
371 " AND " . $this->db->in(
377 $this->db->manipulate(
$query);
382 foreach ($a_obl as $grouping_id => $num) {
383 $query =
"SELECT count(obj_id) num FROM ut_lp_collections" .
384 " WHERE obj_id = " . $this->db->quote(
388 " AND grouping_id = " . $this->db->quote(
395 if ($num <= 0 || $num >= $row->num) {
400 foreach ($a_obl as $grouping_id => $num) {
401 $query =
"UPDATE ut_lp_collections" .
402 " SET num_obligatory = " . $this->db->quote($num,
"integer") .
403 " WHERE obj_id = " . $this->db->quote(
407 " AND grouping_id = " . $this->db->quote(
411 $this->db->manipulate(
$query);
421 foreach (
$items as $item_id => $item) {
422 if (in_array($item_id, $done)) {
429 $table_item[
'grouped'] = array();
431 if (count((array) ($grouped_items[
'items'] ?? [])) > 1) {
432 foreach ($grouped_items[
'items'] as $grouped_item_id) {
433 if ($grouped_item_id == $item_id ||
434 !is_array(
$items[$grouped_item_id] ??
false)) {
442 $table_item[
'num_obligatory'] = $grouped_items[
'num_obligatory'];
443 $table_item[
'grouping_id'] = $grouped_items[
'grouping_id'];
445 $done[] = $grouped_item_id;
448 $data[] = $table_item;
455 $table_item = $a_item;
456 $table_item[
'id'] = $a_id;
460 $table_item[
'mode_id'] = $olp->getCurrentMode();
461 $table_item[
'mode'] = $olp->getModeText($table_item[
'mode_id']);
462 $table_item[
'anonymized'] = $olp->isAnonymized();
470 $query =
"SELECT grouping_id FROM ut_lp_collections" .
471 " WHERE obj_id = " . $this->db->quote($this->obj_id,
"integer") .
472 " AND item_id = " . $this->db->quote($item_id,
"integer");
476 $grouping_id = (
int) $row->grouping_id;
478 if ($grouping_id > 0) {
479 $query =
"SELECT item_id, num_obligatory FROM ut_lp_collections" .
480 " WHERE obj_id = " . $this->db->quote(
484 " AND grouping_id = " . $this->db->quote(
491 $items[
'num_obligatory'] = (
int) $row->num_obligatory;
492 $items[
'grouping_id'] = (
int) $grouping_id;
501 $query =
" SELECT * FROM ut_lp_collections" .
502 " WHERE obj_id = " . $this->db->quote($this->obj_id,
"integer") .
503 " AND active = " . $this->db->quote(1,
"integer");
508 if (in_array($row->item_id,
$items)) {
509 $grouped[$row->grouping_id][
'items'][] = (
int) $row->item_id;
510 $grouped[$row->grouping_id][
'num_obligatory'] = (
int) $row->num_obligatory;
releaseGrouping(array $a_item_ids)
ilObjectDefinition $objDefinition
createNewGrouping(array $a_item_ids, int $a_num_obligatory=1)
getGroupingIds(array $a_item_ids)
getGroupedItemsForLPStatus()
static _getAllReferences(int $id)
get all reference ids for object ID
isAssignedEntry(int $a_item_id)
saveObligatoryMaterials(array $a_obl)
getTableGUIData(int $a_parent_ref_id)
static _lookupObjId(int $ref_id)
LP collection of repository objects.
parses the objects.xml it handles the xml-description of all ilias objects
__construct(int $a_obj_id, int $a_mode)
getTableGUItemGroup(int $item_id)
cloneCollection(int $a_target_id, int $a_copy_id)
static array $possible_items
deactivateEntries(array $a_item_ids)
static hasGroupedItems(int $a_obj_id)
LP collection base class.
activateEntries(array $a_item_ids)
static isTypePluginWithLP(string $a_type, bool $a_active_status=true)
__construct(Container $dic, ilPlugin $plugin)
validateEntry(int $a_item_id)
static _getInstance(int $a_copy_id)
parseTableGUIItem(int $a_id, array $a_item)
static _lookupType(int $id, bool $reference=false)
static getInstance(int $obj_id)
getPossibleItems(int $a_ref_id, bool $a_full_data=false)
deleteEntry(int $a_item_id)