Code

Cleaning up code
authoropensides <opensides@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 16 Oct 2007 10:37:18 +0000 (10:37 +0000)
committeropensides <opensides@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 16 Oct 2007 10:37:18 +0000 (10:37 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5-plugins@7571 594d385d-05f5-0310-b6e9-bd551577e9d8

vhost-apache2/class_apacheEditVhost.inc
vhost-apache2/class_apacheVhost.inc
vhost-apache2/functions_apache.inc

index 37422c518ed8f52111956bd2148b85fb091b58b0..3eb4553077a1b4913c05cfa9eb71fe9c02336747 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-class servapacheeditVhost extends plugin
+class apacheVhostEdit extends plugin
 {
   /* attribute list for save action */
   var $ignore_account= TRUE;
@@ -31,7 +31,7 @@ class servapacheeditVhost extends plugin
   var $cn;
   var $VhostObject               = array();
 
-  function servapache2editVhost ($config, $dn= NULL,$attrs = array())
+  function apacheVhostEdit ($config, $dn= NULL,$attrs = array())
   {
     plugin::plugin ($config, $dn);
  
@@ -61,7 +61,7 @@ class servapacheeditVhost extends plugin
     }
   }
 
-  /* TRansports the geiven Arraykey one position up*/
+  /* Transports the given Arraykey one position up*/
   function ArrayUp($atr,$attrs)
   {
     $ret = $attrs;
@@ -78,7 +78,7 @@ class servapacheeditVhost extends plugin
   }
 
 
-  /* TRansports the geiven Arraykey one position up*/
+  /* Transports the given Arraykey one position down*/
   function ArrayDown($atr,$attrs)
   {
     $ret = $attrs;
@@ -143,7 +143,7 @@ class servapacheeditVhost extends plugin
     }else{
       $smarty->assign("AllowVhostEdit" , true);
       if(isset($_POST['EditVhostEntries'])){
-        $this->dialog= new servAPACHE2editVhostEntries($this->config,$this->dn,$this->VhostObject);
+        $this->dialog= new apacheVhostEditEntries($this->config,$this->dn,$this->VhostObject);
       }
     }
 
@@ -305,8 +305,6 @@ class servapacheeditVhost extends plugin
 
     $smarty->assign("apacheServerAlias",  $div->DrawList());
 
-    
-    
     $div = new DivSelectBox("apacheScriptAlias");
     $div->setHeight(120);
     $recs = $this->apacheScriptAlias;
@@ -326,12 +324,9 @@ class servapacheeditVhost extends plugin
             ));
     }
 
-
       $smarty->assign("NotNew", false);
 
-    $smarty->assign("apacheScriptAlias",  $div->DrawList());
-    
-    
+    $smarty->assign("apacheScriptAlias",  $div->DrawList());    
     
     /* Display template */
     $display.= $smarty->fetch(get_template_path('apache_editVhost.tpl', TRUE));
@@ -362,7 +357,7 @@ class servapacheeditVhost extends plugin
     $message= plugin::check();
         
     /* Check if apacheServerName is already in use */
-    $usedVhosts = $this->getUsedapacheServerNames();
+    $usedVhosts = $this->getUsedServerNames();
     if(($this->isNew == true)||($this->apacheServerName  != $this->InitialApacheServerName)){
 /*      if((isset($usedVhosts[$this->apacheServerName]))&&($this->apacheServerName  != $this->InitialApacheServerName)){
         $message[] =_("This apacheServerName is already in use");
@@ -414,7 +409,7 @@ class servapacheeditVhost extends plugin
   }
 
   /* This funtion returns all used apacheServerNames */
-  function getUsedapacheServerNames()
+  function getUsedServerNames()
   {
     $ret = array();
     $ldap = $this->config->get_ldap_link();
index 9c9ca50f082107f1c9b8cf10678b9547b149334a..90bf51bbe00de33c7e3fc32b4af8d7a823ab9d44 100644 (file)
@@ -16,7 +16,7 @@ class servapache extends plugin
   var $APACHE2initially_was_account;
 
 
-  function servapache2 ($config, $dn= NULL, $parent= NULL)
+  function servapache ($config, $dn= NULL, $parent= NULL)
   {
     plugin::plugin ($config, $dn, $parent);
 
@@ -24,7 +24,7 @@ class servapache extends plugin
 
     /* Get all vhost Informations
      */
-    $this->Vhosts = getAPACHE2VhostEntries($config,$dn);
+    $this->Vhosts = getVhostEntries($config,$dn);
 
     /* If there is at least one entry in this -> types, we have APACHE2 enabled 
      */
@@ -63,11 +63,11 @@ class servapache extends plugin
     }
 
     if ($this->is_account){
-      $display= $this->show_header(_("Remove APACHE2 service"),
-          _("This server has APACHE2 features enabled. You can disable them by clicking below."));
+      $display= $this->show_header(_("Remove Apache service"),
+          _("This server has Apache features enabled. You can disable them by clicking below."));
     } else {
-      $display= $this->show_header(_("Add APACHE2 service"),
-          _("This server has APACHE2 features disabled. You can enable them by clicking below."));
+      $display= $this->show_header(_("Add Apache service"),
+          _("This server has Apache features disabled. You can enable them by clicking below."));
       return ($display);
     }
 
@@ -103,7 +103,7 @@ class servapache extends plugin
     /* Add empty new vhost 
      */
     if(isset($_POST['AddVhost']) && chkacl($this->acl,"servapache2") == ""){
-      $this->dialog = new servapache2editVhost($this->config,$this->dn);
+      $this->dialog = new apacheEditVhost($this->config,$this->dn);
     }
 
     /* Check for edit vhost request 
@@ -117,7 +117,7 @@ class servapache extends plugin
         $once =true;
         $tmp = preg_replace("/^editVhost_/","",$name);
         $tmp = base64_decode(preg_replace("/_.*$/","",$tmp));
-        $this->dialog= new servapache2editVhost($this->config,$this->dn,$this->Vhosts[$tmp]);
+        $this->dialog= new apacheEditVhost($this->config,$this->dn,$this->Vhosts[$tmp]);
       }
 
       /* check posts for delete vhost 
@@ -172,7 +172,7 @@ class servapache extends plugin
    */
   function RemoveVhost($id)
   {
-    $vhosts =  $this->getUsedapacheServerNames();
+    $vhosts =  $this->getUsedServerNames();
   
     $vhostname = "";
     if(isset($this->Vhosts[$id]['InitialApacheServerName'])){
@@ -216,9 +216,9 @@ class servapache extends plugin
   } 
 
 
-  /* This funtion returns all used Vhostnames 
+  /* This function returns all used Vhostnames 
    */
-  function getUsedapacheServerNames()
+  function getUsedServerNames()
   {
     $ret = array();
     $ldap = $this->config->get_ldap_link();
@@ -232,7 +232,7 @@ class servapache extends plugin
 
 
 
-    /* Remove apache2 service
+    /* Remove apache service
    */
   function remove_from_parent()
   {
@@ -265,7 +265,7 @@ class servapache extends plugin
       $old_dn = $this->dn;
     }
 
-    $tmp = getAPACHE2VhostEntriesDiff($this->config,$this->Vhosts,$old_dn);
+    $tmp = getVhostEntriesDiff($this->config,$this->Vhosts,$old_dn);
 
     /* Updated vhost entries if reverser or forward name has changed  
      * Must be done before moving entries, else the given dn is invalid
@@ -274,16 +274,16 @@ class servapache extends plugin
       foreach($tmp['vhostUpdates'] as $dn => $attrs){
         $ldap->cd($dn);
         $ldap->modify($attrs);
-        show_ldap_error("Vhost:".$ldap->get_error(), _("Updating APACHE2 service failed"));
+        show_ldap_error("Vhost:".$ldap->get_error(), _("Updating Apache service failed"));
       }
     }
 
-    /* Delete apache
+    /* Delete apache vhost
      */
     foreach($tmp['del'] as $dn => $del){
       $ldap->cd($dn);
       $ldap->rmdir_recursive($dn);
-      show_ldap_error($ldap->get_error(), _("Removing APACHE2 entries failed"));
+      show_ldap_error($ldap->get_error(), _("Removing Apache entries failed"));
     }
 
     /* move follwoing entries
@@ -292,7 +292,7 @@ class servapache extends plugin
       $this->recursive_move($src,$dst);
     }
 
-    /* Add || Update new APACHE2 entries
+    /* Add || Update new apache entries
      */
     foreach($tmp['add'] as $dn => $attrs){
       $ldap->cd($dn);
@@ -306,7 +306,7 @@ class servapache extends plugin
         $ldap->cd($dn);
         $ldap->add($attrs);
       }
-      show_ldap_error($ldap->get_error(), _("Saving APACHE2 entries failed"));
+      show_ldap_error($ldap->get_error(), _("Saving apache entries failed"));
     }
   }
 }
index 8a82179949587b3797fc0cc6337921854152ba7e..9f11882f16a796dc28437c20524c88d27b33b28a 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 
 
-/* This function returns the zones specified for given host
+/* This function returns the vhost entries specified for given host
  */
 function getVhostEntries($config,$HostDn,$silent = false)
 {
@@ -35,8 +35,8 @@ function getVhostEntries($config,$HostDn,$silent = false)
    */
   foreach($tmp_res as $attrs){
 
-    $apacheServerName                   = $attrs['apacheServerName'][0];
-    $apacheDocumentRoot                   = $attrs['apacheDocumentRoot'][0];
+    $apacheServerName                    = $attrs['apacheServerName'][0];
+    $apacheDocumentRoot                  = $attrs['apacheDocumentRoot'][0];
     $apacheServerAdmin                   = $attrs['apacheServerAdmin'][0];
     $Vhosts[$apacheServerName]           = $VhostBase;
     $Vhosts[$apacheServerName]['exists'] = true;
@@ -74,13 +74,13 @@ function getVhostEntries($config,$HostDn,$silent = false)
 
 /* This function compares two dns zone objects and returns an 
  *  array with following indexes 
- *   - delete, for dns which must be deleted (only if dns zone is removed)
+ *   - delete, for vhost entries which must be deleted (only if vhost entries is removed)
  *   - rename, if a dn must be renamed, for example, the apacheServerName has changed
- *   - add,    if there is a new dns account created    
+ *   - add,    if there is a new vhost entries created    
  */
 function getVhostEntriesDiff($config,$newVhosts,$HostDn)
 {
-  $oldVhosts = getAPACHE2VhostEntries($config,$HostDn,true);
+  $oldVhosts = getVhostEntries($config,$HostDn,true);
 
   $move   = array();
   $add    = array();