Code

Added delimiter to preg_quote
[gosa.git] / gosa-plugins / goto / admin / devices / main.inc
index 385e88e865a2f3ba51b5e2953291be4089fde6bb..45aaf4a433f34fd23e6b08b9dcb01aec2d03161e 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($DeviceManagement->plIcon), _("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($DeviceManagement->plIcon), _("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:
 ?>