summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0f3cca8)
raw | patch | inline | side by side (parent: 0f3cca8)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 4 May 2010 09:38:34 +0000 (09:38 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 4 May 2010 09:38:34 +0000 (09:38 +0000) |
-Not yet finished ..
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18030 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18030 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/plugins/addons/configViewer/class_configViewer.inc | [new file with mode: 0644] | patch | blob |
gosa-core/plugins/addons/configViewer/main.inc | [new file with mode: 0644] | patch | blob |
diff --git a/gosa-core/plugins/addons/configViewer/class_configViewer.inc b/gosa-core/plugins/addons/configViewer/class_configViewer.inc
--- /dev/null
@@ -0,0 +1,18 @@
+<?php
+
+class configViewer extends plugin
+{
+ var $plHeadline= "Config viewer";
+ var $plDescription= "Allows to modify configuration values";
+
+ function __construct (&$config, $dn= NULL)
+ {
+
+ }
+
+ function execute()
+ {
+ return('Ja');
+ }
+}
+?>
diff --git a/gosa-core/plugins/addons/configViewer/main.inc b/gosa-core/plugins/addons/configViewer/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('configViewer')){
+ // Nothing to unlock here
+ }
+}
+
+/* Remove this plugin from session
+ */
+if ( $cleanup ){
+ session::un_set('configViewer');
+}else{
+
+
+ /* Create logview object on demand */
+ if (!session::is_set('configViewer')){
+ session::set('configViewer',new configViewer($config));
+ }
+ $configViewer = session::get('configViewer');
+
+ /* Execute formular */
+ $display= $configViewer->save_object();
+ $display= $configViewer->execute ();
+ $display.= "<input type=\"hidden\" name=\"ignore\">\n";
+
+ /* Store changes in session */
+ session::set('configViewer',$configViewer);
+}
+?>