40 $this->log = $DIC[
"ilLog"];
41 $this->tree = $DIC->repositoryTree();
42 $ilDB = $DIC->database();
45 $this->obj_id = $a_obj_id;
57 return self::$instances[$a_obj_id] ?? (self::$instances[$a_obj_id] =
new ilContainerSorting($a_obj_id));
68 $ilDB = $DIC->database();
71 $query =
"SELECT child_id, position FROM container_sorting WHERE " .
72 "obj_id = " .
$ilDB->quote($a_obj_id,
'integer');
75 $sorted[(
int) $row->child_id] = (
int) $row->position;
88 $ilLog->debug(
"Cloning container sorting.");
97 "SELECT * FROM container_sorting_bl " .
98 " WHERE obj_id = %s ",
102 if (($rec =
$ilDB->fetchAssoc($set)) && $rec[
"block_ids"] !=
"") {
103 $ilLog->debug(
"Got block sorting for obj_id = " . $this->obj_id .
": " . $rec[
"block_ids"]);
105 foreach (explode(
";", $rec[
"block_ids"]) as $block_id) {
106 if (is_numeric($block_id) && isset($mappings[$block_id])) {
107 $new_block_ids[] = $mappings[$block_id];
109 $new_block_ids[] = $block_id;
112 $new_ids = implode(
";", $new_block_ids);
115 "container_sorting_bl",
116 [
"obj_id" => [
"integer", $target_obj_id]],
117 [
"block_ids" => [
"text", $new_ids]]
120 $ilLog->debug(
"Write block sorting for obj_id = " . $target_obj_id .
": " . $new_ids);
124 $ilLog->debug(
"Read container_sorting for obj_id = " . $this->obj_id);
126 $query =
"SELECT * FROM container_sorting " .
127 "WHERE obj_id = " .
$ilDB->quote($this->obj_id,
'integer');
132 if (!isset($mappings[$row->child_id]) || !$mappings[$row->child_id]) {
133 $ilLog->debug(
"No mapping found for child id:" . $row->child_id);
139 if ($row->parent_id) {
142 if (in_array($row->parent_type, [
"sess",
"itgr"])) {
144 $par_ref_id = current($par_refs);
145 $ilLog->debug(
"Got ref id: " . $par_ref_id .
" for obj_id " . $row->parent_id .
" map ref id: " . ($mappings[$par_ref_id] ??
"") .
".");
146 if (isset($mappings[$par_ref_id])) {
147 $new_parent_ref_id = $mappings[$par_ref_id];
151 $new_parent_id = $mappings[$row->parent_id];
153 if ((
int) $new_parent_id === 0) {
154 $ilLog->debug(
"No mapping found for parent id:" . $row->parent_id .
", child_id: " . $row->child_id);
159 $query =
"DELETE FROM container_sorting " .
160 "WHERE obj_id = " .
$ilDB->quote($target_obj_id,
'integer') .
" " .
161 "AND child_id = " .
$ilDB->quote($mappings[$row->child_id],
'integer') .
" " .
162 "AND parent_type = " .
$ilDB->quote($row->parent_type,
'text') .
' ' .
163 "AND parent_id = " .
$ilDB->quote((
int) $new_parent_id,
'integer');
168 $query =
"INSERT INTO container_sorting (obj_id,child_id,position,parent_type,parent_id) " .
170 $ilDB->quote($target_obj_id,
'integer') .
", " .
171 $ilDB->quote($mappings[$row->child_id],
'integer') .
", " .
172 $ilDB->quote($row->position,
'integer') .
", " .
173 $ilDB->quote($row->parent_type,
'text') .
", " .
174 $ilDB->quote((
int) $new_parent_id,
'integer') .
183 if (!is_array($a_items)) {
193 if (
$type ===
'sess_link') {
214 return $sorted ?: [];
219 if (
$type ===
'sess_link') {
231 return $sorted ?: [];
237 if (
$type ===
'sess_link') {
249 return $sorted ?: [];
253 if (!is_array($a_items) || !count($a_items)) {
258 if (
$type ===
'sess_link') {
265 foreach ((array)
$data as
$key => $item) {
266 $items[
$key] = $item;
267 if (isset($item[
'child'], $this->sorting[
'all'][$item[
'child']])) {
268 $items[
$key][
'position'] = $this->sorting[
'all'][$item[
'child']];
270 $items[
$key][
'position'] = self::ORDER_DEFAULT;
285 return $sorted ?: [];
292 string $a_parent_type,
299 foreach ($a_items as
$key => $item) {
300 $items[
$key] = $item;
301 $items[
$key][
'position'] = $this->sorting[$a_parent_type][$a_parent_id][$item[
'child']] ?? self::ORDER_DEFAULT;
338 public function savePost(array $a_type_positions): void
340 if (!is_array($a_type_positions)) {
344 foreach ($a_type_positions as
$key => $position) {
345 if (
$key ===
"blocks") {
347 } elseif (!is_array($position)) {
348 $items[
$key] = ((float) $position) * 100;
350 foreach ($position as $parent_id => $sub_items) {
356 if (!count($items)) {
364 foreach ($items as
$key => $null) {
365 $new_indexed[
$key] = ++$position;
375 foreach ($a_items as $child_id => $position) {
379 'obj_id' => [
'integer', $this->obj_id],
380 'child_id' => [
'integer', $child_id],
381 'parent_id' => [
'integer', 0]
384 'parent_type' => [
'text',
''],
385 'position' => [
'integer', $position]
392 string $a_parent_type,
398 foreach ($a_items as $child_id => $position) {
402 'obj_id' => [
'integer', $this->obj_id],
403 'child_id' => [
'integer', $child_id],
404 'parent_id' => [
'integer', $a_parent_id]
407 'parent_type' => [
'text', $a_parent_type],
408 'position' => [
'integer', $position]
422 'container_sorting_bl',
424 'obj_id' => [
'integer', $this->obj_id]
427 'block_ids' => [
'text', implode(
";", array_keys($a_values))]
439 $set =
$ilDB->query(
"SELECT block_ids" .
440 " FROM container_sorting_bl" .
441 " WHERE obj_id = " .
$ilDB->quote($this->obj_id,
"integer"));
442 $row =
$ilDB->fetchAssoc($set);
443 if (isset($row[
"block_ids"])) {
444 return explode(
";", $row[
"block_ids"]);
452 if (!$this->obj_id) {
458 $query =
"SELECT * FROM container_sorting " .
459 "WHERE obj_id = " . $this->db->quote($this->obj_id,
'integer') .
" ORDER BY position";
462 if ($row->parent_id) {
463 $this->sorting[$row->parent_type][$row->parent_id][$row->child_id] = $row->position;
465 $this->sorting[
'all'][$row->child_id] = $row->position;
477 foreach ($items as
$key => $item) {
478 if ($item[
"position"] == self::ORDER_DEFAULT) {
481 "title" => $item[
"title"] ??
"",
482 "create_date" => $item[
"create_date"] ??
"",
483 "start" => $item[
"start"] ??
"" 488 if (!count($no_position)) {
524 foreach ($no_position as $values) {
525 $items[$values[
"key"]][
"position"] = $count;
const SORT_NEW_ITEMS_POSITION_TOP
static getLogger(string $a_component_id)
Get component logger.
loadEffectiveSettings()
Load inherited settings.
savePost(array $a_type_positions)
saveBlockPositions(array $a_values)
Save block custom positions (for current object id)
__construct(int $a_obj_id)
sortOrderDefault(array $items)
Position and order sort order for new object without position in manual sorting type.
saveSubItems(string $a_parent_type, int $a_parent_id, array $a_items)
static _getAllReferences(int $id)
get all reference ids for object ID
getBlockPositions()
Read block custom positions (for current object id)
static lookupPositions(int $a_obj_id)
saveItems(array $a_items)
static _lookupObjId(int $ref_id)
ilContainerSortingSettings $sorting_settings
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const SORT_NEW_ITEMS_ORDER_CREATION
static _lookupObjectId(int $ref_id)
const SORT_NEW_ITEMS_ORDER_ACTIVATION
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getInstance(int $a_obj_id)
sortSubItems(string $a_parent_type, int $a_parent_id, array $a_items)
sort subitems (items of sessions or learning objectives)
static _getInstance(int $a_copy_id)
cloneSorting(int $a_target_id, int $a_copy_id)
const SORT_NEW_ITEMS_ORDER_TITLE
sortItems(array $a_items)
static getInstanceByObjId(int $a_obj_id)
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)