+
\ No newline at end of file
diff --git a/www/enhanched_webend/tpl/content.overview.php b/www/enhanched_webend/tpl/content.overview.php
deleted file mode 100644
index 8f4f7f6..0000000
--- a/www/enhanched_webend/tpl/content.overview.php
+++ /dev/null
@@ -1,27 +0,0 @@
-query("SELECT id, time, fms, status, direction, tsi FROM ".$tableFMS." ORDER BY id DESC LIMIT 50");
- $Rows = array();
- while ($daten = $db->fetchAssoc())
- {
- $Rows[] = $daten;
- }
- $tpl['fms'] = $Rows;
-
- //read ZVEI
- $db->query("SELECT id, time, zvei FROM ".$tableZVEI." ORDER BY id DESC LIMIT 50");
- $Rows = array();
- while ($daten = $db->fetchAssoc())
- {
- $Rows[] = $daten;
- }
- $tpl['zvei'] = $Rows;
- //read POCSAG
- $db->query("SELECT id, time, ric, funktion, text FROM ".$tablePOC." ORDER BY id DESC LIMIT 50");
- $Rows = array();
- while ($daten = $db->fetchAssoc())
- {
- $Rows[] = $daten;
- }
- $tpl['poc'] = $Rows;
-?>
diff --git a/www/enhanched_webend/tpl/content.parser.php b/www/enhanched_webend/tpl/content.parser.php
deleted file mode 100644
index 15c5adc..0000000
--- a/www/enhanched_webend/tpl/content.parser.php
+++ /dev/null
@@ -1,3 +0,0 @@
-
\ No newline at end of file
diff --git a/www/enhanched_webend/tpl/mysql.class.php b/www/enhanched_webend/tpl/mysql.class.php
index 9343fdd..69d5fbd 100644
--- a/www/enhanched_webend/tpl/mysql.class.php
+++ b/www/enhanched_webend/tpl/mysql.class.php
@@ -10,9 +10,9 @@ Simple Database Class (C) by Bastian Schroll
/**
* Database::__construct()
- *
+ *
* Stellt eine Verbung mit der MySQL Datenbank fest
- *
+ *
* @param mixed $host Hostname des Datenbank Server
* @param mixed $user Username des Datenbank Nutzers
* @param mixed $password Passwort des Datenbank Nutzers
@@ -40,10 +40,10 @@ Simple Database Class (C) by Bastian Schroll
/**
* Database::query()
- *
- * Führt einen MySQL Query aus
- *
- * @param mixed $query Auszuführender Query
+ *
+ * F�hrt einen MySQL Query aus
+ *
+ * @param mixed $query Auszuf�hrender Query
* @return Result-Handler/FALSE
*/
function query($query)
@@ -59,11 +59,11 @@ Simple Database Class (C) by Bastian Schroll
/**
* Database::fetchAssoc()
- *
- * Liefert alle gefundnen Datensätze als Assoc
- *
+ *
+ * Liefert alle gefundnen Datens�tze als Assoc
+ *
* @param mixed $result Externer Result-Handler
- * @return gefundene Datensätze als Assoc
+ * @return gefundene Datens�tze als Assoc
*/
function fetchAssoc($result = null)
{
@@ -78,11 +78,11 @@ Simple Database Class (C) by Bastian Schroll
/**
* Database::count()
- *
- * Zählt alle gefundenen Datensätze
- *
+ *
+ * Z�hlt alle gefundenen Datens�tze
+ *
* @param mixed $result Externer Result-Handler
- * @return Anzahl gefundener Datensätze
+ * @return Anzahl gefundener Datens�tze
*/
function count($result = null)
{
@@ -97,9 +97,9 @@ Simple Database Class (C) by Bastian Schroll
/**
* Database::closeConnection()
- *
- * Schließt die bestehende MySQL Verbindung
- *
+ *
+ * Schlie�t die bestehende MySQL Verbindung
+ *
* @return TRUE/FALSE
*/
function closeConnection()
@@ -114,9 +114,9 @@ Simple Database Class (C) by Bastian Schroll
/**
* Database::error()
- *
+ *
* Gibt eine Interne Fehlermeldung aus
- *
+ *
* @param mixed $error_msg Text der Fehlermeldung
* @param mixed $sql_err MySQL Fehlermeldung per mysql_error()
* @return NULL
@@ -131,4 +131,4 @@ Simple Database Class (C) by Bastian Schroll
}
}
-} ?>
\ No newline at end of file
+} ?>
diff --git a/www/enhanched_webend/tpl/template.overview.php b/www/enhanched_webend/tpl/template.overview.php
deleted file mode 100644
index 6fd6e2a..0000000
--- a/www/enhanched_webend/tpl/template.overview.php
+++ /dev/null
@@ -1,84 +0,0 @@
-Last alarms for FMS and ZVEI (max. 50)
-
-
-
Last FMS alarms
-
-
- | ID |
- Datum - Zeit |
- FMS |
- Stat. |
- Richt. |
- TKI |
-
- ";
- echo "". $fms['id'] . " | ";
- echo "". $time . " | ";
- echo "". $fms['fms'] . " | ";
- echo "". $fms['status'] . " | ";
- echo "". $fms['direction'] . " | ";
- echo "". $fms['tsi'] . " | ";
- echo "";
- }
- ?>
-
-
-
Last POCSAG alarms
-
-
- | ID |
- Datum - Zeit |
- RIC |
- Funktion |
- Text |
-
- ";
- echo "". $poc['id'] . " | ";
- echo "". $time . " | ";
- echo "". $poc['ric'] . " | ";
- echo "". $poc['funktion'] . " | ";
- echo "". $poc['text'] . " | ";
- echo "";
- }
- ?>
-
-
-
-
-
Last ZVEI alarms
-
-
- | ID |
- Datum - Zeit |
- Schleife |
-
- ";
- echo "". $zvei['id'] . " | ";
- echo "". $time . " | ";
- echo "". $zvei['zvei'] . " | ";
- echo "";
- }
- ?>
-
-
diff --git a/www/enhanched_webend/tpl/template.parser.php b/www/enhanched_webend/tpl/template.parser.php
deleted file mode 100644
index e69de29..0000000
diff --git a/www/enhanched_webend/tpl_old/content.overview.php b/www/enhanched_webend/tpl_old/content.overview.php
deleted file mode 100644
index e69de29..0000000
diff --git a/www/enhanched_webend/tpl_old/content.parser.php b/www/enhanched_webend/tpl_old/content.parser.php
deleted file mode 100644
index 15c5adc..0000000
--- a/www/enhanched_webend/tpl_old/content.parser.php
+++ /dev/null
@@ -1,3 +0,0 @@
-
\ No newline at end of file
diff --git a/www/enhanched_webend/tpl_old/template.overview.php b/www/enhanched_webend/tpl_old/template.overview.php
deleted file mode 100644
index c3feb55..0000000
--- a/www/enhanched_webend/tpl_old/template.overview.php
+++ /dev/null
@@ -1,72 +0,0 @@
-
- query("SELECT id, time, ric, funktion, text, description FROM ".$tablePOC." ORDER BY id DESC LIMIT 50");
- $Rows = array();
- while ($daten = $db->fetchAssoc())
- {
- $Rows[] = $daten;
- }
- $tpl['poc'] = $Rows;
-?>
-
-
-
-
-
-
- | Datum - Uhrzeit |
- Funktion |
- Einheit |
- Alarmtext |
- RIC |
- |
-
- ";
- echo "". $time . " | ";
-
- if ($poc['funktion'] == 1)
- echo "A. hö. Drg. | ";
- if ($poc['funktion'] == 2)
- echo "Alarm | ";
- if ($poc['funktion'] == 3)
- echo "Einsatz | ";
- if ($poc['funktion'] == 4)
- echo "Einsatz abbrechen | ";
-
-
- echo "". $poc['description'] . " | ";
- echo "". $poc['text'] . " | ";
- echo "". $poc['ric'] . $poc['funktion'] . " | ";
- echo "". $poc['funktion'] . " | ";
- echo "";
- }
- ?>
-
-
-
diff --git a/www/enhanched_webend/tpl_old/template.overview.php+ b/www/enhanched_webend/tpl_old/template.overview.php+
deleted file mode 100644
index 9bc330b..0000000
--- a/www/enhanched_webend/tpl_old/template.overview.php+
+++ /dev/null
@@ -1,37 +0,0 @@
-
Alamierungen Feuerwehr Hamm
-
-
- | ID |
- Datum - Zeit |
- RIC |
- Funktion |
- Text |
-
- ";
- echo "". $poc['id'] . " | ";
- echo "". $time . " | ";
- echo "". $poc['ric'] . " | ";
- echo "". $poc['funktion'] . " | ";
- echo "". $poc['text'] . " | ";
- echo "";
- }
- ?>
-
-
diff --git a/www/enhanched_webend/tpl_old/template.overview.php.temp b/www/enhanched_webend/tpl_old/template.overview.php.temp
deleted file mode 100644
index 6fd6e2a..0000000
--- a/www/enhanched_webend/tpl_old/template.overview.php.temp
+++ /dev/null
@@ -1,84 +0,0 @@
-Last alarms for FMS and ZVEI (max. 50)
-
-
-
Last FMS alarms
-
-
- | ID |
- Datum - Zeit |
- FMS |
- Stat. |
- Richt. |
- TKI |
-
- ";
- echo "". $fms['id'] . " | ";
- echo "". $time . " | ";
- echo "". $fms['fms'] . " | ";
- echo "". $fms['status'] . " | ";
- echo "". $fms['direction'] . " | ";
- echo "". $fms['tsi'] . " | ";
- echo "";
- }
- ?>
-
-
-
Last POCSAG alarms
-
-
- | ID |
- Datum - Zeit |
- RIC |
- Funktion |
- Text |
-
- ";
- echo "". $poc['id'] . " | ";
- echo "". $time . " | ";
- echo "". $poc['ric'] . " | ";
- echo "". $poc['funktion'] . " | ";
- echo "". $poc['text'] . " | ";
- echo "";
- }
- ?>
-
-
-
-
-
Last ZVEI alarms
-
-
- | ID |
- Datum - Zeit |
- Schleife |
-
- ";
- echo "". $zvei['id'] . " | ";
- echo "". $time . " | ";
- echo "". $zvei['zvei'] . " | ";
- echo "";
- }
- ?>
-
-
diff --git a/www/enhanched_webend/tpl_old/template.parser.php b/www/enhanched_webend/tpl_old/template.parser.php
deleted file mode 100644
index e69de29..0000000