Code

Created trunk inside of 2.6-lhm
[gosa.git] / trunk / gosa-plugins / sudo / admin / sudo / main.inc
1 <?php
2 /*
3  * This code is part of GOsa (http://www.gosa-project.org)
4  * Copyright (C) 2003-2008 GONICUS GmbH
5  *
6  * ID: $$Id: main.inc 9275 2008-03-04 07:29:22Z cajus $$
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
24 /* Remove locks created by this plugin
25 */
26 if ($remove_lock){
27   if(session::is_set('sudoManagement')){
28       $macl = session::get('sudoManagement');
29       $macl->remove_lock();
30   }
31 }
33 /* Remove this plugin from session
34 */
35 if ( $cleanup ){
36   session::un_set('sudoManagement');
37 }else{
39   /* Create sudoManagement object on demand */
40   if (!session::is_set('sudoManagement')){
41     session::set('sudoManagement',new sudoManagement ($config, $ui));
42   }
43   $sudoManagement = session::get('sudoManagement');
44   $sudoManagement->save_object();
45   $output= $sudoManagement->execute();
47   /* Page header*/
48   if (get_object_info() != ""){
49     $display= print_header(get_template_path('plugins/sudo/images/sudo.png'),
50                             _("Sudo role administration"), "<img alt=\"\" align=\"middle\" src=\"".
51                             get_template_path('images/lists/locked.png')."\"> ".
52                             LDAP::fix(get_object_info()));
53   } else {
54     $display= print_header(get_template_path('plugins/sudo/images/sudo.png'), _("Sudo role administration"));
55   }
57   $display.= $output;
59   /* Reset requested? */
60   if (isset($_GET['reset']) && $_GET['reset'] == 1){
61     session::un_set ('sudoManagement');
62   }
64   /* Show and save dialog */
65   session::set('sudoManagement',$sudoManagement);
66 }
68 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
69 ?>