Code

Removed remaining print_red's
[gosa.git] / gosa-core / include / class_config.inc
index 92c87511716d8da745d968cd700fa5d413b3c131..07877ebad888efbd06fa916b142cc1b018edd5be 100644 (file)
@@ -80,11 +80,11 @@ class config  {
       xml_set_object($this->parser, $this);
       xml_set_element_handler($this->parser, "tag_open", "tag_close");
       $this->parse($this->filename);
-      if(isset($_SESSION['plist'])){
-        unset($_SESSION['plist']);
+      if(session::is_set('plist')){
+        session::un_set('plist');
       }
-      if(isset($_SESSION['plug'])){
-        unset($_SESSION['plug']);
+      if(session::is_set('plug')){
+        session::un_set('plug');
       }
       if(isset($_GET['plug'])){
         unset($_GET['plug']);
@@ -221,19 +221,17 @@ class config  {
     /* Check for connection */
     if (is_null($this->ldap) || (is_int($this->ldap) && $this->ldap == 0)){
       $smarty= get_smarty();
-      print_red (_("Can't bind to LDAP. Please contact the system administrator."));
-      $smarty->display (get_template_path('headers.tpl'));
-      echo '<body style="background-image:none">'.$_SESSION['errors'].'</body></html>';
-      exit();
+      msg_dialog::display(_("LDAP error"), _("Can't bind to LDAP. Please contact the system administrator."), ERROR_DIALOG);
+      display_error_page();
     }
 
-    if (!isset($_SESSION['size_limit'])){
-      $_SESSION['size_limit']= $this->current['SIZELIMIT'];
-      $_SESSION['size_ignore']= $this->current['SIZEIGNORE'];
+    if (!session::is_set('size_limit')){
+      session::set('size_limit',$this->current['SIZELIMIT']);
+      session::set('size_ignore',$this->current['SIZEIGNORE']);
     }
 
     if ($sizelimit){
-      $this->ldap->set_size_limit($_SESSION['size_limit']);
+      $this->ldap->set_size_limit(session::get('size_limit'));
     } else {
       $this->ldap->set_size_limit(0);
     }
@@ -259,7 +257,7 @@ class config  {
     }
 
     if (isset($this->current['INITIAL_BASE'])){
-      $_SESSION['CurrentMainBase']= $this->current['INITIAL_BASE'];
+      session::set('CurrentMainBase',$this->current['INITIAL_BASE']);
     }
   
     /* Remove possibly added ',' from end of group and people ou */
@@ -549,9 +547,8 @@ class config  {
       /* If no samba servers are found, look for configured sid/ridbase */
       if (count($this->data['SERVERS']['SAMBA']) == 0){
         if (!isset($this->current["SID"]) || !isset($this->current["RIDBASE"])){
-          print_red(_("SID and/or RIDBASE missing in your configuration!"));
-          echo $_SESSION['errors'];
-          exit;
+          msg_dialog::display(_("Configuration error"), _("SID and/or RIDBASE missing in the configuration!"), ERROR_DIALOG);
+          display_error_page();
         } else {
           $this->data['SERVERS']['SAMBA']['DEFAULT']= array(
               "SID" => $this->current["SID"],