summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 75a55c3)
raw | patch | inline | side by side (parent: 75a55c3)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 5 Aug 2010 09:01:21 +0000 (09:01 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 5 Aug 2010 09:01:21 +0000 (09:01 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19362 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/plugins/generic/statistics/class_statistics.inc | [new file with mode: 0644] | patch | blob |
gosa-core/plugins/generic/statistics/main.inc | [new file with mode: 0644] | patch | blob |
gosa-core/plugins/generic/statistics/statistics.tpl | [new file with mode: 0644] | patch | blob |
diff --git a/gosa-core/plugins/generic/statistics/class_statistics.inc b/gosa-core/plugins/generic/statistics/class_statistics.inc
--- /dev/null
@@ -0,0 +1,33 @@
+<?php
+
+class statistics extends plugin
+{
+ var $plHeadline = 'Statistics';
+ var $plDescription = 'GOsa usage statistics';
+ var $plShortIcon = 'statistics.png';
+ var $plIcon = 'plugin.png';
+
+ function __construct($config)
+ {
+ plugin::plugin($config, NULL);
+
+ }
+
+ function execute()
+ {
+ $smarty = get_smarty();
+ return($smarty->fetch(get_template_path('statistics.tpl', TRUE)));
+ }
+
+ function check()
+ {
+ $messages = plugin::check();
+ return($messages);
+ }
+
+ function save_object()
+ {
+ plugin::save_object();
+ }
+}
+?>
diff --git a/gosa-core/plugins/generic/statistics/main.inc b/gosa-core/plugins/generic/statistics/main.inc
--- /dev/null
@@ -0,0 +1,51 @@
+<?php
+/*
+ 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('statistics')){
+ // Nothing to unlock here
+ }
+}
+
+/* Remove this plugin from session
+*/
+if ( $cleanup ){
+ session::un_set('statistics');
+}else{
+
+
+ /* Create logview object on demand */
+ if (!session::is_set('statistics')){
+ session::set('statistics',new statistics($config));
+ }
+ $statistics = session::get('statistics');
+
+ /* Execute formular */
+ $display= $statistics->save_object();
+ $display= $statistics->execute ();
+ $display.= "<input type=\"hidden\" name=\"ignore\">\n";
+
+ /* Store changes in session */
+ session::set('statistics',$statistics);
+}
+?>
diff --git a/gosa-core/plugins/generic/statistics/statistics.tpl b/gosa-core/plugins/generic/statistics/statistics.tpl