1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 04:05:55 +00:00

add catchall backend class

This commit is contained in:
Andrew Dolgov
2011-12-13 10:58:30 +04:00
parent 1f203144a2
commit 611efae712
5 changed files with 29 additions and 23 deletions

10
classes/backend.php Normal file
View File

@@ -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'>";
}
}
?>