Code

Added base check
[gosa.git] / gosa-core / include / class_sortableListing.inc
index c81faeb5b305f6cbd7c7dcbc9fdfb06867b3c863..a30758ebc3c3ccba455edc2e079eeecb61530b65 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /*
  * This code is part of GOsa (http://www.gosa-project.org)
- * Copyright (C) 2003-2008 GONICUS GmbH
+ * Copyright (C) 2003-2010 GONICUS GmbH
  *
  * ID: $$Id$$
  *
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
+define ('LIST_NORMAL', 0);
+define ('LIST_MARKED', 1);
+define ('LIST_DISABLED', 2);
+
 class sortableListing {
   private $header= null;
   private $colspecs= null;
@@ -30,13 +34,15 @@ class sortableListing {
   private $id;
 
   private $data= array();
+  private $keys= array();
+  private $modes= array();
   private $displayData= array();
   private $columns= 0;
   private $deleteable= false;
   private $editable= false;
+  private $colorAlternate= false;
   private $instantDelete= true;
   private $action;
-  private $targets;
   private $mapping;
   private $current_mapping;
   private $active_index;
@@ -52,15 +58,7 @@ class sortableListing {
     global $config;
 
     // Save data to display
-    $this->setData($data);
-    if (!$displayData) {
-      $displayData= array();
-      foreach ($data as $value) {
-        $displayData[]= array($value);
-      }
-    } else {
-      $this->setDisplayData($displayData);
-    }
+    $this->setListData($data, $displayData);
 
     // Generate instance wide unique ID
     $tmp= gettimeofday();
@@ -74,6 +72,20 @@ class sortableListing {
   }
 
 
+  public function setListData($data, $displayData= null)
+  {
+    // Save data to display
+    $this->setData($data);
+    if (!$displayData) {
+      $displayData= array();
+      foreach ($data as $key => $value) {
+        $displayData[$key]= array("data" => array($value));
+      }
+    }
+    $this->setDisplayData($displayData);
+  }
+
+
   private function setData($data)
   {
     $this->data= $data;
@@ -87,10 +99,18 @@ class sortableListing {
     }
 
     // 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
@@ -121,6 +141,12 @@ class sortableListing {
   }
 
 
+  public function setColorAlternate($flag)
+  {
+    $this->colorAlternate= $flag;
+  }
+
+
   public function setEditable($flag)
   {
     $this->editable= $flag;
@@ -159,8 +185,8 @@ class sortableListing {
 
   public function render()
   {
-    $result= "<div class='sortableListContainer' id='scroll_".$this->id."' style='width: ".$this->width."; height: ".$this->height."'>\n";
-    $result.= "<table border='0' cellpadding='0' cellspacing='0' width='100%' height='100%' style='position: relative;'".(!empty($this->cssclass)?" class='".$this->cssclass."'":"").">\n";
+    $result= "<div class='sortableListContainer' id='scroll_".$this->id."' style='min-width:".$this->width.";height: ".$this->height."'>\n";
+    $result.= "<table border='0' cellpadding='0' cellspacing='0' width='100%' height='100%' ".(!empty($this->cssclass)?" class='".$this->cssclass."'":"").">\n";
     $action_width= 0;
     if (strpos($this->acl, 'w') === false) {
       $edit_image= $this->editable?"<img class='center' src='images/lists/edit-grey.png' alt='"._("Edit")."'>":"";
@@ -178,12 +204,12 @@ class sortableListing {
     if ($this->colspecs) {
       $result.= " <colgroup>\n";
       for ($i= 0; $i<$this->columns; $i++) {
-        $result.= "  <col width='".(isset($this->colspecs[$i])?$this->colspecs[$i]:"*")."'/>\n";
+        $result.= "  <col style='width:".(isset($this->colspecs[$i])?$this->colspecs[$i]:"*")."'/>\n";
       }
 
       // Extend by another column if we've actions specified
       if ($action_width) {
-        $result.= "  <col width='$action_width'/>\n";
+        $result.= "  <col style='width:".$action_width."px'/>\n";
       }
       $result.= " </colgroup>\n";
     }
@@ -191,6 +217,7 @@ class sortableListing {
     // Do we need a header?
     if ($this->header) {
       $result.= " <thead>\n  <tr>\n";
+      $first= " style='border:0'";
       for ($i= 0; $i<$this->columns; $i++) {
         $link= "href='?plug=".$_GET['plug']."&amp;PID=".$this->id."&amp;act=SORT_$i'";
         $sorter= "";
@@ -199,10 +226,11 @@ class sortableListing {
         }
 
         if ($this->reorderable) {
-          $result.= "   <th>".(isset($this->header[$i])?$this->header[$i]:"")."</th>";
+          $result.= "   <th$first>".(isset($this->header[$i])?$this->header[$i]:"")."</th>";
         } else {
-          $result.= "   <th><a $link>".(isset($this->header[$i])?$this->header[$i]:"")."$sorter</a></th>";
+          $result.= "   <th$first><a $link>".(isset($this->header[$i])?$this->header[$i]:"")."$sorter</a></th>";
         }
+        $first= "";
       }
       if ($action_width) {
         $result.= "<th>&nbsp;</th>";
@@ -216,20 +244,45 @@ class sortableListing {
     if (strpos($this->acl, 'r') !== false) {
       foreach ($this->mapping as $nr => $row) {
         $editable= $this->editable?" onclick='$(\"edit_".$this->id."_$nr\").click()'":"";
-        $result.= "  <tr class='sortableListItem".($nr&1?'Odd':'')."' id='item_".$this->id."_$nr'$reorderable>\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.= "  <tr class='sortableListItem".((($nr&1)||!$this->colorAlternate)?'':'Odd')."$id' id='item_".$this->id."_$nr'$reorderable>\n";
+        $first= " style='border:0'";
+
         foreach ($this->displayData[$row] as $column) {
-          $result.= "   <td$editable>".htmlentities($column)."</td>\n";
+          $result.= "   <td$editable$first>".$column."</td>\n";
+          $first= "";
         }
+
         if ($action_width) {
           $result.= "<td>".str_replace('%ID', "edit_".$this->id."_$nr", $edit_image).
                            str_replace('%ID', "del_".$this->id."_$nr", $delete_image)."</td>";
         }
+
         $result.= "  </tr>\n";
       }
-    } else {
-      $result.= "  <tr class='sortableListItem' style='height:100%'></tr>\n";
     }
 
+    // Add spacer
+    $result.= "  <tr class='sortableListItemFill' style='height:100%'><td style='border:0'></td>";
+    $num= $action_width?$this->columns:$this->columns-1;
+    for ($i= 0; $i<$num; $i++) {
+      $result.= "<td class='sortableListItemFill'></td>";
+    }
+    $result.= "</tr>\n";
+
     $result.= " </tbody>\n</table>\n</div>\n";
     $result.= " <input type='hidden' name='PID' value='".$this->id."' id='PID'>\n";
     $result.= " <input type='hidden' name='position_".$this->id."' id='position_".$this->id."'>\n";
@@ -278,6 +331,15 @@ class sortableListing {
         $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])){
@@ -307,7 +369,17 @@ class sortableListing {
       foreach ($_POST as $key => $value) {
         if (preg_match('/^del_'.$this->id.'_([0-9]+)_x.*$/', $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);
           }
@@ -320,6 +392,13 @@ class sortableListing {
       foreach ($_POST as $key => $value) {
         if (preg_match('/^edit_'.$this->id.'_([0-9]+)_x.*$/', $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";
         }
       }
@@ -363,7 +442,7 @@ class sortableListing {
     $tmp= array();
 
     foreach ($this->mapping as $src => $dst) {
-      $tmp[$src]= $this->data[$dst];
+      $tmp[$this->keys[$dst]]= $this->data[$dst];
     }
 
     return $tmp;
@@ -408,4 +487,44 @@ class sortableListing {
     }
   }
 
+
+  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;
+  }
+
 }