Code

Added storage RDN properties.
[gosa.git] / gosa-plugins / goto / admin / devices / main.inc
index 348808529c2e2d5614c9993f119b5f718afb1f07..d02004e449c545ccb3aca79ec26229d0f4f312ee 100644 (file)
@@ -1,62 +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: main.inc 14740 2009-11-04 09:41:16Z hickert $$
+ *
+ * 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 classes and variables from session
- */
-if ( $cleanup ){
-  session::un_set('DeviceManagement');
-}
-
-
+/* Remove locks created by this plugin
+*/
 if ($remove_lock){
-  if(session::is_set('DeviceManagement')){
-    $DeviceManagement = session::get('DeviceManagement');
-    $DeviceManagement->remove_lock();
-  }
-} else {
-
-  /* Create DeviceManagement object on demand */
-  if (!session::is_set('DeviceManagement') || (isset($_GET['reset']) && $_GET['reset'] == 1)){
-    session::set('DeviceManagement',new deviceManagement ($config));
+  if(session::is_set('deviceManagement')){
+      $macl = session::get('deviceManagement');
+      $macl->remove_lock();
   }
+}
 
-  /* Get object */
-  $DeviceManagement = session::get('DeviceManagement');
-  $DeviceManagement->save_object();
-  $output= $DeviceManagement->execute();
+/* Remove this plugin from session
+*/
+if ( $cleanup ){
+  session::un_set('deviceManagement');
+}else{
 
-  /* Page header*/
-  if (get_object_info() != ""){
-    $display= print_header(get_template_path($DeviceManagement->plIcon), _("Hotplug device management"), "<img alt=\"\" align=\"middle\" src=\"".get_template_path('images/lists/locked.png')."\"> ".LDAP::fix(get_object_info()));
-  } else {
-    $display= print_header(get_template_path($DeviceManagement->plIcon), _("Hotplug device management"));
+  /* Create devicemanagement object on demand */
+  if (!session::is_set('deviceManagement')){
+    $deviceManagement= new deviceManagement ($config, $ui);
+    session::set('deviceManagement',$deviceManagement);
   }
+  $deviceManagement = session::get('deviceManagement');
+  $display= $deviceManagement->execute();
 
   /* Reset requested? */
   if (isset($_GET['reset']) && $_GET['reset'] == 1){
-    session::un_set ('DeviceManagement');
+    session::un_set ('deviceManagement');
   }
 
   /* Show and save dialog */
-  $display.= $output;
-  session::set('DeviceManagement',$DeviceManagement);
+  session::set('deviceManagement',$deviceManagement);
 }
+
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
 ?>