X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-core%2Finclude%2Fclass_sortableListing.inc;h=3c8ad5917ed60483c2db3459f5df196eaba053d4;hb=2ce48ffa7e0a20d62e3d3ef52d44453c35997dd4;hp=d3b95ca84ce30de211ecb55dc3c2a89837a269e2;hpb=0abda3c46751ef01cd835d555af0ba14ac2b0495;p=gosa.git diff --git a/gosa-core/include/class_sortableListing.inc b/gosa-core/include/class_sortableListing.inc index d3b95ca84..3c8ad5917 100644 --- a/gosa-core/include/class_sortableListing.inc +++ b/gosa-core/include/class_sortableListing.inc @@ -60,9 +60,27 @@ class sortableListing { // Save data to display $this->setListData($data, $displayData); + // Get list of used IDs + if(!session::is_set('sortableListing_USED_IDS')){ + session::set('sortableListing_USED_IDS',array()); + } + $usedIds = session::get('sortableListing_USED_IDS'); + // Generate instance wide unique ID - $tmp= gettimeofday(); - $this->id= 'l'.md5($tmp['sec']); + $id = ""; + while($id == "" || in_array($id, $usedIds)){ + + // Wait 1 msec to ensure that we definately get a new id + if($id != "") usleep(1); + $tmp= gettimeofday(); + $id = 'l'.md5(microtime().$tmp['sec']); + } + + // Only keep the last 10 list IDsi + $usedIds = array_slice($usedIds, count($usedIds) -10, 10); + $usedIds[] = $id; + session::set('sortableListing_USED_IDS',$usedIds); + $this->id = $id; // Set reorderable flag $this->reorderable= $reorderable; @@ -71,6 +89,15 @@ class sortableListing { } } + public function setReorderable($bool) + { + $this->reorderable= $bool; + } + + public function setDefaultSortColumn($id) + { + $this->sortColumn = $id; + } public function setListData($data, $displayData= null) { @@ -95,12 +122,13 @@ class sortableListing { private function setDisplayData($data) { if (!is_array($data)) { - die ("sortableList needs an array as data!"); + trigger_error ("sortableList needs an array as data!"); } // Transfer information $this->displayData= array(); $this->modes= array(); + $this->mapping= array(); foreach ($data as $key => $value) { $this->displayData[]= $value['data']; if (isset($value['mode'])) { @@ -110,7 +138,9 @@ class sortableListing { $this->keys= array_keys($data); // Create initial mapping - $this->mapping= range(0, abs(count($this->keys)-1)); + if(count($this->keys)){ + $this->mapping= range(0, abs(count($this->keys)-1)); + } $this->current_mapping= $this->mapping; // Find the number of coluns @@ -124,7 +154,9 @@ class sortableListing { // Preset sort orders to 'down' for ($column= 0; $column<$this->columns; $column++) { - $this->sortDirection[]= true; + if(!isset($this->sortDirection[$column])){ + $this->sortDirection[$column]= true; + } } } @@ -221,7 +253,7 @@ class sortableListing { // Do we need a header? if ($this->header) { $result.= " \n \n"; - $first= " style='border:0'"; + $first= " style='border-left:0'"; for ($i= 0; $i<$this->columns; $i++) { $link= "href='?plug=".$_GET['plug']."&PID=".$this->id."&act=SORT_$i'"; $sorter= ""; @@ -232,7 +264,7 @@ class sortableListing { if ($this->reorderable) { $result.= " ".(isset($this->header[$i])?$this->header[$i]:"").""; } else { - $result.= " ".(isset($this->header[$i])?$this->header[$i]:"")."$sorter"; + $result.= " ".(isset($this->header[$i])?$this->header[$i]:"")."$sorter"; } $first= ""; } @@ -247,7 +279,7 @@ class sortableListing { $reorderable= $this->reorderable?"":" style='cursor:default'"; if (strpos($this->acl, 'r') !== false) { foreach ($this->mapping as $nr => $row) { - $editable= $this->editable?" onclick='$(\"edit_".$this->id."_$nr\").click()'":""; + $editable= $this->editable?" onClick='$(\"edit_".$this->id."_$nr\").click()'":""; $id= ""; if (isset($this->modes[$row])) { @@ -288,7 +320,7 @@ class sortableListing { $result.= "\n"; $result.= " \n\n\n"; - $result.= " \n"; +# $result.= " \n"; $result.= " \n"; $result.= " \n"; @@ -314,26 +346,27 @@ class sortableListing { public function update() { - // Do not do anything if this is not our PID, or there's even no PID available... - if(!isset($_REQUEST['PID']) || $_REQUEST['PID'] != $this->id) { - return; - } // Filter GET with "act" attributes - if (!$this->reorderable && isset($_GET['act'])) { - $key= validate($_GET['act']); - if (preg_match('/^SORT_([0-9]+)$/', $key, $match)) { - // Switch to new column or invert search order? - $column= $match[1]; - if ($this->sortColumn != $column) { - $this->sortColumn= $column; - } else { - $this->sortDirection[$column]= !$this->sortDirection[$column]; - } + if (!$this->reorderable){ + if(isset($_GET['act']) && isset($_GET['PID']) && $this->id == $_GET['PID']) { + + $key= validate($_GET['act']); + if (preg_match('/^SORT_([0-9]+)$/', $key, $match)) { + + // Switch to new column or invert search order? + $column= $match[1]; + if ($this->sortColumn != $column) { + $this->sortColumn= $column; + } else { + $this->sortDirection[$column]= !$this->sortDirection[$column]; + } - // Update mapping according to sort parameters - $this->sortData(); + } } + + // Update mapping according to sort parameters + $this->sortData(); } } @@ -341,7 +374,7 @@ class sortableListing { public function save_object() { // Do not do anything if this is not our PID, or there's even no PID available... - if(!isset($_REQUEST['PID']) || $_REQUEST['PID'] != $this->id) { + if(isset($_REQUEST['PID']) && $_REQUEST['PID'] != $this->id) { return; } @@ -372,7 +405,7 @@ class sortableListing { $this->action = ""; if (strpos($this->acl, 'd') !== false){ foreach ($_POST as $key => $value) { - if (preg_match('/^del_'.$this->id.'([0-9]+)$/', $key, $matches)) { + if (preg_match('/^del_'.$this->id.'_([0-9]+)$/', $key, $matches)) { $this->active_index= $this->mapping[$matches[1]]; // Ignore request if mode requests it @@ -445,11 +478,10 @@ class sortableListing { public function getMaintainedData() { $tmp= array(); - foreach ($this->mapping as $src => $dst) { - $tmp[$this->keys[$dst]]= $this->data[$dst]; + $realKey = $this->keys[$dst]; + $tmp[$realKey] = $this->data[$realKey]; } - return $tmp; } @@ -468,6 +500,8 @@ class sortableListing { public function sortData() { + if(!count($this->data)) return; + // Extract data $tmp= array(); foreach($this->displayData as $item) { @@ -523,6 +557,23 @@ class sortableListing { $this->mapping[]= count($this->mapping); $this->modified= true; + // Find the number of coluns + reset($this->displayData); + $first= current($this->displayData); + if (is_array($first)) { + $this->columns= count($first); + } else { + $this->columns= 1; + } + + // Preset sort orders to 'down' + for ($column= 0; $column<$this->columns; $column++) { + if(!isset($this->sortDirection[$column])){ + $this->sortDirection[$column]= true; + } + } + + // Sort data after we've added stuff $this->sortData(); } @@ -532,4 +583,8 @@ class sortableListing { return isset($this->keys[$index])?$this->keys[$index]:null; } + public function getData($index) { + $realkey = $this->keys[$index]; + return($this->data[$realkey]); + } }