From 5cc0928c2bd312e64b0400ad7f8644e1c4e599cf Mon Sep 17 00:00:00 2001 From: hickert Date: Tue, 29 Jun 2010 13:54:30 +0000 Subject: [PATCH] Updated dashBoard git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18873 594d385d-05f5-0310-b6e9-bd551577e9d8 --- .../generic/dashBoard/class_dashBoard.inc | 8 ++ .../dashBoard/{welcome.tpl => dashBoard.tpl} | 0 gosa-core/plugins/generic/dashBoard/main.inc | 73 ++++++++++++------- 3 files changed, 54 insertions(+), 27 deletions(-) rename gosa-core/plugins/generic/dashBoard/{welcome.tpl => dashBoard.tpl} (100%) diff --git a/gosa-core/plugins/generic/dashBoard/class_dashBoard.inc b/gosa-core/plugins/generic/dashBoard/class_dashBoard.inc index 5e75d52bb..6dce8e7fa 100644 --- a/gosa-core/plugins/generic/dashBoard/class_dashBoard.inc +++ b/gosa-core/plugins/generic/dashBoard/class_dashBoard.inc @@ -7,6 +7,14 @@ class dashBoard extends plugin var $plShortIcon = 'dashBoard.png'; var $plIcon = 'dashBoard.png'; + + function execute() + { + $smarty = get_smarty(); + + return($smarty->fetch(get_template_path('dashBoard.tpl', TRUE))); + + } } ?> diff --git a/gosa-core/plugins/generic/dashBoard/welcome.tpl b/gosa-core/plugins/generic/dashBoard/dashBoard.tpl similarity index 100% rename from gosa-core/plugins/generic/dashBoard/welcome.tpl rename to gosa-core/plugins/generic/dashBoard/dashBoard.tpl diff --git a/gosa-core/plugins/generic/dashBoard/main.inc b/gosa-core/plugins/generic/dashBoard/main.inc index f738eb671..9b2ee3b3a 100644 --- a/gosa-core/plugins/generic/dashBoard/main.inc +++ b/gosa-core/plugins/generic/dashBoard/main.inc @@ -1,32 +1,51 @@ 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.= "\n"; + + /* Store changes in session */ + session::set('dashBoard',$dashBoard); +} ?> -- 2.30.2