ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilContainerSorting.php
Go to the documentation of this file.
1 <?php
2 /*
3  +-----------------------------------------------------------------------------+
4  | ILIAS open source |
5  +-----------------------------------------------------------------------------+
6  | Copyright (c) 1998-2006 ILIAS open source, University of Cologne |
7  | |
8  | This program is free software; you can redistribute it and/or |
9  | modify it under the terms of the GNU General Public License |
10  | as published by the Free Software Foundation; either version 2 |
11  | of the License, or (at your option) any later version. |
12  | |
13  | This program is distributed in the hope that it will be useful, |
14  | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16  | GNU General Public License for more details. |
17  | |
18  | You should have received a copy of the GNU General Public License |
19  | along with this program; if not, write to the Free Software |
20  | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21  +-----------------------------------------------------------------------------+
22 */
23 
33 {
34  protected static $instances = array();
35 
36  protected $obj_id;
37  protected $db;
38 
39  protected $manual_sort_enabled = false;
40  protected $sorting_mode = 0;
41 
42  const ORDER_DEFAULT = 999999;
43 
51  private function __construct($a_obj_id)
52  {
53  global $ilDB;
54 
55  $this->db = $ilDB;
56  $this->obj_id = $a_obj_id;
57 
58  $this->read();
59  }
60 
68  public function getSortMode()
69  {
70  return $this->sorting_mode;
71  }
72 
73 
82  public static function _getInstance($a_obj_id)
83  {
84  if(isset(self::$instances[$a_obj_id]))
85  {
86  return self::$instances[$a_obj_id];
87  }
88  return self::$instances[$a_obj_id] = new ilContainerSorting($a_obj_id);
89  }
90 
96  public static function lookupPositions($a_obj_id)
97  {
98  global $ilDB;
99 
100  $query = "SELECT * FROM container_sorting WHERE ".
101  "obj_id = ".$ilDB->quote($a_obj_id,'integer');
102  $res = $ilDB->query($query);
103  while($row = $res->fetchRow(DB_FETCHMODE_OBJECT))
104  {
105  $sorted[$row->child_id] = $row->position;
106  }
107  return $sorted ? $sorted : array();
108  }
109 
116  public function cloneSorting($a_target_id,$a_copy_id)
117  {
118  global $ilDB;
119  global $ilLog;
120 
121  $ilLog->write(__METHOD__.': Cloning container sorting.');
122 
123  $target_obj_id = ilObject::_lookupObjId($a_target_id);
124 
125  include_once('./Services/CopyWizard/classes/class.ilCopyWizardOptions.php');
126  $mappings = ilCopyWizardOptions::_getInstance($a_copy_id)->getMappings();
127 
128  $query = "SELECT * FROM container_sorting ".
129  "WHERE obj_id = ".$ilDB->quote($this->obj_id, 'integer');
130 
131  $res = $ilDB->query($query);
132 
133  while($row = $res->fetchRow(DB_FETCHMODE_OBJECT))
134  {
135  if(!isset($mappings[$row->child_id]) or !$mappings[$row->child_id])
136  {
137  #$ilLog->write(__METHOD__.': No mapping found for:'.$row->child_id);
138  continue;
139  }
140 
141  if($row->parent_id and (!isset($mappings[$row->parent_id]) or !$mappings[$row->parent_id]))
142  {
143  continue;
144  }
145 
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);
152 
153  // Add new value
154  $query = "INSERT INTO container_sorting (obj_id,child_id,position,parent_type,parent_id) ".
155  "VALUES( ".
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').
161  ")";
162  $ilDB->manipulate($query);
163  }
164  return true;
165  }
166 
167 
168 
176  public function sortItems($a_items)
177  {
178  $sorted = array();
179  if(!$this->manual_sort_enabled)
180  {
181  switch($this->getSortMode())
182  {
184  foreach((array) $a_items as $type => $data)
185  {
186  // this line used until #4389 has been fixed (3.10.6)
187  // reanimated with 4.4.0
188  $sorted[$type] = ilUtil::sortArray((array) $data,'title','asc',false);
189 
190  // the next line tried to use db sorting and has replaced sortArray due to bug #4389
191  // but leads to bug #12165. PHP should be able to do a proper sorting, if the locale
192  // is set correctly, so we witch back to sortArray (with 4.4.0) and see what
193  // feedback we get
194  // (next line has been used from 3.10.6 to 4.3.x)
195 // $sorted[$type] = $data;
196  }
197  return $sorted ? $sorted : array();
198 
200  foreach((array) $a_items as $type => $data)
201  {
202  $sorted[$type] = ilUtil::sortArray((array) $data,'start','asc',true);
203  }
204  return $sorted ? $sorted : array();
205  }
206  return $a_items;
207  }
208  if(!count($a_items))
209  {
210  return $a_items;
211  }
212  foreach((array) $a_items as $type => $data)
213  {
214  // Add position
215  $items = array();
216  foreach((array) $data as $key => $item)
217  {
218  $items[$key] = $item;
219  if(is_array($this->sorting['all']) and isset($this->sorting['all'][$item['child']]))
220  {
221  $items[$key]['position'] = $this->sorting['all'][$item['child']];
222  }
223  else
224  {
225  $items[$key]['position'] = self::ORDER_DEFAULT;
226  }
227  }
228 
229  switch($type)
230  {
231  case '_all':
232  $sorted[$type] = ilUtil::sortArray((array) $items,'position','asc',true);
233  break;
234 
235  case '_non_sess':
236  $sorted[$type] = ilUtil::sortArray((array) $items,'position','asc',true);
237  break;
238 
239  default:
240  $sorted[$type] = ilUtil::sortArray((array) $items,'position','asc',true);
241  break;
242  }
243  }
244  return $sorted ? $sorted : array();
245  }
246 
254  public function sortSubItems($a_parent_type,$a_parent_id,$a_items)
255  {
256  switch($this->getSortMode())
257  {
259  // Add position
260  $items = array();
261  foreach($a_items as $key => $item)
262  {
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;
266  }
267  return ilUtil::sortArray((array) $items,'position','asc',true);
268 
269 
271  default:
272  return ilUtil::sortArray((array) $a_items,'title','asc',true);
273  }
274 
275  }
276 
277 
278 
279 
286  public function isManualSortingEnabled()
287  {
288  return (bool) $this->manual_sort_enabled;
289  }
290 
298  public function savePost($a_type_positions)
299  {
300  global $ilLog;
301 
302  if(!is_array($a_type_positions))
303  {
304  return false;
305  }
306  foreach($a_type_positions as $key => $position)
307  {
308  if(!is_array($position))
309  {
310  $items[$key] = $position * 100;
311  }
312  else
313  {
314  $ilLog->write(__METHOD__.': Deprecated call');
315  foreach($position as $parent_id => $sub_items)
316  {
317  $this->saveSubItems($key,$parent_id,$sub_items ? $sub_items : array());
318  }
319  }
320  }
321  $this->saveItems($items ? $items : array());
322  }
323 
324 
334  protected function saveItems($a_items)
335  {
336  global $ilDB;
337 
338  foreach($a_items as $child_id => $position)
339  {
340  $ilDB->replace(
341  'container_sorting',
342  array(
343  'obj_id' => array('integer',$this->obj_id),
344  'child_id' => array('integer',$child_id),
345  'parent_id' => array('integer',0)
346  ),
347  array(
348  'parent_type' => array('text',''),
349  'position' => array('integer',$position)
350  )
351  );
352  }
353  return true;
354  }
355 
363  protected function saveSubItems($a_parent_type,$a_parent_id,$a_items)
364  {
365  global $ilDB;
366 
367  foreach($a_items as $child_id => $position)
368  {
369  $ilDB->replace(
370  'container_sorting',
371  array(
372  'obj_id' => array('integer',$this->obj_id),
373  'child_id' => array('integer',$child_id),
374  'parent_id' => array('integer',$a_parent_id)
375  ),
376  array(
377  'parent_type' => array('text',$a_parent_type),
378  'position' => array('integer',$position)
379  )
380  );
381  }
382  return true;
383 
384  }
385 
386 
393  private function read()
394  {
395  if(!$this->obj_id)
396  {
397  return true;
398  }
399 
400  include_once('Services/Container/classes/class.ilContainerSortingSettings.php');
401  $this->manual_sort_enabled = ilContainerSortingSettings::_isManualSortingEnabled($this->obj_id);
402  $this->sorting_mode = ilContainerSortingSettings::_lookupSortMode($this->obj_id);
403 
404  $query = "SELECT * FROM container_sorting ".
405  "WHERE obj_id = ".$this->db->quote($this->obj_id ,'integer')." ORDER BY position";
406  $res = $this->db->query($query);
407  while($row = $res->fetchRow(DB_FETCHMODE_OBJECT))
408  {
409  if($row->parent_id)
410  {
411  $this->sorting[$row->parent_type][$row->parent_id][$row->child_id] = $row->position;
412  }
413  else
414  {
415  $this->sorting['all'][$row->child_id] = $row->position;
416  }
417  }
418  return true;
419  }
420 }
421 
422 
423 ?>
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
Definition: class.ilDB.php:11
sortItems($a_items)
sort subitems
__construct($a_obj_id)
Constructor.
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