summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 6f35689)
raw | patch | inline | side by side (parent: 6f35689)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 21 Jul 2008 12:40:42 +0000 (12:40 +0000) | ||
committer | hickert <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
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@11728 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/goto/admin/devices/main.inc | patch | blob | history |
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:
?>