Code

Fixed date of birth && userPicture
[gosa.git] / plugins / personal / nagios / main.inc
1 <?php
2 /*
3    This code is part of GOsa (https://gosa.gonicus.de)
4    Copyright (C) 2005  Benoit Mortier
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
21 if (!$remove_lock){
22   /* Reset requested? */
23   if (isset($_POST['edit_cancel']) || 
24       (isset($_GET['reset']) && $_GET['reset'] == 1)){
25     del_lock ($ui->dn);
26     sess_del ('edit');
27     sess_del ('nagiosAccount');
28   }
30   /* Create mail object on demand */
31   if (!isset($_SESSION['nagiosAccount']) || (isset($_GET['reset']) && $_GET['reset'] == 1)){
32     $_SESSION['nagiosAccount']= new nagiosAccount ($config, $ui->dn);
33   }
34   $nagiosAccount= $_SESSION['nagiosAccount'];
36   /* save changes back to object */
37   if (isset ($_SESSION['edit'])){
38     $nagiosAccount->save_object ();
39   }
41   /* Enter edit mode? */
42   if (isset($_POST['edit'])){
44     /* Check locking */
45     if (($username= get_lock($ui->dn)) != ""){
46       $_SESSION['back_plugin']= $plug;
47       gen_locked_message ($username, $ui->dn);
48       exit ();
49     }
51     /* Lock the current entry */
52     add_lock ($ui->dn, $ui->dn);
53     $_SESSION['dn']= $ui->dn;
54     $_SESSION['edit']= TRUE;
55   }
57   /* save changes to LDAP and disable edit mode */
58   if (isset($_POST['edit_finish'])){
60     /* Perform checks */
61     $message= $nagiosAccount->check ();
63     /* No errors, save object */
64     if (count ($message) == 0){
65       $nagiosAccount->save ();
66       gosa_log ("User/nagios object'".$ui->dn."' has been saved");
67       del_lock ($ui->dn);
68       sess_del ('edit');
70       /* Store object */
71       $_SESSION['nagiosAccount']= $nagiosAccount;
72     } else {
73       /* Errors found, show message */
74       show_errors ($message);
75     }
76   }
78   /* Execute formular */
79   $display= $nagiosAccount->execute ();
81   /* Store changes  in session */
82   if (isset ($_SESSION['edit'])){
83     $_SESSION['nagiosAccount']= $nagiosAccount;
84   }
86   $info= "";
87   /* Show page footer depending on the mode */
88   if ($nagiosAccount->is_account){
89     $display.= "<p class=\"plugbottom\">";
91     /* Are we in edit mode? */
92     if (isset($_SESSION['edit'])){
93       $display.= "<input type=submit name=\"edit_finish\" style=\"width:80px\" value=\""._("Ok")."\">\n";
94       $display.= "&nbsp;";
95       $display.= "<input type=submit name=\"edit_cancel\" value=\""._("Cancel")."\">\n";
96       $info= "<img alt=\"\" align=\"middle\" src=\"".get_template_path('images/closedlock.png').
97              "\"> ".$ui->dn."&nbsp;";
98     } else {
99       $info= "<img alt=\"\" align=\"middle\" src=\"".get_template_path('images/openlock.png').
100              "\"> ".$ui->dn."&nbsp;";
102       echo "FIXME : user -> nagios, 102 Only display edit button if there is at least one attribute editable.";
103       $info.= "<img alt=\"\" align=\"middle\" src=\"".get_template_path('images/lamp.png').
104         "\"> "._("Click the 'Edit' button below to change informations in this dialog");
105       $display.= "<input type=submit name=\"edit\" value=\""._("Edit")."\">\n";
107       $display.= "<input type=\"hidden\" name=\"ignore\">\n";
108     }
109     $display.= "</p>\n";
110   }
112   /* Page header*/
113   $display= print_header(get_template_path('images/monitoring.png'), _("Nagios settings"), $info).$display;
117 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
118 ?>