summaryrefslogtreecommitdiff
path: root/classes/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-12-13 10:58:30 +0400
committerAndrew Dolgov <[email protected]>2011-12-13 10:58:30 +0400
commit611efae712769e38e232478b484779d73af263db (patch)
treeb1601297d750f42ca456f3b7de9673905fbc8d9c /classes/backend.php
parent1f203144a278f9765da40e20f09cc653d4d8276e (diff)
add catchall backend class
Diffstat (limited to 'classes/backend.php')
-rw-r--r--classes/backend.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/classes/backend.php b/classes/backend.php
new file mode 100644
index 000000000..47fc2d826
--- /dev/null
+++ b/classes/backend.php
@@ -0,0 +1,10 @@
+<?php
+class Backend extends Handler {
+
+ function loading() {
+ header("Content-type: text/html");
+ print __("Loading, please wait...") . " " .
+ "<img src='images/indicator_tiny.gif'>";
+ }
+}
+?>