Code

Added ;
[gosa.git] / gosa-plugins / systems / admin / systems / main.inc
index a43df0999be575b5cc0d28a3644cfa852203bfe6..03a537a46739b0a2e36b2b8e167601a47f3330fb 100644 (file)
@@ -1,55 +1,56 @@
 <?php
 /*
-  This code is part of GOsa (https://gosa.gonicus.de)
-  Copyright (C) 2003  Cajus Pollmeier
-
-  This program is free software; you can redistribute it and/or modify
-  it under the terms of the GNU General Public License as published by
-  the Free Software Foundation; either version 2 of the License, or
-  (at your option) any later version.
-
-  This program is distributed in the hope that it will be useful,
-  but WITHOUT ANY WARRANTY; without even the implied warranty of
-  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-  GNU General Public License for more details.
-
-  You should have received a copy of the GNU General Public License
-  along with this program; if not, write to the Free Software
-  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ * This code is part of GOsa (http://www.gosa-project.org)
+ * Copyright (C) 2003-2008 GONICUS GmbH
+ *
+ * ID: $$Id$$
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
+/* Remove locks created by this plugin
 */
-
 if ($remove_lock){
-        if(session::is_set('systems')){
-                $systems = session::get('systems');
-                $systems->remove_lock();
-                del_lock ($ui->dn);
-                session::un_set ('systems');
-        }
-} else {
-       /* Create usermanagement object on demand */
-       if (!session::is_set('systems') || (isset($_GET['reset']) && $_GET['reset'] == 1)){
-               session::set('systems',new systems($config, $ui));
-       }
-       $systems = session::get('systems');
-       $systems->save_object();
-       $output= $systems->execute();
-
-       /* Reset requested? */
-       if (isset($_GET['reset']) && $_GET['reset'] == 1){
-               del_lock ($ui->dn);
-               session::un_set ('systems');
-       }
-
-       /* Page header*/
-       if (session::is_set('objectinfo')){
-               $display= print_header(get_template_path('images/system.png'), _("System management"), "<img alt=\"\" align=\"middle\" src=\"".get_template_path('images/closedlock.png')."\"> ".@LDAP::fix(session::get('objectinfo')));
-       } else {
-               $display= print_header(get_template_path('images/system.png'), _("System management"));
-       }
+  if(session::is_set('systemManagement')){
+      $macl = session::get('systemManagement');
+      $macl->remove_lock();
+  }
+}
 
-       /* Show and save dialog */
-       $display.= $output;
-       session::set('systems',$systems);
+/* Remove this plugin from session
+*/
+if ( $cleanup ){
+  session::un_set('systemManagement');
+}else{
+
+  /* Create systemManagement object on demand */
+  if (!session::is_set('systemManagement')){
+    $systemManagement= new systemManagement ($config, $ui);
+    session::set('systemManagement',$systemManagement);
+  }
+  $systemManagement = session::get('systemManagement');
+  $display= $systemManagement->execute();
+
+  /* Reset requested? */
+  if (isset($_GET['reset']) && $_GET['reset'] == 1){
+    session::un_set ('systemManagement');
+  }
+
+  /* Show and save dialog */
+  session::set('systemManagement',$systemManagement);
 }
 
+// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
 ?>