summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 80445b3)
raw | patch | inline | side by side (parent: 80445b3)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 10 Jul 2009 10:18:21 +0000 (10:18 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 10 Jul 2009 10:18:21 +0000 (10:18 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13921 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/fai/admin/fai/class_FAI.inc | patch | blob | history | |
gosa-plugins/fai/admin/fai/class_faiDiskEntry.inc | [new file with mode: 0644] | patch | blob |
gosa-plugins/fai/admin/fai/class_faiPartitionTable.inc | patch | blob | history | |
gosa-plugins/fai/admin/fai/faiDiskEntry.tpl | [new file with mode: 0644] | patch | blob |
index 1123681049897bb186f1f014d1405c3356808b94..78861fb18e299995febf183880edc0e8d011f9c0 100644 (file)
foreach($deps_to_search as $fai_base){
/* Ldap search for fai classes specified in this release */
- $attributes = array("dn","objectClass","FAIstate","cn","FAIdiskType","FAIlvmDevice");
+ $attributes = array("dn","objectClass","FAIstate","cn","FAIdiskType","FAIlvmDevice","FAIdiskOption");
$res_tmp = get_list($filter,"fai",$fai_base,$attributes,GL_SUBSEARCH | GL_SIZELIMIT);
/* check the returned objects, and add/replace them in our return variable */
$buffer['FAIdiskType'] = "old";
}
+ if(isset($attr['FAIdiskOption'])){
+ $buffer['FAIdiskOption'] = $attr['FAIdiskOption'];
+ } else {
+ $buffer['FAIdiskOption'] = null;
+ }
if(isset($attr['FAIlvmDevice'])){
$buffer['FAIlvmDevice'] = $attr['FAIlvmDevice'];
}
diff --git a/gosa-plugins/fai/admin/fai/class_faiDiskEntry.inc b/gosa-plugins/fai/admin/fai/class_faiDiskEntry.inc
--- /dev/null
@@ -0,0 +1,493 @@
+<?php
+
+class faiDiskEntry extends plugin
+{
+ /* attribute list for save action */
+ var $ignore_account= TRUE;
+ var $attributes = array("DISKcn","DISKdescription");
+ var $objectclasses= array();
+
+ var $DISKcn = "";
+ var $DISKdescription = "";
+
+ var $partitions = array();
+ var $UsedAttrs = array();
+ var $is_edit = false;
+ var $old_cn = "";
+ var $status = "new";
+ var $deletePartitions = array();
+
+ var $FAIstate = "";
+
+ function faiDiskEntry (&$config, $dn= NULL,$usedDiskNames=array(),$disk=false)
+ {
+ plugin::plugin ($config, $dn);
+ $this->UsedAttrs = array("cn","description","FAIpartitionType","FAIpartitionNr","FAIfsType","FAImountPoint","FAIpartitionSize",
+ "FAImountOptions","FAIfsOptions","FAIpartitionFlags");
+
+ /* Default status is new */
+ $this->status = "new";
+
+ /* We want to edit an entry */
+ if($disk){
+
+ /* Set disk status */
+ $this->status = $disk['status'];
+
+ /* Walk through partitions */
+ foreach($disk['partitions'] as $name => $values){
+
+ /* If a partition is already marked as delete, attach it to deletePartitions only. */
+ if($values['status'] == "delete"){
+ unset($disk['partitions'][$name]);
+ $this->deletePartitions[]=$values;
+ }else{
+
+ /* Set status, to know which partition must be deleted from ldap
+ new : Neu partition entry // save
+ edited : Update partition entry in ldap
+ deleted: Remove partition from ldap
+ */
+
+ /* If status is not new, set to edit mode.
+ * New means that this partition currently wasn't saved to ldap.
+ */
+ if($disk['partitions'][$name]['status']!="new"){
+ $disk['partitions'][$name]['status']="edited";
+ }
+
+ $disk['partitions'][$name]['old_cn']= $disk['partitions'][$name]['cn'];
+
+ /* Assign empty attributes, if attribute is missing */
+ foreach($this->UsedAttrs as $attr){
+ if(!isset($values[$attr])){
+ $disk['partitions'][$name][$attr]="";
+ }
+ }
+
+ if (preg_match('/^_/', $disk['partitions'][$name]['FAIfsType'])){
+ $disk['partitions'][$name]['FAIfsType']= preg_replace('/^_/', '', $disk['partitions'][$name]['FAIfsType']);
+ }
+ }
+ }
+
+ /* Set default attributes */
+ $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 = "";
+ $s_entry = "";
+ $display = "";
+
+ /* Assign values
+ * And Checkbox selection
+ */
+ foreach($this->attributes as $attrs){
+ $smarty->assign($attrs,$this->$attrs);
+ if($this->$attrs){
+ $smarty->assign($attrs."CHK"," ");
+ }else{
+ $smarty->assign($attrs."CHK"," disabled ");
+ }
+ }
+
+ /* Check all Posts if there is something usefull for us,
+ * For example : Delete is posted as Delete_1
+ * The number specifies the index we want to delete
+ */
+ foreach($_POST as $name => $value){
+ if((preg_match("/Delete_.*/",$name)) && $this->acl_is_removeable() && !preg_match("/freeze/i",$this->FAIstate)){
+ $tmp = split("_",$name);
+ $s_action = "remove";
+ $s_entry = $tmp[1];
+ }
+ }
+
+ /* To remove a partition we unset the index posted.
+ * We must sort the index again, else we possibly got problems
+ * with partitions order.
+ */
+ if($s_action == "remove" && $this->acl_is_removeable() && !preg_match("/freeze/i",$this->FAIstate)){
+ if($this->partitions[$s_entry]['status'] == "edited"){
+ $this->deletePartitions[$s_entry]= $this->partitions[$s_entry];
+ $this->deletePartitions[$s_entry]['FAIpartitionNr']=$s_entry;
+ unset($this->partitions[$s_entry]);
+ }else{
+ unset($this->partitions[$s_entry]);
+ }
+ $tmp= array();
+ foreach($this->partitions as $part){
+ $tmp[count($tmp)+1]=$part;
+ }
+ $this->partitions = $tmp;
+ }
+
+ /* To add a partitions we only append an empty
+ * array to the already defined partitions.
+ */
+ if(isset($_POST['AddPartition']) && $this->acl_is_createable() && !preg_match("/freeze/i",$this->FAIstate)){
+ foreach($this->UsedAttrs as $attr){
+ $tmp[$attr] = "";
+ }
+ $tmp["old_cn"] = "";
+ $tmp['status']="new";
+ $this->partitions[count($this->partitions)+1]=$tmp;
+ }
+
+ /* $setup contains a table with the partitions.
+ */
+ $smarty->assign("setup", $this->generateParts());
+ foreach($this->attributes as $attr){
+ $smarty->assign($attr,$this->$attr);
+ }
+
+ $tmp = $this->plInfo();
+ $sacl = "";
+ foreach($tmp['plProvidedAcls'] as $name => $translated){
+ $acl = $this->getacl($name, preg_match("/freeze/i",$this->FAIstate));
+ $smarty->assign($name."ACL",$acl);
+ }
+
+ $smarty->assign("sub_object_is_createable",$this->acl_is_createable());
+ $smarty->assign("freeze",preg_match("/freeze/i",$this->FAIstate));
+
+ // Fill boxes
+ $smarty->assign("fstabkeys", array("device" => _("Device"), "label" => _("Label"), "uuid" => _("UUID")));
+ $smarty->assign("disklabels", array("msdos" => "MSDOS", "gpt" => "GPT"));
+ $smarty->assign("fstabkey", "device");
+ $smarty->assign("disklabel", "msdos");
+
+ /* Fetch template and show the result
+ */
+ $display.= $smarty->fetch(get_template_path('faiDiskEntry.tpl', TRUE));
+ return($display);
+ }
+
+ function generateParts()
+ {
+ /* Define Arrays with allowed syntax */
+ $PartitionTypes = array("primary"=>_("primary"),"logical"=>_("logical"));
+ $FAIfsTypes = array("ext2","ext3","xfs","swap","reiser","dosfat16","winfat32");
+
+ /* Display Header */
+ $str = "";
+ 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> </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 (preg_match("/freeze/", $this->FAIstate)){
+ $disableALL = " disabled ";
+ }
+
+ if($part['status']!="delete"){
+
+ /* Generate Partition select box
+ */
+ $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= "";
+ 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{
+ $str .= "\n<td><input type='checkbox' name='FAIpartitionFlags_".$key."' value='preserve' ".$changeState." ".$disableALL."></td>";
+ }
+ }else{
+ 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 .= "\n</tr>";
+ }
+ }
+
+ if(!empty($str)){
+ $str = "<table summary='' style='width:100%'>".$str."</table>";
+ }
+ return($str);
+
+ }
+
+ 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'])) && !preg_match("/freeze/", $this->FAIstate) ){
+ plugin::save_object();
+
+ foreach($this->partitions as $key => $part){
+ foreach($this->UsedAttrs as $attrs){
+
+ if($this->acl_is_writeable($attrs)){
+
+ if(isset($_POST[$attrs."_".$key])){
+ $this->partitions[$key][$attrs] = $_POST[$attrs."_".$key];
+ }else{
+ $this->partitions[$key][$attrs] = false;
+ }
+ }
+ }
+
+ /* Adapt ext3 to have -j option */
+ if ($this->partitions[$key]["FAIfsType"] == "ext3") {
+ $this->partitions[$key]["FAIfsOptions"]= preg_replace('/\s*-j\s*/', '', $this->partitions[$key]["FAIfsOptions"]);
+ $this->partitions[$key]["FAIfsOptions"]= "-j ".$this->partitions[$key]["FAIfsOptions"];
+ }
+ }
+
+ }
+ }
+
+
+ /* Check supplied data */
+ function check()
+ {
+ /* Call common method to give check the hook */
+ $message= plugin::check();
+
+ /* Check for an empty disk name */
+ $d = trim($this->DISKcn);
+ if($d == "" ){
+ $message[] = msgPool::required(_("Name"));
+ }
+ if(preg_match("/[^a-z0-9_\-]/i",$d)){
+ $message[] = msgPool::invalid(_("Name"),$d,"/[a-z0-9_\-]/i");
+ }
+
+ /* check every partition.
+ * if there is an invalid value defined, append an errorstr to message
+ */
+
+ /* Array that contain every partitionname mountpoint etc already assigned */
+ $alreadyUsed = array();
+ foreach($this->UsedAttrs as $attrs){
+ $alreadyUsed[$attrs] = array();
+ }
+
+ foreach($this->partitions as $key => $part){
+
+ /* 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']))&&($part['FAIfsType']!="swap")){
+ $message[]=sprintf(_("please enter a unique mount point for partition %s"),($key));
+ }
+
+ if($part['FAIfsType']!="swap" && $part['FAImountPoint'] != "-"){
+ if((empty($part['FAImountPoint']))||(!((preg_match("/^\/.*/",$part['FAImountPoint']))||(preg_match("/^swap$/",$part['FAImountPoint']))))){
+ $message[]= msgPool::invalid(sprintf(_("partition %s mount point"),$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']);
+ switch (count($tmp)){
+ case 0:
+ $message[]= msgPool::invalid(sprintf(_("partition %s size"),$key));
+ break;
+ case 1:
+ if (!tests::is_id($tmp[0]) &&(!empty($tmp[1]))){
+ $message[]= msgPool::invalid(sprintf(_("partition %s size"),$key));
+ }
+ break;
+
+ case 2:
+ if( !tests::is_id($tmp[0]) && !tests::is_id($tmp[1]) && !empty($tmp[1]) ){
+ $message[]= msgPool::invalid(sprintf(_("partition %s size"),$key));
+ }elseif(!empty($tmp[1]) && $tmp[0]>=$tmp[1]){
+ $message[]= msgPool::invalid(sprintf(_("partition %s size"),$key));
+ }
+ break;
+
+ default:
+ $message[]= msgPool::invalid(sprintf(_("partition %s size"),$key));
+ }
+
+ foreach($this->UsedAttrs as $attrs){
+ $alreadyUsed[$attrs][$key] = $part[$attrs];
+ }
+ }
+
+ $cnt = 0;
+ foreach($this->partitions as $key => $part){
+ if($part['FAIpartitionType'] == "primary"){
+ $cnt ++ ;
+ }
+ }
+ if($cnt > 3){
+ $message[] = _("You have more than 3 primary partition table entries in your configuration, please check your configuration twice.");
+ }
+
+ return ($message);
+ }
+
+
+
+ /* Return plugin informations for acl handling */
+ static 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"),
+ "DISKFAIdiskOption" => _("Disk options"),
+ "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:
+?>
diff --git a/gosa-plugins/fai/admin/fai/class_faiPartitionTable.inc b/gosa-plugins/fai/admin/fai/class_faiPartitionTable.inc
index de7f3cdc677b95965feefe80d7491b0fee03e13c..83d24b2bbc2b9d14a500318f4d0d17875bbf0f87 100644 (file)
// Transform disk type into image later...
if (!isset($obj['FAIdiskType'])){
- $objects['type'] = "old";
+ $objects['FAIdiskType'] = "old";
} else {
- $objects['type'] = $obj['FAIdiskType'];
+ $objects['FAIdiskType'] = $obj['FAIdiskType'];
}
+ $objects['FAIdiskOption'] = $obj['FAIdiskOption'];
// Transform potential lvm information
if (isset($obj['FAIlvmDevice'])){
- $objects['vg'] = $obj['FAIlvmDevice'];
+ $objects['FAIlvmDevice'] = $obj['FAIlvmDevice'];
}
$objects['dn'] = $obj['dn'];
foreach($this->disks as $key=>$disk){
$usedDiskNames[]= $key;
}
- $this->dialog = new faiPartitionTableEntry($this->config,$this->dn,$usedDiskNames);
+ if ($this->FAIpartitionMethod == "setup-storage") {
+ $this->dialog = new faiDiskEntry($this->config,$this->dn,$usedDiskNames);
+ } else {
+ $this->dialog = new faiPartitionTableEntry($this->config,$this->dn,$usedDiskNames);
+ }
$this->dialog->set_acl_base($this->acl_base_for_current_object($this->dn));
$this->dialog->set_acl_category("fai");
$this->dialog->FAIstate = $this->FAIstate;
}
// Used by volgroup?
- if (isset($this->disks[$name]["vg"])){
- foreach ($this->disks[$name]["vg"] as $vg_element) {
+ if (isset($this->disks[$name]["FAIlvmDevice"])){
+ foreach ($this->disks[$name]["FAIlvmDevice"] as $vg_element) {
if (preg_match("/^${device}\.?[0-9]+$/", $vg_element)){
$ignore = true;
break 2;
$dn = "new";
}
- $this->dialog = new faiPartitionTableEntry($this->config,$this->dn,$usedDiskNames,$this->disks[$Udisk]);
+ if ($this->FAIpartitionMethod == "setup-storage") {
+ $this->dialog = new faiDiskEntry($this->config,$this->dn,$usedDiskNames,$this->disks[$Udisk]);
+ } else {
+ $this->dialog = new faiPartitionTableEntry($this->config,$this->dn,$usedDiskNames,$this->disks[$Udisk]);
+ }
$this->dialog->set_acl_base($this->acl_base_for_current_object($dn));
$this->dialog->set_acl_category("fai");
$this->dialog->FAIstate = $this->FAIstate;
$edit_link = "<a href='?plug=".$_GET['plug']."&act=edit&id=".$key."'>".$key."</a>";
$types= array("old" => "plugins/fai/images/fai_partitionTable.png", "disk" => "plugins/fai/images/fai_partitionTable.png",
"raid" => "plugins/fai/images/raid.png", "lvm" => "plugins/ogroups/images/list_ogroup.png");
- $type = isset($disk['type'])?$types[$disk['type']]:$types['old'];
+ $type = isset($disk['FAIdiskType'])?$types[$disk['FAIdiskType']]:$types['old'];
$divlist->AddEntry(array(
array("string"=> "<img border='0' src='".$type."'>", "attach"=>"style='width:16px'"),
array("string"=> $edit_link, "attach"=>"style='width:100px'"),
diff --git a/gosa-plugins/fai/admin/fai/faiDiskEntry.tpl b/gosa-plugins/fai/admin/fai/faiDiskEntry.tpl
--- /dev/null
@@ -0,0 +1,87 @@
+<input type="hidden" name="TableEntryFrameSubmitted" value="1">
+<h2><img class="center" alt="" src="plugins/fai/images/fai_partitionTable.png" align="middle" title="{t}Generic{/t}"> {t}Device{/t}</h2>
+<table style='width:100%' summary="">
+ <tr>
+ <td style='width:50%;border-right:1px solid #909090;'>
+ <table>
+ <tr>
+ <td>
+ <LABEL for="DISKcn">
+ {t}Name{/t}
+ </LABEL>{$must}
+ </td><td>
+{render acl=$DISKcnACL}
+ <input value="{$DISKcn}" size="45" maxlength="80" name="DISKcn" id="DISKcn">
+{/render}
+ </td>
+ </tr>
+ <tr>
+ <td><LABEL for="fstabkey">
+ {t}FSTAB key{/t}
+ </td><td>
+{render acl=$DISKFAIdiskOptionACL}
+ <select name="fstabkey" size="1">
+ {html_options values=$fstabkeys output=$fstabkeys selected=$fstabkey}
+ </select>
+{/render}
+ </td>
+ </tr>
+ </table>
+ </td>
+ <td>
+ <table>
+ <tr>
+ <td>
+<LABEL for="DISKdescription">
+ {t}Description{/t}
+ </LABEL>
+ </td><td>
+{render acl=$DISKdescriptionACL}
+ <input value="{$DISKdescription}" size="45" maxlength="80" name="DISKdescription" id="DISKdescription">
+{/render}
+ </td>
+ </tr>
+ <tr>
+ <td><LABEL for="disklabel">
+ {t}Disk label{/t}
+ </td><td>
+{render acl=$DISKFAIdiskOptionACL}
+ <select name="disklabel" size="1">
+ {html_options values=$disklabels output=$disklabels selected=$disklabel}
+ </select>
+{/render}
+ </td>
+ </tr>
+ </table>
+ </tr>
+</table>
+<br>
+<p class="seperator"> </p>
+<br>
+<h2><img class="center" alt="" src="images/lists/paste.png" align="middle" title="{t}Partition entries{/t}"> {t}Partition entries{/t}</h2>
+{$setup}
+<br>
+{if !$freeze}
+ {if $sub_object_is_createable}
+ <input type="submit" name="AddPartition" value="{t}Add partition{/t}">
+ {else}
+ <input type="submit" name="restricted" value="{t}Add partition{/t}" disabled>
+ {/if}
+{/if}
+<br>
+<br>
+<p class="seperator"> </p>
+<br>
+<div style="align:right;" align="right">
+{if !$freeze}
+ <input type="submit" name="SaveDisk" value="{msgPool type=saveButton}">
+{/if}
+<input type="submit" name="CancelDisk" value="{msgPool type=cancelButton}" >
+</div>
+<!-- Place cursor -->
+<script language="JavaScript" type="text/javascript">
+ <!-- // First input field on page
+ focus_field('DISK_cn');
+ -->
+</script>
+