dn); sess_del ('edit'); sess_del ('nagiosAccount'); } /* Create mail object on demand */ if (!isset($_SESSION['nagiosAccount']) || (isset($_GET['reset']) && $_GET['reset'] == 1)){ $_SESSION['nagiosAccount']= new nagiosAccount ($config, $ui->dn); } $nagiosAccount= $_SESSION['nagiosAccount']; /* save changes back to object */ if (isset ($_SESSION['edit'])){ $nagiosAccount->save_object (); } /* Enter edit mode? */ if (isset($_POST['edit'])){ /* Check locking */ if (($username= get_lock($ui->dn)) != ""){ $_SESSION['back_plugin']= $plug; gen_locked_message ($username, $ui->dn); exit (); } /* Lock the current entry */ add_lock ($ui->dn, $ui->dn); $_SESSION['dn']= $ui->dn; $_SESSION['edit']= TRUE; } /* save changes to LDAP and disable edit mode */ if (isset($_POST['edit_finish'])){ /* Perform checks */ $message= $nagiosAccount->check (); /* No errors, save object */ if (count ($message) == 0){ $nagiosAccount->save (); gosa_log ("User/nagios object'".$ui->dn."' has been saved"); del_lock ($ui->dn); sess_del ('edit'); /* Store object */ $_SESSION['nagiosAccount']= $nagiosAccount; } else { /* Errors found, show message */ show_errors ($message); } } /* Execute formular */ $display= $nagiosAccount->execute (); /* Store changes in session */ if (isset ($_SESSION['edit'])){ $_SESSION['nagiosAccount']= $nagiosAccount; } $info= ""; /* Show page footer depending on the mode */ if ($nagiosAccount->is_account){ $display.= "

"; /* Are we in edit mode? */ if (isset($_SESSION['edit'])){ $display.= "\n"; $display.= " "; $display.= "\n"; $info= "\"\" ".$ui->dn." "; } else { $info= "\"\" ".$ui->dn." "; echo "FIXME : user -> nagios, 102 Only display edit button if there is at least one attribute editable."; $info.= "\"\" "._("Click the 'Edit' button below to change informations in this dialog"); $display.= "\n"; $display.= "\n"; } $display.= "

\n"; } /* Page header*/ $display= print_header(get_template_path('images/monitoring.png'), _("Nagios settings"), $info).$display; } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?>