Code

Added config viewer plugin
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 4 May 2010 09:38:34 +0000 (09:38 +0000)
committerhickert <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

gosa-core/plugins/addons/configViewer/class_configViewer.inc [new file with mode: 0644]
gosa-core/plugins/addons/configViewer/main.inc [new file with mode: 0644]

diff --git a/gosa-core/plugins/addons/configViewer/class_configViewer.inc b/gosa-core/plugins/addons/configViewer/class_configViewer.inc
new file mode 100644 (file)
index 0000000..4b9543b
--- /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
new file mode 100644 (file)
index 0000000..529634d
--- /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);
+}
+?>