gitarre
authorMichael Wagner <michael@wagnertech.de>
Mon, 6 Feb 2023 13:22:10 +0000 (14:22 +0100)
committerMichael Wagner <michael@wagnertech.de>
Mon, 6 Feb 2023 13:22:10 +0000 (14:22 +0100)
Mitgliederverwaltung/AWK/MVAdmin.php [new file with mode: 0644]
Mitgliederverwaltung/AWK/impl/.dummy [new file with mode: 0644]
Mitgliederverwaltung/gui/ConfigurationData.php [new file with mode: 0644]
Mitgliederverwaltung/gui/index.php [new file with mode: 0644]
Mitgliederverwaltung/gui/name_map.php [new file with mode: 0644]
Mitgliederverwaltung/gui/view/.dummy [new file with mode: 0644]

diff --git a/Mitgliederverwaltung/AWK/MVAdmin.php b/Mitgliederverwaltung/AWK/MVAdmin.php
new file mode 100644 (file)
index 0000000..d1b89c0
--- /dev/null
@@ -0,0 +1,14 @@
+<?php
+
+// imports
+require_once 'GenericAdmin/GenericAdmin.php';
+require_once 'util/Config.php';
+
+class MVAdmin extends GenericAdmin {
+
+       function MVAdmin() {
+               // Generic Administration configuration data
+               require 'AWK/impl/GenadData.php';
+               parent::setDscrData($mocd_tab, $atdc_tab);
+       }
+}
diff --git a/Mitgliederverwaltung/AWK/impl/.dummy b/Mitgliederverwaltung/AWK/impl/.dummy
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/Mitgliederverwaltung/gui/ConfigurationData.php b/Mitgliederverwaltung/gui/ConfigurationData.php
new file mode 100644 (file)
index 0000000..bb3ef9d
--- /dev/null
@@ -0,0 +1,8 @@
+<?php
+$configurationData = array (
+
+       "gui::applications" => array ("Mitgliederverwaltung"), 
+       "autoloader" => array ("ClassLoader", "autoload"),
+       "Mitgliederverwaltung::InterfaceClass" => "MVAdmin",
+       "PropelClassPath"       => "AWK/impl/data/build"
+       );
diff --git a/Mitgliederverwaltung/gui/index.php b/Mitgliederverwaltung/gui/index.php
new file mode 100644 (file)
index 0000000..bc674a8
--- /dev/null
@@ -0,0 +1,41 @@
+<?php
+//phpinfo();
+
+// define user
+$user = getenv("USER");
+if ($user == "") putenv("USER=gui");
+
+// includes
+$path = preg_replace("/SVBaL.*/", "SVBaL", __FILE__);
+set_include_path($path . PATH_SEPARATOR . get_include_path());
+require_once 'util/Logger.php';
+require_once 'util/Config.php';
+require_once 'GenericAdmin/gui/control/GenadControl.php';
+
+// load configuration + class loader
+include 'gui/ConfigurationData.php';
+Config::setConfiguration($configurationData);
+
+// Logging
+$logger = Logger::getInstance();
+$requestMethod = $_SERVER["REQUEST_METHOD"];
+$logger->log(__FILE__, $requestMethod);
+$logger->log(__FILE__, "GET-Variabeles:");
+while ( list($key, $value) = each($_GET) ) {
+       $logger->log(__FILE__, $key . " : " . $value);;
+}
+$logger->log(__FILE__, "POST-Variabeles:");
+while ( list($key, $value) = each($_POST) ) {
+       $logger->log(__FILE__, $key . " : " . $value);;
+}
+
+// call implementation
+try {
+       $control = new GenadControl();
+       $control->doIt();
+}
+catch (Exception $e) {
+       $logger->logException(__FILE__, $e);    
+       echo "<html><body>Error occurred!</body></html>";
+}
+
diff --git a/Mitgliederverwaltung/gui/name_map.php b/Mitgliederverwaltung/gui/name_map.php
new file mode 100644 (file)
index 0000000..54afac8
--- /dev/null
@@ -0,0 +1,10 @@
+<?php
+$this->nameMap = array (
+       "Back" => "Zurück",
+       "Class Selection" => "Typ",
+       "Create" => "Anlegen",
+       "List" => "Liste",
+       "Select" => "Auswählen",
+       "Submit changes" => "Änderungen speichern",
+       "zur_Zeit_bei" => "zur Zeit bei"
+);
diff --git a/Mitgliederverwaltung/gui/view/.dummy b/Mitgliederverwaltung/gui/view/.dummy
new file mode 100644 (file)
index 0000000..e69de29