Code

Updated stats
[gosa.git] / gosa-core / plugins / generic / dashBoard / main.inc
index f738eb671490223444905c1a5bb81a320ae5c384..9b2ee3b3ab1717513137e68c13309da9d53ea527 100644 (file)
@@ -1,32 +1,51 @@
 <?php
 /*
- * This code is part of GOsa (http://www.gosa-project.org)
- * Copyright (C) 2003-2008 GONICUS GmbH
- *
- * ID: $$Id: main.inc 13287 2008-12-12 14:36:42Z hickert $$
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- */
-
-if (!$cleanup){
-       session::set('plugin_dir',dirname(__FILE__));
-       $smarty->assign("iconmenu", $plist->show_iconmenu());
-       $smarty->assign("header", print_header(get_template_path('images/welcome.png'), sprintf(_("Welcome %s!"), $ui->cn)));
-       $smarty->assign("year", date("Y"));
-       $smarty->assign("revision", get_gosa_version());
-       $display= $smarty->fetch(get_template_path('welcome.tpl', TRUE));
+  This code is part of GOsa (https://gosa.gonicus.de)
+  Copyright (C) 2003  Cajus Pollmeier
+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software
+  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+*/
+
+
+/* Remove locks created by this plugin
+*/
+if ($remove_lock){
+  if(session::is_set('dashBoard')){
+       // Nothing to unlock here
+  }
 }
 
+/* Remove this plugin from session
+*/
+if ( $cleanup ){
+  session::un_set('dashBoard');
+}else{
+
+
+       /* Create logview object on demand */
+       if (!session::is_set('dashBoard')){
+               session::set('dashBoard',new dashBoard($config));
+       }
+       $dashBoard = session::get('dashBoard');
+
+       /* Execute formular */
+       $display= $dashBoard->save_object();
+       $display= $dashBoard->execute ();
+       $display.= "<input type=\"hidden\" name=\"ignore\">\n";
+
+       /* Store changes  in session */
+       session::set('dashBoard',$dashBoard);
+}
 ?>