Code

ACL: Skip listing system snapshot that we are not able to restore.
[gosa.git] / plugins / admin / systems / class_servDNS.inc
index 6039a29bb9557f9090b251e64208bb1cd5ee833e..c74c27fd379fdbbfb0ba2364b557c533b4e46d9f 100644 (file)
@@ -1,6 +1,8 @@
 <?php
 
-class servdns extends plugin
+require_once("class_goService.inc");
+
+class servdns extends goService
 {
   /* CLI vars */
   var $cli_summary= "Manage server basic objects";
@@ -9,432 +11,398 @@ class servdns extends plugin
 
   /* attribute list for save action */
   var $ignore_account   = FALSE;
-  var $attributes       = array(""); 
+  var $attributes       = array(); 
   var $objectclasses    = array("whatever");
 
   var $RecordTypes      = array();
+  var $Zones            = array();
+  var $dialog           = NULL;
 
-  var $Zones  = array();
-  var $dialog = NULL;
-
-  var $usedDNS    = array();
-  function servdns ($config, $dn= NULL)
-  {
-    plugin::plugin ($config, $dn);
-
-    /* All types with required attrs */
-    $this->RecordTypes['aRecord']       = "aRecord";           // ok
-    $this->RecordTypes['mDRecord']      = "mDRecord";          // ok
-    $this->RecordTypes['mXRecord']      = "mXRecord";          // ok
-    $this->RecordTypes['nSRecord']      = "nSRecord";          // ok
-    $this->RecordTypes['pTRRecord']     = "relativeDomainName";// ok
-    $this->RecordTypes['hInfoRecord']   = "hInfoRecord";       // ok
-    $this->RecordTypes['mInfoRecord']   = "mInfoRecord";       // ok
-    $this->RecordTypes['tXTRecord']     = "tXTRecord";         // ok
-    $this->RecordTypes['aFSDBRecord']   = "aFSDBRecord";       // ok
-    $this->RecordTypes['SigRecord']     = "SigRecord";         // ok
-    $this->RecordTypes['KeyRecord']     = "KeyRecord";         // ok
-    $this->RecordTypes['aAAARecord']    = "aAAARecord";        // ok
-    $this->RecordTypes['LocRecord']     = "LocRecord";         // ok
-    $this->RecordTypes['nXTRecord']     = "nXTRecord";         // ok
-    $this->RecordTypes['sRVRecord']     = "sRVRecord";         // ok
-    $this->RecordTypes['nAPTRRecord']   = "nAPTRRecord";       // ok
-    $this->RecordTypes['kXRecord']      = "kXRecord";          // ok
-    $this->RecordTypes['certRecord']    = "certRecord";        // ok
-    $this->RecordTypes['a6Record']      = "a6Record";          // ok
-    $this->RecordTypes['dSRecord']      = "dSRecord";          // ok
-    $this->RecordTypes['sSHFPRecord']   = "sSHFPRecord";       // ok
-    $this->RecordTypes['rRSIGRecord']   = "rRSIGRecord";       // ok
-    $this->RecordTypes['nSECRecord']    = "nSECRecord";        // ok
-
-    $this->cn = $this->attrs['cn'][0];
-    $types = array();
-
-    /* Get all records */
-    $ldap = $this->config->get_ldap_link();
-    $ldap->cd($this->dn);
-    $ldap->search("(&(objectClass=dNSZone)(relativeDomainName=@))",array("*"));
+  var $orig_dn          = "";
 
-    while($attrs = $ldap->fetch()){
-      /* If relative domainname == cn
-       * Try to read dnsclass / TTl / zone
-       */
-      $this->usedDNS[$attrs['dn']] = $attrs['dn'];
-      if((isset($attrs['tXTRecord'][0]))&&(preg_match("/zoneName\=/",$attrs['tXTRecord'][0]))){
-        $zoneName= preg_replace("/zoneName\=/","",$attrs['tXTRecord'][0]);  
-        $z = preg_replace("/\.in\-addr\.arpa/","",$attrs['zoneName'][0]);
-        
-        $z = $this->FlipIp($z);
-
-        $types[$zoneName]['ReverseZone']  = $z;
-        $types[$zoneName]['ReverseDN']    = $attrs['dn']; 
-      }else{
-
-        /* Generate SOA entry */
-        if(isset($attrs['sOARecord'][0])){
-          $tmp = split("\ ",$attrs['sOARecord'][0]) ;
-          $tmp2 = array();
-          $ar = array("0"=>"sOAprimary","1"=>"sOAmail","2"=>"sOAserial","3"=>"sOArefresh","4"=>"sOAretry","5"=>"sOAexpire","6"=>"sOAttl");
-
-          /* Assign soa vars */
-          foreach($ar as $key => $name){
-            if(isset($tmp[$key])){
-              $types[$attrs['zoneName'][0]][$name] = $tmp[$key];
-            }else{
-              $types[$attrs['zoneName'][0]][$name] = "";
-            }
-          }
-        }
-
-        /* Set TTL value */
-        if(isset($attrs['dNSTTL'][0])){
-          $types[$attrs['zoneName'][0]]['dNSTTL'] = $attrs['dNSTTL'][0];
-        }
-
-        /* Set dns Class*/
-        if(isset($attrs['dNSClass'][0])){
-          $types[$attrs['zoneName'][0]]['dNSClass'] = $attrs['dNSClass'][0];
-        }
-
-        /* Set zone Name */
-        if(isset($attrs['zoneName'][0])){
-          $types[$attrs['zoneName'][0]]['zoneName'] = $attrs['zoneName'][0];
-        }
+  var $initially_was_account;
+  
+  /* ServerService tab vars */
+  var $conflicts        = array("servdns");
+  var $DisplayName      = "";
+  var $StatusFlag       = "";
 
-        /* Create list with all used records */
-        foreach($this->RecordTypes as $name => $value){
+  function servdns ($config, $dn= NULL, $parent= NULL)
+  {
+    plugin::plugin ($config, $dn, $parent);
 
-          /* If there is a record attribute  */
-          if(isset($attrs[$name])){
+    $this->DisplayName = _("DNS service");
 
-            $types[$attrs['zoneName'][0]]['Records']=array();
+    $this->orig_dn = $dn;
 
-            /* get all entries */
-            for($i = 0 ; $i < $attrs[$value]['count']; $i ++){
-              $types[$attrs['zoneName'][0]]['Records'][] =array("type"      =>$name,
-                  "inittype"  =>$name,
-                  "value"     =>$attrs[$value][$i],
-                  "status"    =>"edited",
-                  "dn"        =>$attrs['dn']);
-            }
-          }
-        }
-      }
-    }
+    /* Get record types for zones
+     */
+    $this->RecordTypes = getDnsRecordTypes(true);
 
-    /* If there is at least one entry in this -> types, we have DNS enabled */
-    $this->Zones = $types;
+    /* Get all zone Informations
+     */
+    $this->Zones = getDNSZoneEntries($config,$dn);
+    
+    /* If there is at least one entry in this -> types, we have DNS enabled 
+     */
     if(count($this->Zones) == 0){
       $this->is_account = false;
     }else{
       $this->is_account = true;
     }
-
-    /* Store initally account settings */
-    $this->DNSinitially_was_account = $this->is_account;
+    $this->initially_was_account = $this->is_account;
   }
 
 
-  /* this is used to flip the ip address for example 
-      12.3.45  ->  54.3.12     
-     Because some entries (like zones) are store like that 54.3.12.in-addr.arpa
-      but we want to display 12.3.45.
-  */
-  function FlipIp($ip)
-  {
-    $tmp = array_reverse(split("\.",$ip));
-    $new = "";
-    foreach($tmp as $section){
-      $new .= $section.".";
-    }
-    return(preg_replace("/.$/","",$new));
-  }
-
   function execute()
   {
-    /* Call parent execute */
+    /* Call parent execute 
+     */
     plugin::execute();
 
-    /* Fill templating stuff */
+    /* Fill templating stuff 
+     */
     $smarty= get_smarty();
     $display= "";
 
-    /* Do we need to flip is_account state? */
+    /* Do we need to flip is_account state? 
+     */
     if (isset($_POST['modify_state'])){
       $this->is_account= !$this->is_account;
     }
 
-    /* Show tab dialog headers */
     if ($this->is_account){
-      $display= $this->show_header(_("Remove DNS service"),
+      $display= $this->show_disable_header(_("Remove DNS service"),
           _("This server has DNS features enabled. You can disable them by clicking below."));
     } else {
-      $display= $this->show_header(_("Add DNS service"),
+      $display= $this->show_enable_header(_("Add DNS service"),
           _("This server has DNS features disabled. You can enable them by clicking below."));
       return ($display);
     }
 
-    /* Edited or Added zone hould be saved saved */
+
+    /* Edited or Added zone 
+     */
     if(isset($_POST['SaveZoneChanges'])){
       $this->dialog->save_object();
 
-      /* Check if noting went wrong */
+      /* Check for errors  
+       */
       if(count($this->dialog->check())){
         foreach($this->dialog->check() as $msgs){
           print_red($msgs); 
         }
       }else{
-      
-        /* add new/edited zone */
+        /* add new/edited zone 
+         */
         $ret = $this->dialog->save();
-        unset($this->Zones[$this->dialog->InitiallyZoneName]);
-        $this->Zones[$ret['zoneName']]                  = $ret;
+        if(!$this->dialog->isNew){
+          unset($this->Zones[$this->dialog->OldZoneName]);
+        }
+        $this->Zones[$ret['zoneName']] = $ret;
         $this->dialog = NULL;
       }
     }
 
-    /* Cancel zone edit / new */
+    /* Cancel zone edit / new 
+     */
     if(isset($_POST['CancelZoneChanges'])){
       $this->dialog = NULL;
     }
 
-    /* Add empty new zone */
+    /* Add empty new zone 
+     */
     if(isset($_POST['AddZone'])){
-      $this->dialog = new servdnseditZone($this->config,$this->dn,$this->RecordTypes);
+      $this->dialog = new servdnseditZone($this->config,$this->dn);
     }
 
-    /* Check for edit zone request */
+    /* Check for edit zone request 
+     */
     $once = false;
     foreach( $_POST as $name => $value){
   
-      /* check all post for edit request */
+      /* check all post for edit request 
+       */
       if(preg_match("/^editZone_/",$name)&&!$once){
         $once =true;
         $tmp = preg_replace("/^editZone_/","",$name);
         $tmp = base64_decode(preg_replace("/_.*$/","",$tmp));
-        $this->dialog= new servdnseditZone($this->config,$this->dn,$this->RecordTypes,$this->Zones[$tmp]);
+        $this->dialog= new servdnseditZone($this->config,$this->dn,$this->Zones[$tmp]);
       }
 
-      /* check posts for delete zone */
+      /* check posts for delete zone 
+       */
       if(preg_match("/^delZone_/",$name)&&!$once){
 
-
         $once =true;
         $tmp = preg_replace("/^delZone_/","",$name);
         $tmp = base64_decode(preg_replace("/_.*$/","",$tmp));
-  
-        $zones =  $this->getUsedZoneNames();
-        $rev = $this->Zones[$tmp]['ReverseZone'];
-        $res = array_merge(($zones[$tmp]),($zones[$rev.".in-addr.arpa"]));
-        
-        if(count($res)){
-          $i = 2;
-          $str ="";
-          foreach($res as $dn){
-            if($i > 0 ){
-              $i --;
-              $str.=$dn." ";
-            }
-          }
-          if(count($res)> 2) $str .=" ... ";
-          print_red(sprintf(_("Can't delete the selected zone, because it is still in use by these entry/entries '%s'"),trim($str)));
-        }else{
-          unset($this->Zones[$tmp]);
-        }
+     
+        /* Initiate deletion
+         */ 
+        $this->RemoveZone($tmp); 
       }
     }
 
-    /* Show dialog */
+    /* Show dialog 
+     */
     if($this->dialog!= NULL){
       $this->dialog->save_object();
       $this->dialog->parent = $this;
       return($this->dialog->execute());
     }
 
-    /* Create Listbox with existing Zones */
+    /* Create Listbox with existing Zones 
+     */
     $ZoneList = new divSelectBox("dNSZones");
     $ZoneList -> SetHeight(254);
 
-    /* Add entries to divlist*/
+    /* Add entries to divlist
+     */
     $editImg = "<input type='image' src='images/edit.png' name='editZone_%s'>
       <input type='image' src='images/edittrash.png' name='delZone_%s'>";
     foreach($this->Zones as $zone => $values ){
       $ZoneList->AddEntry(array(
             array("string" => $zone),
             array("string" => _("Reverse zone")." : ".$values['ReverseZone']),
-            array("string" => _("TTL")." : ".$values['dNSTTL']),
+            array("string" => _("TTL")." : ".$values['sOAttl']),
             array("string" => _("Class")." : ".$values['dNSClass']),
             array("string" =>str_replace("%s",base64_encode($zone),$editImg))
             ));
     }    
 
-    /* Display tempalte */
+    /* Display tempalte 
+     */
     $smarty->assign("ZoneList",$ZoneList->DrawList());
     $display.= $smarty->fetch(get_template_path('servdns.tpl', TRUE));
     return($display);
   }
 
 
-  /* This funtion returns all used Zonenames */
-  function getUsedZoneNames()
+  /* Delete specified zone
+   */
+  function RemoveZone($id)
   {
-    $ret = array();
-    $ldap = $this->config->get_ldap_link();
-    $ldap->cd($this->config->current['BASE']);
-    $ldap->search("(&(objectClass=dNSZone)(!(relativeDomainName=@))(zoneName=*))",array("zoneName","relativeDomainName","tXTRecord"));
-    while($attr = $ldap->fetch()){
-      if(preg_match("/in-addr\.arpa/",$attr['zoneName'][0])){
-        $ret[$attr['zoneName'][0]][] = $attr['dn'];
-      }else{
-        $ret[$attr['zoneName'][0]][] = $attr['dn'];
+    $zones =  $this->getUsedZoneNames();
+
+    if(isset($this->Zones[$id]['InitialReverseZone'])){
+      $rev = FlipIp($this->Zones[$id]['InitialReverseZone']);
+    }else{
+      $rev = FlipIp($this->Zones[$id]['ReverseZone']);
+    }
+
+    $zonename = "";
+    if(isset($this->Zones[$id]['InitialzoneName'])){
+      $zonename= $this->Zones[$id]['InitialzoneName'];
+    }
+
+    $used = array();
+
+    /* Add Records which use this zoneName
+     */
+    if(isset($zones[$zonename])){
+      $used = array_merge($used,$zones[$zonename]);
+    }
+
+    /* Add Records which uses this reverse zone
+     */
+    if(isset($zones[$rev.".in-addr.arpa"])){
+      $used = array_merge($used,$zones[$rev.".in-addr.arpa"]);
+    } 
+
+    /* There are still entries using this configuration
+     *  Abort deletion
+     */
+    if(count($used)){
+      $i = 2;
+      $str ="";
+      foreach($used as $dn){
+        if($i > 0 && !preg_match("/,relativeDomainName=/",$dn)){
+          $i --;
+          $name = preg_replace("/^[^=]+=([^,]*),.*$/","\\1",$dn);
+          $zone = preg_replace("/^.*zoneName=([^,]*),.*$/","\\1",$dn);
+          $str.= $name.".".$zone." ";
+        }
       }
+
+      /*  Only show 2 dns in the error message 
+       */
+      if(count($used)> 2) {
+        $str .=" ... ";
+      }
+      print_red(sprintf(_("Can't delete the selected zone, because it is still in use by these entry/entries '%s'"),trim($str)));
+      return(false);
+    }else{
+      unset($this->Zones[$id]);
+      return(true);
     }
-    return($ret);
-  }
+  } 
 
 
-  /* Remove dns service */
-  function remove_from_parent()
+  /* This funtion returns all used Zonenames 
+   */
+  function getUsedZoneNames()
   {
+    $ret = array();
     $ldap = $this->config->get_ldap_link();
     $ldap->cd($this->config->current['BASE']);
-    foreach($this->usedDNS as $dn){
-      $ldap->cd($dn);
-      $ldap->rmdir_recursive($dn);
+    $ldap->search("(&(objectClass=dNSZone)(!(relativeDomainName=@))(zoneName=*))",array("zoneName","relativeDomainName"));
+    while($attr = $ldap->fetch()){
+      $ret[$attr['zoneName'][0]][] = $attr['dn'];
     }
-    show_ldap_error($ldap->get_error());
+    return($ret);
   }
 
 
-  /* Save data to object */
-  function save_object()
+  /* Remove dns service 
+   */
+  function remove_from_parent()
   {
-  }
-
+    if($this->initially_was_account){
+      $bool = true;
+      foreach($this->Zones as $key => $zone){
+        $bool= $bool & $this->RemoveZone($key);
+      }
 
-  /* Check supplied data */
-  function check()
-  {
-    $message= array();
-    return ($message);
+      if($bool){
+        $this->save();
+      }
+      return($bool);
+    }
   }
 
 
   /* Save to LDAP */
   function save()
   {
-    /* Ldap conenction / var initialization */
     $ldap = $this->config->get_ldap_link();
-    $ldap->cd($this->config->current['BASE']);
-    $actions =array("update"=>array(),"add"=>array(),"delete"=>array());
-
-    /* Generate entries for all zones, and check if they must be updated deleted added */
-    foreach($this->Zones as $zone){
-      
-      /* Get ldap syntax */
-      $tmp = $this->generate_LDAP_entries($zone);
-
-      /* Check if dn is new, or if entry was edited */
-      foreach($tmp as $key => $values){
-        if(isset($this->usedDNS[$key])){
-          $actions['update'][$key]=$values;
-          unset($this->usedDNS[$key]);
-        }else{
-          $actions['add'][$key] = $values;
-        }
+    $ldap->cd($this->config->current['BASE']);  
+  
+    /* Get differences 
+     */
+    $tmp = getDNSZoneEntriesDiff($this->config,$this->Zones,$this->orig_dn);
+
+    /* Updated zone entries if reverser or forward name has changed  
+     * Must be done before moving entries, else the given dn is invalid
+     */
+    if(isset($tmp['zoneUpdates'])){
+      foreach($tmp['zoneUpdates'] as $dn => $attrs){
+        $ldap->cd($dn);
+        $ldap->modify($attrs);
+        show_ldap_error($ldap->get_error(), sprintf(_("Updating of system server/dns with dn '%s' failed."),$this->dn));
       }
     }
-    
-    /* Check which dns are not used anymore ...*/
-    foreach($this->usedDNS as $key => $values){
-      $actions['delete'][$key] = $values;
-    }
 
-    /* Remove deleted zones */
-    foreach($actions['delete'] as $dn => $attrs){
+    /* Delete dns 
+     */
+    foreach($tmp['del'] as $dn => $del){
       $ldap->cd($dn);
       $ldap->rmdir_recursive($dn);
+      show_ldap_error($ldap->get_error(), sprintf(_("Removing of system server/dns with dn '%s' failed."),$this->dn));
     }
 
-    /* Add new zones */
-    foreach($actions['add'] as $dn => $attrs){
-      $ldap->cd($this->config->current['BASE']);
-      //      $ldap->create_missing_trees($dn);
-      $ldap->cd($dn);
-      $ldap->add($attrs);
+    /* move follwoing entries
+     */
+    foreach($tmp['move'] as $src => $dst){
+      $this->recursive_move($src,$dst);
     }
 
-    /* Update existing entries */
-    foreach($actions['update'] as $dn => $attrs){
+    /* Add || Update new DNS entries
+     */
+    foreach($tmp['add'] as $dn => $attrs){
       $ldap->cd($dn);
-      $ldap->modify($attrs);
+      $ldap->cat($dn, array('dn'));
+      if(count($ldap->fetch())){
+        $ldap->cd($dn);
+        $ldap->modify ($attrs);
+      }else{
+        $ldap->cd($dn);
+        $ldap->add($attrs);
+      }
+      show_ldap_error($ldap->get_error(), sprintf(_("Saving of system server/dns with dn '%s' failed."),$this->dn));
     }
-    show_ldap_error($ldap->get_error());
   }
 
 
-  /* This function generates ldap friendly output 
-     of all changes for a single zone (reverse and forward)
-   */
-  function generate_LDAP_entries($zone)
+  /* Directly save new status flag */
+  function setStatus($value)
   {
-    $tmp = array();
-    $tmp['objectClass']           = array("top","dNSZone");
-    $tmp['dNSTTL']                = $zone['dNSTTL']; 
-    $tmp['dNSClass']              = $zone['dNSClass']; 
-    $tmp['relativeDomainName']    = "@";//$zone['relativeDomainName']; 
-
-    $str = "";
-    foreach(array("sOAprimary","sOAmail","sOAserial","sOArefresh","sOAretry","sOAexpire","sOAttl") as $name){
-      $str .= $zone[$name]." "; 
-    }
-    $tmp['sOARecord'] = $str;
-
-
-    /* Generate Record entries  */
-    $arr = array("SigRecord","KeyRecord","aAAARecord","nSRecord","iaFSDBRecord","mInfoRecord","hInfoRecord","mXRecord","mDRecord","tXTRecord",
-        "LocRecord","nXTRecord","sRVRecord","nAPTRRecord","kXRecord","certRecord","a6Record","dSRecord","sSHFPRecord","rRSIGRecord","nSECRecord");
-    $aRecords = array();
-    foreach($arr as $ar){
-      if((isset($zone['Records']))&&(is_array($zone['Records']))){
-        foreach($zone['Records'] as $type){
-          if(($type['type'] == $ar)&&($type['status']!="deleted")){
-            $tmp[$ar][] = $type['value'];
-          }
-        }
+    if($value == "none") return;
+    if(!$this->initially_was_account) return;
+    if(empty($this->StatusFlag)) return;
+    $ldap = $this->config->get_ldap_link();
+    $ldap->cd($this->dn);
+    $ldap->cat($this->dn,array("objectClass"));
+    if($ldap->count()){
+
+      $tmp = $ldap->fetch();
+      for($i = 0; $i < $tmp['objectClass']['count']; $i ++){
+        $attrs['objectClass'][] = $tmp['objectClass'][$i];
       }
+      $flag = $this->StatusFlag;
+      $attrs[$flag] = $value;
+      $this->$flag = $value;
+      $ldap->modify($attrs);
+      show_ldap_error($ldap->get_error(), sprintf(_("Set status flag for system server/dns with dn '%s' failed."),$this->dn));
+      $this->action_hook();
     }
-    
-    /* Check if there are records removed,
-        if there are some removed records, the append an array        
-        to ensure that these record types are deleted 
-     */
-    if((isset($zone['Records']))&&(is_array($zone['Records']))){
-      foreach($zone['Records'] as $type){
-        if(isset($type['inittype'])){
-          if($type['type'] != $type['inittype']){
-            $tmp[$type['inittype']] = array();
-          }
-        }
-      }
+  }
+
+
+  function getListEntry()
+  {
+    $fields               = goService::getListEntry(); 
+    $fields['Message']    = _("DNS service");
+    $fields['AllowEdit']  = true;
+    return($fields);
+  }
+
+
+  /* Get updates for status flag */
+  function updateStatusState()
+  {
+    if(empty($this->StatusFlag)) return;
+
+    $attrs = array();
+    $flag = $this->StatusFlag;
+    $ldap = $this->config->get_ldap_link();
+    $ldap->cd($this->cn);
+    $ldap->cat($this->dn,array($flag));
+    if($ldap->count()){
+      $attrs = $ldap->fetch();
+    }
+    if(isset($attrs[$flag][0])){
+      $this->$flag = $attrs[$flag][0];
     }
-    /* generate forward entry */
-    $dn = "zoneName=".$zone['zoneName'].",".$this->dn; 
-    $tmp2[$dn] = $tmp;
-    $tmp2[$dn]['zoneName'] = $zone['zoneName'];
-
-    /* generate reverse entry */
-    $dn = "zoneName=".$this->FlipIp($zone['ReverseZone']).".in-addr.arpa,".$this->dn;
-    $tmp2[$dn] = $tmp;
-    $tmp2[$dn]['tXTRecord'] ="zoneName=".$zone['zoneName'];
-    $tmp2[$dn]['zoneName'] = $this->FlipIp($zone['ReverseZone']).".in-addr.arpa";
-
-    return($tmp2);
   }
 
 
+  /* Return plugin informations for acl handling */
+  function plInfo()
+  {
+    return (array(
+          "plShortName"   => _("DNS service"),
+          "plDescription" => _("DNS service")." ("._("Services").")",
+          "plSelfModify"  => FALSE,
+          "plDepends"     => array(),
+          "plPriority"    => 83,
+          "plSection"     => array("administration"),
+          "plCategory"    => array("server"),
+
+          "plProvidedAcls"=> array(
+            "zoneName"      =>_("Zone name"),
+            "ReverseZone"   =>_("Reverse zone"),
+            "sOAprimary"    =>_("Primary dns server"),
+            "sOAmail"       =>_("Mail address"),
+            "sOAserial"     =>_("Serial"),
+            "sOArefresh"    =>_("Refresh"),
+            "sOAretry"      =>_("Retry"),
+            "sOAexpire"     =>_("Expire"),
+            "sOAttl"        =>_("TTL"),
+            "zoneRecords"   =>_("Zone records"))
+    ));
+  }
 
 }
-
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
 ?>