summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7a5600f)
raw | patch | inline | side by side (parent: 7a5600f)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 26 Nov 2010 15:13:22 +0000 (15:13 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 26 Nov 2010 15:13:22 +0000 (15:13 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@20389 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/plugins/generic/infoPage/class_infoPage.inc | [new file with mode: 0644] | patch | blob |
gosa-core/plugins/generic/infoPage/infoPage.tpl | [new file with mode: 0644] | patch | blob |
gosa-core/plugins/generic/infoPage/main.inc | [new file with mode: 0644] | patch | blob |
diff --git a/gosa-core/plugins/generic/infoPage/class_infoPage.inc b/gosa-core/plugins/generic/infoPage/class_infoPage.inc
--- /dev/null
@@ -0,0 +1,13 @@
+<?php
+
+class infoPage extends plugin
+{
+
+ function exectue()
+ {
+ $smarty = get_smarty();
+ return($smarty->fetch(get_template_path("infoPage.tpl")));
+ }
+}
+
+?>
diff --git a/gosa-core/plugins/generic/infoPage/infoPage.tpl b/gosa-core/plugins/generic/infoPage/infoPage.tpl
--- /dev/null
@@ -0,0 +1 @@
+asdf
diff --git a/gosa-core/plugins/generic/infoPage/main.inc b/gosa-core/plugins/generic/infoPage/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('infoPage')){
+ // Nothing to unlock here
+ }
+}
+
+/* Remove this plugin from session
+*/
+if ( $cleanup ){
+ # session::un_set('infoPage');
+}else{
+
+
+ /* Create logview object on demand */
+ if (!session::is_set('infoPage')){
+ session::set('infoPage',new infoPage($config));
+ }
+ $infoPage = session::get('infoPage');
+
+ /* Execute formular */
+ $display= $infoPage->save_object();
+ $display= $infoPage->execute ();
+ $display.= "<input type=\"hidden\" name=\"ignore\">\n";
+
+ /* Store changes in session */
+ session::set('infoPage',$infoPage);
+}
+?>