X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-core%2Finclude%2Fclass_sortableListing.inc;h=55c3bbfe9bc5617b76eabbc41a0c9de330ad8334;hb=0263ebf7c8361121ba2e35e4e80c976a02ed1d26;hp=2dc8237a9b8b3a10ec99e04ce7b72e216e62cf1b;hpb=81d49c26f3bd4e32d919047cd72de1916ac03adf;p=gosa.git diff --git a/gosa-core/include/class_sortableListing.inc b/gosa-core/include/class_sortableListing.inc index 2dc8237a9..55c3bbfe9 100644 --- a/gosa-core/include/class_sortableListing.inc +++ b/gosa-core/include/class_sortableListing.inc @@ -1,9 +1,9 @@ setListData($data, $displayData); + + // Generate instance wide unique ID + $tmp= gettimeofday(); + $this->id= 'l'.md5($tmp['sec']); + + // Set reorderable flag + $this->reorderable= $reorderable; + if (!$reorderable) { + $this->sortData(); + } + } + + + public function setListData($data, $displayData= null) + { // Save data to display $this->setData($data); if (!$displayData) { $displayData= array(); - foreach ($data as $value) { - $displayData[]= array($value); + foreach ($data as $key => $value) { + $displayData[$key]= array("data" => array($value)); } - } else { - $this->setDisplayData($displayData); } - - // Generate instance wide unique ID - $tmp= gettimeofday(); - $this->id= 'l'.md5($tmp['sec']); + $this->setDisplayData($displayData); } - function setData($data) + private function setData($data) { $this->data= $data; } - function setDisplayData($data) + private function setDisplayData($data) { if (!is_array($data)) { die ("sortableList needs an array as data!"); } // Transfer information - $this->displayData= $data; + $this->displayData= array(); + $this->modes= array(); + foreach ($data as $key => $value) { + $this->displayData[]= $value['data']; + if (isset($value['mode'])) { + $this->modes[]= $value['mode']; + } + } + $this->keys= array_keys($data); // Create initial mapping - $this->mapping= array_keys($data); + $this->mapping= range(0, abs(count($this->keys)-1)); $this->current_mapping= $this->mapping; // Find the number of coluns @@ -93,77 +121,82 @@ class sortableListing { } else { $this->columns= 1; } + + // Preset sort orders to 'down' + for ($column= 0; $column<$this->columns; $column++) { + $this->sortDirection[]= true; + } } - function setWidth($width) + public function setWidth($width) { $this->width= $width; } - function setReorderable($flag) + public function setInstantDelete($flag) { - $this->reorderable= $flag; + $this->instantDelete= $flag; } - function setInstantDelete($flag) + public function setColorAlternate($flag) { - $this->instantDelete= $flag; + $this->colorAlternate= $flag; } - function setEditable($flag) + public function setEditable($flag) { $this->editable= $flag; } - function setDeleteable($flag) + public function setDeleteable($flag) { $this->deleteable= $flag; } - function setHeight($height) + public function setHeight($height) { $this->height= $height; } - function setCssClass($css) + public function setCssClass($css) { $this->cssclass= $css; } - function setHeader($header) + public function setHeader($header) { $this->header= $header; } - function setColspecs($specs) + public function setColspecs($specs) { $this->colspecs= $specs; } - function render() + public function render() { - $result= "
\n"; - $result.= "cssclass)?" class='".$this->cssclass."'":"").">\n"; + $result= "
\n"; + $result.= "
cssclass)?" class='".$this->cssclass."'":"").">\n"; $action_width= 0; if (strpos($this->acl, 'w') === false) { - $edit_image= $this->editable?""._("Edit")."":""; + $edit_image= $this->editable?image("images/lists/edit-grey.png"):""; } else { - $edit_image= $this->editable?"":""; + $edit_image= $this->editable?image('images/lists/edit.png', "%ID", _("Edit this entry")):""; } if (strpos($this->acl, 'd') === false) { - $delete_image= $this->deleteable?""._("Delete")."":""; + $delete_image= $this->deleteable?image('images/lists/trash-grey.png'):""; } else { - $delete_image= $this->deleteable?"":""; + $delete_image= $this->deleteable?image('images/lists/trash.png', "%ID", _("Delete this entry")):""; } // Do we need colspecs? @@ -171,12 +204,16 @@ class sortableListing { if ($this->colspecs) { $result.= " \n"; for ($i= 0; $i<$this->columns; $i++) { - $result.= " \n"; + if(isset($this->colspecs[$i]) && $this->colspecs[$i] != '*'){ + $result.= " \n"; + }else{ + $result.= " \n"; + } } // Extend by another column if we've actions specified if ($action_width) { - $result.= " \n"; + $result.= " \n"; } $result.= " \n"; } @@ -184,8 +221,20 @@ class sortableListing { // Do we need a header? if ($this->header) { $result.= " \n \n"; + $first= " style='border-left:0'"; for ($i= 0; $i<$this->columns; $i++) { - $result.= " "; + $link= "href='?plug=".$_GET['plug']."&PID=".$this->id."&act=SORT_$i'"; + $sorter= ""; + if ($i == $this->sortColumn){ + $sorter= " ".image("images/lists/sort-".($this->sortDirection[$i]?"up":"down").".png", null, $this->sortDirection[$i]?_("Up"):_("Down")); + } + + if ($this->reorderable) { + $result.= " ".(isset($this->header[$i])?$this->header[$i]:"").""; + } else { + $result.= " ".(isset($this->header[$i])?$this->header[$i]:"")."$sorter"; + } + $first= ""; } if ($action_width) { $result.= ""; @@ -199,21 +248,47 @@ class sortableListing { if (strpos($this->acl, 'r') !== false) { foreach ($this->mapping as $nr => $row) { $editable= $this->editable?" onclick='$(\"edit_".$this->id."_$nr\").click()'":""; - $result.= " \n"; + + $id= ""; + if (isset($this->modes[$row])) { + switch ($this->modes[$row]) { + case LIST_DISABLED: + $id= " sortableListItemDisabled"; + $editable= ""; + break; + case LIST_MARKED: + $id= " sortableListItemMarked"; + break; + } + } + + $result.= " \n"; + $first= " style='border:0'"; + foreach ($this->displayData[$row] as $column) { - $result.= " \n"; + $result.= " ".$column."\n"; + $first= ""; } + if ($action_width) { $result.= ""; } + $result.= " \n"; } - } else { - $result.= " \n"; } + // Add spacer + $result.= " "; + $num= $action_width?$this->columns:$this->columns-1; + for ($i= 0; $i<$num; $i++) { + $result.= ""; + } + $result.= "\n"; + $result.= " \n
".(isset($this->header[$i])?$this->header[$i]:"")." 
".htmlentities($column)."".str_replace('%ID', "edit_".$this->id."_$nr", $edit_image). str_replace('%ID', "del_".$this->id."_$nr", $delete_image)."
\n
\n"; + $result.= " \n"; $result.= " \n"; $result.= " \n"; @@ -237,8 +312,39 @@ class sortableListing { } - function update() + 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]; + } + + // Update mapping according to sort parameters + $this->sortData(); + } + } + } + + + 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) { + return; + } + // Do not do anything if we're not posted - or have no permission if (strpos($this->acl, 'w') !== false && isset($_POST['reorder_'.$this->id])){ @@ -263,11 +369,22 @@ class sortableListing { } // Delete requested? + $this->action = ""; if (strpos($this->acl, 'd') !== false){ foreach ($_POST as $key => $value) { - if (preg_match('/^del_'.$this->id.'_([0-9]+)_x.*$/', $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 + if (isset($this->modes[$this->active_index]) && $this->modes[$this->active_index] == LIST_DISABLED) { + $this->active_index= null; + continue; + } + + // Set action $this->action= "delete"; + + // Remove value if requested if ($this->instantDelete) { $this->deleteEntry($this->active_index); } @@ -278,8 +395,15 @@ class sortableListing { // Edit requested? if (strpos($this->acl, 'w') !== false){ foreach ($_POST as $key => $value) { - if (preg_match('/^edit_'.$this->id.'_([0-9]+)_x.*$/', $key, $matches)) { + if (preg_match('/^edit_'.$this->id.'_([0-9]+)$/', $key, $matches)) { $this->active_index= $this->mapping[$matches[1]]; + + // Ignore request if mode requests it + if (isset($this->modes[$this->active_index]) && $this->modes[$this->active_index] == LIST_DISABLED) { + $this->active_index= null; + continue; + } + $this->action= "edit"; } } @@ -287,7 +411,7 @@ class sortableListing { } - function getAction() + public function getAction() { // Do not do anything if we're not posted if(!isset($_POST['reorder_'.$this->id])) { @@ -306,7 +430,7 @@ class sortableListing { } - function deleteEntry($id) + private function deleteEntry($id) { // Remove mapping $index= array_search($id, $this->mapping); @@ -318,27 +442,94 @@ class sortableListing { } - function getMaintainedData() + public function getMaintainedData() { $tmp= array(); foreach ($this->mapping as $src => $dst) { - $tmp[$src]= $this->data[$dst]; + $tmp[$this->keys[$dst]]= $this->data[$dst]; } return $tmp; } - function isModified() + public function isModified() { return $this->modified; } - function setAcl($acl) + public function setAcl($acl) { $this->acl= $acl; } + + public function sortData() + { + // Extract data + $tmp= array(); + foreach($this->displayData as $item) { + if (isset($item[$this->sortColumn])){ + $tmp[]= $item[$this->sortColumn]; + } else { + $tmp[]= ""; + } + } + + // Sort entries + if ($this->sortDirection[$this->sortColumn]) { + asort($tmp); + } else { + arsort($tmp); + } + + // Adapt mapping accordingly + $this->mapping= array(); + foreach ($tmp as $key => $value) { + $this->mapping[]= $key; + } + } + + + public function addEntry($entry, $displayEntry= null, $key= null) + { + // Only add if not already there + if (!$key) { + if (in_array($entry, $this->data)) { + return; + } + } else { + if (isset($this->data[$key])) { + return; + } + } + + // Prefill with default value if not specified + if (!$displayEntry) { + $displayEntry= array('data' => array($entry)); + } + + // Append to data and mapping + if ($key) { + $this->data[$key]= $entry; + $this->keys[]= $key; + } else { + $this->data[]= $entry; + $this->keys[]= count($this->mapping); + } + $this->displayData[]= $displayEntry['data']; + $this->mapping[]= count($this->mapping); + $this->modified= true; + + // Sort data after we've added stuff + $this->sortData(); + } + + + public function getKey($index) { + return isset($this->keys[$index])?$this->keys[$index]:null; + } + }