56 $this->obj_id = $a_obj_id;
84 if(isset(self::$instances[$a_obj_id]))
86 return self::$instances[$a_obj_id];
100 $query =
"SELECT * FROM container_sorting WHERE ".
101 "obj_id = ".$ilDB->quote($a_obj_id,
'integer');
105 $sorted[
$row->child_id] =
$row->position;
107 return $sorted ? $sorted : array();
121 $ilLog->write(__METHOD__.
': Cloning container sorting.');
125 include_once(
'./Services/CopyWizard/classes/class.ilCopyWizardOptions.php');
128 $query =
"SELECT * FROM container_sorting ".
129 "WHERE obj_id = ".$ilDB->quote($this->obj_id,
'integer');
135 if(!isset($mappings[
$row->child_id]) or !$mappings[
$row->child_id])
137 #$ilLog->write(__METHOD__.': No mapping found for:'.$row->child_id); 141 if(
$row->parent_id and (!isset($mappings[
$row->parent_id]) or !$mappings[
$row->parent_id]))
146 $query =
"DELETE FROM container_sorting ".
147 "WHERE obj_id = ".$ilDB->quote($target_obj_id,
'integer').
" ".
148 "AND child_id = ".$ilDB->quote($mappings[
$row->child_id],
'integer').
" ".
149 "AND parent_type = ".$ilDB->quote(
$row->parent_type,
'text').
' '.
150 "AND parent_id = ".$ilDB->quote((
int) $mappings[
$row->parent_id],
'integer');
151 $ilDB->manipulate(
$query);
154 $query =
"INSERT INTO container_sorting (obj_id,child_id,position,parent_type,parent_id) ".
156 $ilDB->quote($target_obj_id ,
'integer').
", ".
157 $ilDB->quote($mappings[
$row->child_id] ,
'integer').
", ".
158 $ilDB->quote(
$row->position,
'integer').
", ".
159 $ilDB->quote(
$row->parent_type,
'text').
", ".
160 $ilDB->quote((
int) $mappings[
$row->parent_id],
'integer').
162 $ilDB->manipulate(
$query);
179 if(!$this->manual_sort_enabled)
184 foreach((array) $a_items as $type =>
$data)
197 return $sorted ? $sorted : array();
200 foreach((array) $a_items as $type =>
$data)
204 return $sorted ? $sorted : array();
212 foreach((array) $a_items as $type =>
$data)
216 foreach((array)
$data as $key => $item)
218 $items[$key] = $item;
219 if(is_array($this->sorting[
'all']) and isset($this->sorting[
'all'][$item[
'child']]))
221 $items[$key][
'position'] = $this->sorting[
'all'][$item[
'child']];
225 $items[$key][
'position'] = self::ORDER_DEFAULT;
244 return $sorted ? $sorted : array();
261 foreach($a_items as $key => $item)
263 $items[$key] = $item;
264 $items[$key][
'position'] = isset($this->sorting[$a_parent_type][$a_parent_id][$item[
'child']]) ?
265 $this->sorting[$a_parent_type][$a_parent_id][$item[
'child']] : self::ORDER_DEFAULT;
302 if(!is_array($a_type_positions))
306 foreach($a_type_positions as $key => $position)
308 if(!is_array($position))
310 $items[$key] = $position * 100;
314 $ilLog->write(__METHOD__.
': Deprecated call');
315 foreach($position as $parent_id => $sub_items)
317 $this->
saveSubItems($key,$parent_id,$sub_items ? $sub_items : array());
321 $this->
saveItems($items ? $items : array());
338 foreach($a_items as $child_id => $position)
343 'obj_id' => array(
'integer',$this->obj_id),
344 'child_id' => array(
'integer',$child_id),
345 'parent_id' => array(
'integer',0)
348 'parent_type' => array(
'text',
''),
349 'position' => array(
'integer',$position)
367 foreach($a_items as $child_id => $position)
372 'obj_id' => array(
'integer',$this->obj_id),
373 'child_id' => array(
'integer',$child_id),
374 'parent_id' => array(
'integer',$a_parent_id)
377 'parent_type' => array(
'text',$a_parent_type),
378 'position' => array(
'integer',$position)
400 include_once(
'Services/Container/classes/class.ilContainerSortingSettings.php');
404 $query =
"SELECT * FROM container_sorting ".
405 "WHERE obj_id = ".$this->db->quote($this->obj_id ,
'integer').
" ORDER BY position";
411 $this->sorting[
$row->parent_type][
$row->parent_id][
$row->child_id] =
$row->position;
415 $this->sorting[
'all'][
$row->child_id] =
$row->position;
saveItems($a_items)
save items
isManualSortingEnabled()
is manual sorting enabled
savePost($a_type_positions)
Save post.
sortSubItems($a_parent_type, $a_parent_id, $a_items)
sort subitems (items of sessions or learning objectives)
static sortArray($array, $a_array_sortby, $a_array_sortorder=0, $a_numeric=false, $a_keep_keys=false)
sortArray
const DB_FETCHMODE_OBJECT
sortItems($a_items)
sort subitems
__construct($a_obj_id)
Constructor.
getSortMode()
get sort mode
static _getInstance($a_copy_id)
Get instance of copy wizard options.
saveSubItems($a_parent_type, $a_parent_id, $a_items)
Save subitem ordering (sessions, learning objectives)
static _lookupObjId($a_id)
while($lm_rec=$ilDB->fetchAssoc($lm_set)) $data
_isManualSortingEnabled($a_obj_id)
is manual sorting enabled
static _lookupSortMode($a_obj_id)
lookup sort mode
static _getInstance($a_obj_id)
get instance by obj_id
static lookupPositions($a_obj_id)
Get positions of subitems.
cloneSorting($a_target_id, $a_copy_id)
clone sorting