Code

Prepared for multiple asterisk servers
[gosa.git] / plugins / admin / fai / class_faiPartitionTableEntry.inc
index 878ffafe935e28c69c6028ff42b2b60cda0c4844..57dc434b95679a64eff5249ca8f921e3196d0669 100644 (file)
@@ -9,36 +9,27 @@ class faiPartitionTableEntry extends plugin
 
   /* attribute list for save action */
   var $ignore_account= TRUE;
-  var $attributes   = array("DISK_cn","DISK_description");
+  var $attributes   = array("DISKcn","DISKdescription");
   var $objectclasses= array();
 
-  var $DISK_cn              = "";
-  var $DISK_description     = "";
+  var $DISKcn              = "";
+  var $DISKdescription     = "";
   
   var $partitions           = array();
   var $UsedAttrs            = array();
-  var $AvailableDiskNames   = array();
   var $is_edit              = false;
   var $old_cn               = "";
   var $status               = "new";
   var $deletePartitions     = array();
 
+  var $FAIstate             = "";
+
   function faiPartitionTableEntry ($config, $dn= NULL,$usedDiskNames=array(),$disk=false)
   {
     plugin::plugin ($config, $dn);
     $this->UsedAttrs  = array("cn","description","FAIpartitionType","FAIpartitionNr","FAIfsType","FAImountPoint","FAIpartitionSize",
                          "FAImountOptions","FAIfsOptions","FAIpartitionFlags");
 
-    /* Generate available disknames, to avoid duplicates in cn */
-    $this->AvailableDiskNames = array();
-    foreach(array("a","b","c","d","e","f","g","h") as $ts){
-      if(!in_array("hd".$ts,$usedDiskNames)){
-        $this->AvailableDiskNames["hd".$ts]= "hd".$ts;
-      }
-    }
-    
-    $this->AvailableDiskNames['disk1']= "disk1";
-    $this->AvailableDiskNames['disk2']= "disk2";
     /* Default status is new */
     $this->status = "new";    
  
@@ -82,16 +73,20 @@ class faiPartitionTableEntry extends plugin
       }
 
       /* Set default attributes */
-      $this->DISK_cn          = $disk['cn'];
-      $this->DISK_description = $disk['description'];
+      $this->DISKcn          = $disk['cn'];
+      $this->DISKdescription = $disk['description'];
       $this->partitions       = $disk['partitions'];
       $this->is_edit          = true;
       $this->old_cn           = $disk['cn'];
     }
   }
 
+
   function execute()
   {
+    /* Call parent execute */
+    plugin::execute();
+
     /* Fill templating stuff */
     $smarty     = get_smarty();
     $s_action   = "";
@@ -115,7 +110,7 @@ class faiPartitionTableEntry extends plugin
      * The number specifies the index we want to delete
      */
     foreach($_POST as $name => $value){
-      if(preg_match("/Delete_.*/",$name)){
+      if((preg_match("/Delete_.*/",$name)) && $this->acl_is_removeable()){
         $tmp = split("_",$name);
         $s_action = "remove";
         $s_entry  = $tmp[1]; 
@@ -126,7 +121,7 @@ class faiPartitionTableEntry extends plugin
      * We must sort the index again, else we possibly got problems 
      * with partitions order.
      */
-    if($s_action == "remove"){
+    if($s_action == "remove" && $this->acl_is_removeable()){
       if($this->partitions[$s_entry]['status'] == "edited"){
         $this->deletePartitions[]= $this->partitions[$s_entry];
         unset($this->partitions[$s_entry]);
@@ -140,11 +135,10 @@ class faiPartitionTableEntry extends plugin
       $this->partitions = $tmp;
     }
 
-
     /* To add a partitions we only append an empty 
      *  array to the already defined partitions.
      */
-    if(isset($_POST['AddPartition'])){
+    if(isset($_POST['AddPartition']) && $this->acl_is_createable()){
       foreach($this->UsedAttrs as $attr){
         $tmp[$attr]                = "";     
       }
@@ -153,10 +147,6 @@ class faiPartitionTableEntry extends plugin
       $this->partitions[count($this->partitions)+1]=$tmp;
     }
 
-    /* Tell smarty which Disknames are available.
-     */
-    $smarty->assign("cns", $this->AvailableDiskNames); 
-    
     /* $setup contains a table with the partitions. 
      */
     $smarty->assign("setup", $this->generateParts());
@@ -164,15 +154,21 @@ class faiPartitionTableEntry extends plugin
       $smarty->assign($attr,$this->$attr);
     }
 
-    /* The user can't change a diskname 
-     *  if we are currently in edit mode for the specified disk 
-     */
-//    if($this->is_edit){
-//      $smarty->assign("DISK_cnACL"," disabled ");
-//    }else{
-      $smarty->assign("DISK_cnACL","");
-//    }
+    $tmp = $this->plInfo();
+    $sacl = "";
+    foreach($tmp['plProvidedAcls'] as $name => $translated){
 
+      $acl = $this->getacl($name);
+      $sacl .= $acl;
+      if($this->FAIstate == "freezed"){
+        $acl = preg_replace("/w/","",$acl);
+      }
+      $smarty->assign($name."ACL",$acl);
+    }
+    $smarty->assign("allowSave",$sacl);
+   
+    $smarty->assign("sub_object_is_createable",$this->acl_is_createable());
     /* Fetch template and show the result
      */
     $display.= $smarty->fetch(get_template_path('faiPartitionTableEntry.tpl', TRUE));
@@ -182,74 +178,123 @@ class faiPartitionTableEntry extends plugin
   function generateParts()
   {
     /* Define Arrays with allowed syntax */
-    $PartitionTypes   = array("primary","logical");
-    $FAIfsTypes       = array("ext2","ext3","xfs","swap","reiserfs","dos fat 16","win fat 32");
+    $PartitionTypes   = array("primary"=>_("primary"),"logical"=>_("logical"));
+    $FAIfsTypes       = array("ext2","ext3","xfs","swap","reiserfs","dosfat16","winfat32");
 
     /* Display Header */
-    $str = "<table>";
-    $str .= "<tr>";
-    $str .= "<td>"._("Nr")."</td>";
-    $str .= "<td>"._("Name")."</td>";
-    $str .= "<td>"._("Description")."</td>";
-    $str .= "<td>"._("Type")."</td>";
-    $str .= "<td>"._("FS type")."</td>";
-    $str .= "<td>"._("Mount point")."</td>";
-    $str .= "<td>"._("Size in MB")."</td>";
-    $str .= "<td>"._("Mount options")."</td>";
-    $str .= "<td>"._("FS option")."</td>";
-    $str .= "<td>"._("Preserve")."</td>";
-    $str .= "<td></td>";
-    $str .= "</tr>";
-
+    $str = "<table summary='' style='width:100%'>";
+    if (count($this->partitions)){
+      $str .= "<tr>";
+      $str .= "<td><b>"._("Type")."</b></td>";
+      $str .= "<td><b>"._("FS type")."</b></td>";
+      $str .= "<td><b>"._("Mount point")."</b></td>";
+      $str .= "<td><b>"._("Size in MB")."</b></td>";
+      $str .= "<td><b>"._("Mount options")."</b></td>";
+      $str .= "<td><b>"._("FS option")."</b></td>";
+      $str .= "<td><b>"._("Preserve")."</b></td>";
+      $str .= "<td>&nbsp;</td>";
+      $str .= "</tr>";
+    }
+    
     /* Walk through all defined partitions.
      * Create a new row for each partition and append it to 
      *  the header defined above.
      * To be able to check the posts later, we append a key to each single postfield. like cn_1 ... cn_2
      */
     foreach($this->partitions as $key => $part){
+      
+      $dis = "";
+      if($part['FAIpartitionFlags'] == "preserve"){
+        $dis = " disabled ";
+      }
+
+      $disableALL = "";
+      if($this->FAIstate =="freeze"){
+        $disableALL = " disabled ";
+      }
+
       if($part['status']!="delete"){
+
         /* Generate Partition select box  
          */
-        $PartitionType = "<select name='FAIpartitionType_".$key."'>";
-        foreach($PartitionTypes as $type){
-          if($part['FAIpartitionType'] == $type){
-            $PartitionType .="<option value='".$type."' selected >".$type."</option>";
-          }else{
-            $PartitionType .="<option value='".$type."'>".$type."</option>";
-          }
-        }        
-        $PartitionType.="</select>";   
+        $PartitionType = "";
+        if($this->acl_is_writeable("FAIpartitionType")){
+          $PartitionType = "<select name='FAIpartitionType_".$key."' id='FAIpartitionType_".$key."' ".$disableALL.">";
+          foreach($PartitionTypes as $type => $PTname){
+            if($part['FAIpartitionType'] == $type){
+              $PartitionType .="<option value='".$type."' selected >".$PTname."</option>";
+            }else{
+              $PartitionType .="<option value='".$type."'>".$PTname."</option>";
+            }
+          }        
+          $PartitionType.="</select>";   
+        }elseif($this->acl_is_readable("FAIpartitionType")){
+          $PartitionType = $part['FAIpartitionType'];
+        }
 
 
         /* Generate fsType select box  
          */
-        $FAIfsType= "<select name='FAIfsType_".$key."'>";
-        foreach($FAIfsTypes as $type){
-          if($part['FAIfsType'] == $type){
-            $FAIfsType  .="<option value='".$type."' selected >".$type."</option>";
+        $FAIfsType= "";
+        if($this->acl_is_writeable("FAIfsType")){
+          $FAIfsType= "<select name='FAIfsType_".$key."' id='FAIfsType_".$key."' ".$dis." ".$disableALL.">";
+          foreach($FAIfsTypes as $type){
+            if($part['FAIfsType'] == $type){
+              $FAIfsType  .="<option value='".$type."' selected >".$type."</option>";
+            }else{
+              $FAIfsType .="<option value='".$type."'>".$type."</option>";
+            }
+          }        
+          $FAIfsType.="</select>";   
+        }elseif($this->acl_is_readable("FAIfsType")){
+          $FAIfsType = $part['FAIfsType'];
+        }
+
+        foreach(array("FAImountPoint","FAIpartitionSize","FAImountOptions","FAIfsOptions") as $attr){
+          $$attr  = "";
+          if($this->acl_is_writeable($attr)){
+            $$attr = "<input name='".$attr."_".$key."'  ".$disableALL."  ".$dis."
+                        value='".$part[$attr]."'    id='".$attr."_".$key."'>";
+
+          }elseif($this->acl_is_readable($attr)){
+            $$attr = $part[$attr];
+          }
+        }
+
+
+        $str .= "\n<tr>";
+        $str .= "\n<td>".$PartitionType."</td>";
+        $str .= "\n<td>".$FAIfsType."</td>";
+        $str .= "\n<td>".$FAImountPoint."</td>";
+        $str .= "\n<td>".$FAIpartitionSize."</td>";
+        $str .= "\n<td>".$FAImountOptions."</td>";
+        $str .= "\n<td>".$FAIfsOptions."</td>";
+
+        $changeState = "onClick=\"changeState('FAImountPoint_".$key."') ; ".
+                                 "changeState('FAIpartitionSize_".$key."') ; ".
+                                 "changeState('FAImountOptions_".$key."') ; ".
+                                 "changeState('FAIfsType_".$key."') ; ".
+                                 "changeState('FAIfsOptions_".$key."') ; \"";
+  
+        if($this->acl_is_writeable("FAIpartitionFlags")){
+          if($part['FAIpartitionFlags']!=false){
+            $str .= "\n<td><input type='checkbox' name='FAIpartitionFlags_".$key."' value='preserve' checked ".$changeState." ".$disableALL."></td>";
           }else{
-            $FAIfsType .="<option value='".$type."'>".$type."</option>";
+            $str .= "\n<td><input type='checkbox' name='FAIpartitionFlags_".$key."' value='preserve' ".$changeState." ".$disableALL."></td>";
           }
-        }        
-        $FAIfsType.="</select>";   
-
-        $str .= "<tr>";
-        $str .= "<td>".($key)."</td>";
-        $str .= "<td><input name='cn_".$key."'                value='".$part['cn']."'               maxlength='8' style='width:80px;'></td>";
-        $str .= "<td><input name='description_".$key."'       value='".$part['description']."'      maxlength='8' style='width:80px;'></td>";
-        $str .= "<td>".$PartitionType."</td>";
-        $str .= "<td>".$FAIfsType."</td>";
-        $str .= "<td><input name='FAImountPoint_".$key."'     value='".$part['FAImountPoint']."'    ></td>";
-        $str .= "<td><input name='FAIpartitionSize_".$key."'  value='".$part['FAIpartitionSize']."' style='width:200px;'></td>";
-        $str .= "<td><input name='FAImountOptions_".$key."'   value='".$part['FAImountOptions']."'  style='width:100px;'></td>";
-        $str .= "<td><input name='FAIfsOptions_".$key."'      value='".$part['FAIfsOptions']."'     style='width:100px;'></td>";
-        if($part['FAIpartitionFlags']!=false){
-          $str .= "<td><input type='checkbox' name='FAIpartitionFlags_".$key."' value='preserve' checked></td>";
         }else{
-          $str .= "<td><input type='checkbox' name='FAIpartitionFlags_".$key."' value='preserve'></td>";
+          if($part['FAIpartitionFlags']!=false){
+            $str .= "<td>"._("False")."</td>";
+          }else{
+            $str .= "<td>"._("True")."</td>";
+          }
+        }
+        if($this->acl_is_removeable()){
+          $str .= "\n<td><input type='submit' name='Delete_".$key."' value='"._("Remove")."' ".$disableALL."></td>";    
+        }else{
+          $str .= "\n<td><input type='submit' name='restricted' disabled value='"._("Remove")."'></td>";    
         }
-        $str .= "<td><input type='submit' name='Delete_".$key."' value='"._("Remove")."'></td>";
-        $str .= "</tr>";    
+        $str .= "\n</tr>";    
       }
     }
     $str.="</table>";
@@ -257,25 +302,54 @@ class faiPartitionTableEntry extends plugin
 
   }
 
+  function save()
+  {
+    $tmp = array();
+    $tmp['cn']          = $this->DISKcn;
+
+    /* Attach partitions */
+    foreach($this->partitions as $key=>$val) {
+      $this->partitions[$key]['FAIpartitionNr']=$key;
+    }
+
+    /* Attach deleted */
+    foreach($this->deletePartitions as $key=>$val) {
+      $this->partitions[$key."-delete"]=$val;
+      $this->partitions[$key."-delete"]['status']="delete";
+    }
+
+    $tmp['description'] = $this->DISKdescription;
+    $tmp['partitions']  = $this->partitions;
+    $tmp['status']      = $this->status;
+
+    /* If hdd name has changed, tell partitionTable to rename it */
+    if(($this->is_edit)&&($this->old_cn != $this->DISKcn)){
+      $tmp['rename']['from']  = $this->old_cn;
+      $tmp['rename']['to']    = $this->DISKcn;
+    }
+    return($tmp);
+  }
+
+
   /* Save data to object */
   function save_object()
   {
-    if(isset($_POST['TableEntryFrameSubmitted'])){
+
+
+    if((isset($_POST['TableEntryFrameSubmitted'])) && ($this->FAIstate != "freeze") ){
+    print_a($_POST);
       plugin::save_object();
 
-      /* Check base attributes */
-      foreach($this->attributes as $attrs){
-        if(isset($_POST[$attrs])){
-          $this->$attrs = $_POST[$attrs];
-        }
-      }
-     
       foreach($this->partitions as $key => $part){
         foreach($this->UsedAttrs as $attrs){
-          if(isset($_POST[$attrs."_".$key])){
-            $this->partitions[$key][$attrs] = $_POST[$attrs."_".$key];
-          }else{
-            $this->partitions[$key][$attrs] = false;
+
+          if($this->acl_is_writeable($attrs)){
+
+            if(isset($_POST[$attrs."_".$key])){
+              $this->partitions[$key][$attrs] = $_POST[$attrs."_".$key];
+            }else{
+              $this->partitions[$key][$attrs] = false;
+            }
           }
         }
       }
@@ -286,19 +360,14 @@ class faiPartitionTableEntry extends plugin
   /* Check supplied data */
   function check()
   {
-    $message= array();
-   
-    /* Check descriptions 
-     */ 
-    if(empty($this->DISK_description)){
-      $message[] = _("Please enter a description for your disk.");
-    }
-
-    $str = utf8_encode("üöä");
-    if(preg_match("/[^a-z0-9".$str."\.,;:\-_\? ]/i",$this->DISK_description)){
-      $message[]=_("Please enter a valid description.");
+    /* Call common method to give check the hook */
+    $message= plugin::check();
+  
+    /* Check for an empty disk name */
+    if(empty($this->DISKcn)){
+      $message[] = _("Please specify a valid disc name.");
     }
-    
+       
     /* check every partition.
      * if there is an invalid value defined, append an errorstr to message
      */
@@ -310,140 +379,101 @@ class faiPartitionTableEntry extends plugin
     }      
 
     foreach($this->partitions as $key => $part){
-    
-      if((empty($part['cn']))||(preg_match("/[^0-9a-z]/",$part['cn']))){
-        $message[]=sprintf(_("Please enter a valid name for partition %s."),($key));
-      }
-
-      if(in_array($part['cn'],$alreadyUsed['cn'])){
-        $message[]=sprintf(_("please enter a unique name for partition %s"),($key));
+  
+      /* Skip all checks, if preserve is set */ 
+      if($part['FAIpartitionFlags'] == "preserve"){
+        $this->partitions[$key]['FAIfsType']        = "preserve";
+        $this->partitions[$key]['FAIpartitionSize'] = "preserve";
+        continue;
       }
-    
-      if(in_array($part['FAImountPoint'],$alreadyUsed['FAImountPoint'])){
+      if((in_array($part['FAImountPoint'],$alreadyUsed['FAImountPoint']))&&($part['FAIfsType']!="swap")){
         $message[]=sprintf(_("please enter a unique mount point for partition %s"),($key));
       }
 
-      if(empty($part['description'])){
-        $message[]=sprintf(_("Please enter a valid description for partition %s." ),($key));
-      }
-
-      if((empty($part['FAImountPoint']))||(!((preg_match("/^\/.*/",$part['FAImountPoint']))||(preg_match("/^swap$/",$part['FAImountPoint']))))){
-        $message[]=sprintf(_("Please enter a valid mount point for partition %s." ),($key));
+      if($part['FAIfsType']!="swap"){
+        if((empty($part['FAImountPoint']))||(!((preg_match("/^\/.*/",$part['FAImountPoint']))||(preg_match("/^swap$/",$part['FAImountPoint']))))){
+          $message[]=sprintf(_("Please enter a valid mount point for partition %s." ),($key));
+        }
       }
-
       if($part['FAIfsType'] == "swap"){
         if(in_array($part['FAIfsType'],$alreadyUsed['FAIfsType'])){
           $message[]=sprintf(_("File system type 'swap' is already used, change file system type for partition %s."),$key);
         }
       }
+      if(($part['FAIfsType'] == "swap")&&(!empty($part['FAImountPoint']))&&($part['FAImountPoint']!="swap")){
+        $message[]=_("Please use 'swap' as mount point, if 'swap' is used as fs-type.");
+      }
 
       $tmp = split("-",$part['FAIpartitionSize']);
-      if(count($tmp)!=2){
-        $message[]=sprintf(_("Please enter a range for partition size, 'from-to', for partition %s."),($key));
-      }elseif((!is_numeric($tmp[0]))||(!is_numeric($tmp[1]))){
-        $message[]=sprintf(_("Please enter a valid range for partition %s."),($key)); 
-      }elseif($tmp[0]>=$tmp[1]){
-        $message[]=sprintf(_("Please enter a valid range for partition %s."),($key));
-      }elseif($this->checkSize($part['FAIpartitionSize'],$alreadyUsed['FAIpartitionSize'],$key)){
-        $message[]=$this->checkSize($part['FAIpartitionSize'],$alreadyUsed['FAIpartitionSize'],$key);
+      switch (count($tmp)){
+        case 0:
+                $message[]= sprintf(_("Please enter a valid partition size for partition %s."),($key));
+                break;
+        case 1:
+                if (!is_id(is_id($tmp[0]))){
+                  $message[]= sprintf(_("Please enter a valid partition size for partition %s."),($key));
+                }
+                break;
+                
+        case 2:
+                if((!is_id($tmp[0]))||(!is_id($tmp[1]))){
+                  $message[]=sprintf(_("Please enter a valid range for partition %s."),($key)); 
+                }elseif($tmp[0]>=$tmp[1]){
+                  $message[]=sprintf(_("Please enter a valid range for partition %s."),($key));
+                }
+                break;
+
+        default:
+                $message[]=sprintf(_("Please enter a range for partition size for partition %s."),($key));
       }
+
       foreach($this->UsedAttrs as $attrs){
         $alreadyUsed[$attrs][$key] = $part[$attrs];
       }      
     }
 
-
-    /* Only show 5 errors */
     $cnt = 0;
-    if(count($message)>5){
-      foreach($message as $msg){
-        if($cnt < 5){
-          $tmp2[]=$msg;
-        }
-        $cnt ++;
+    foreach($this->partitions as $key => $part){
+      if($part['FAIpartitionType'] == "primary"){
+        $cnt ++ ; 
       }
-    $tmp2[] = "...";
-    $message = $tmp2;
+    }
+    if($cnt > 3){
+      $message[] = _("You have more than 3 primary partition table entries in your configuration, please check your configuration twice.");
     }
 
     return ($message);
   }
 
-  /* This function checks the selected partition sizes 
-   * If a size setting overlap with another, it returns an error msg
-   */ 
-  function checkSize($current,$others,$ckey){
-    $tmp = split("-",$current);
-    $from = $tmp[0];
-    $to   = $tmp[1];
-    foreach($others as $key=> $other){
-      $tmp  = split("-",$other);
-      $oth_from = $tmp[0];
-      $oth_to   = $tmp[1];
-      /* surrounds another entry */
-      if( (($from <= $oth_from)&&($to >= $oth_to))||    // inside
-          (($from >= $oth_from)&&($to <= $oth_to))||    // outside
-          (($to >= $oth_from)&&($to <= $oth_to))  ||    // overlap at right
-          (($from >= $oth_from)&&($from <= $oth_to)) ){ // overlap left
-        $message =sprintf( _("Size settings for partition %s, overlap with size settings for partition %s."),$ckey,$key);
-        return($message);
-      }
-    }
-    return(false);
-  }
   
-  function save()
-  {
-    /* This function returns the new or edited disk with its partitions.
-     * If the disk was edited and not a new one, we reset the name of the disk
-     *  to keep the correct index.
-     */
-
-    /* Check partition rename
-    */
-    foreach($this->partitions as $key => $part){
-      if($part['cn'] != $part['old_cn']){
-        if($part['status'] == "edited"){
-
-          $tmp          = $part;
-          $tmp['status']= "delete";
-          $tmp['cn']    = $part['old_cn'];
 
-          $this->deletePartitions[] = $tmp;
-        }
-        $this->partitions[$key]['old_cn']=$part['cn'];
-        $this->partitions[$key]['status']="new";
-      }
-    }
-
-    $tmp = array();
-    $tmp['cn']          = $this->DISK_cn;
-    /* Attach partitions */ 
-    foreach($this->partitions as $key=>$val) {
-      $this->partitions[$key]['FAIpartitionNr']=$key;
-    }
-
-    /* Attach deleted */ 
-    foreach($this->deletePartitions as $key=>$val) {
-      $this->partitions[$key."-delete"]=$val;
-      $this->partitions[$key."-delete"]['status']="delete";
-    } 
-    $tmp['description'] = $this->DISK_description;
-    $tmp['partitions']  = $this->partitions;
-    $tmp['status']      = $this->status;
-
-    /* If hdd name has changed, tell partitionTable to rename it */
-    if(($this->is_edit)&&($this->old_cn != $this->DISK_cn)){
-      $tmp['rename']['from']  = $this->old_cn;    
-      $tmp['rename']['to']    = $this->DISK_cn;    
-    }
-
-    return($tmp);
+  /* Return plugin informations for acl handling */
+  function plInfo()
+  {
+    return (array(
+          "plShortName" => _("Partition table entry"),
+          "plDescription" => _("FAI partition table entry"),
+          "plSelfModify"  => FALSE,
+          "plDepends"     => array(),
+          "plPriority"    => 27,
+          "plSection"     => array("administration"),
+          "plCategory"    => array("fai"),
+          "plProvidedAcls" => array(
+            "DISKcn"           => _("Name"),
+            "DISKdescription"  => _("Description"),
+            "FAIpartitionType"  => _("Partition type"),
+            "FAIpartitionNr"    => _("Partition no."),
+            "FAIfsType"         => _("File system type"),
+            "FAImountPoint"     => _("Mount point"),
+            "FAIpartitionSize"  => _("Partition size"),
+            "FAImountOptions"   => _("Mount options"),
+            "FAIfsOptions"      => _("File system options"),
+            "FAIpartitionFlags" => _("Partition flags"))
+          ));
   }
 
 }
 
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: