Code

Updated main.inc for devices
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 21 Jul 2008 12:40:42 +0000 (12:40 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 21 Jul 2008 12:40:42 +0000 (12:40 +0000)
-Fixed code indent.

git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@11728 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-plugins/goto/admin/devices/main.inc

index 385e88e865a2f3ba51b5e2953291be4089fde6bb..549a6b3cc7cde18ea2d7a8f633f4121cdf220029 100644 (file)
  */
 
 if ($remove_lock){
-               if(session::is_set('DeviceManagement')){
-                               $DeviceManagement = session::get('DeviceManagement');
-                               $DeviceManagement->remove_lock();
-                               session::un_set ('DeviceManagement');
-               }
+  if(session::is_set('DeviceManagement')){
+    $DeviceManagement = session::get('DeviceManagement');
+    $DeviceManagement->remove_lock();
+    session::un_set ('DeviceManagement');
+  }
 } else {
 
-               /* Create DeviceManagement object on demand */
-               if (!session::is_set('DeviceManagement') || (isset($_GET['reset']) && $_GET['reset'] == 1)){
-                       session::set('DeviceManagement',new deviceManagement ($config));
-               }
-
-               /* Get object */
-               $DeviceManagement = session::get('DeviceManagement');
-               $DeviceManagement->save_object();
-               $output= $DeviceManagement->execute();
-
-               /* Page header*/
-               if (session::is_set('objectinfo')){
-                               $display= print_header(get_template_path('images/devices.png'), _("Hotplug device management"), "<img alt=\"\" align=\"middle\" src=\"".get_template_path('images/lists/locked.png')."\"> ".@LDAP::fix(session::get('objectinfo')));
-               } else {
-                               $display= print_header(get_template_path('images/devices.png'), _("Hotplug device management"));
-               }
-
-               /* Reset requested? */
-               if (isset($_GET['reset']) && $_GET['reset'] == 1){
-                               del_lock ($ui->dn);
-                               session::un_set ('DeviceManagement');
-               }
-
-               /* Show and save dialog */
-               $display.= $output;
-               session::set('DeviceManagement',$DeviceManagement);
+  /* Create DeviceManagement object on demand */
+  if (!session::is_set('DeviceManagement') || (isset($_GET['reset']) && $_GET['reset'] == 1)){
+    session::set('DeviceManagement',new deviceManagement ($config));
+  }
+
+  /* Get object */
+  $DeviceManagement = session::get('DeviceManagement');
+  $DeviceManagement->save_object();
+  $output= $DeviceManagement->execute();
+
+  /* Page header*/
+  if (session::is_set('objectinfo')){
+    $display= print_header(get_template_path('images/devices.png'), _("Hotplug device management"), "<img alt=\"\" align=\"middle\" src=\"".get_template_path('images/lists/locked.png')."\"> ".@LDAP::fix(session::get('objectinfo')));
+  } else {
+    $display= print_header(get_template_path('images/devices.png'), _("Hotplug device management"));
+  }
+
+  /* Reset requested? */
+  if (isset($_GET['reset']) && $_GET['reset'] == 1){
+    del_lock ($ui->dn);
+    session::un_set ('DeviceManagement');
+  }
+
+  /* Show and save dialog */
+  $display.= $output;
+  session::set('DeviceManagement',$DeviceManagement);
 }
+// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
 ?>