11 lines
196 B
PHP
11 lines
196 B
PHP
|
<?php
|
||
|
class Backend extends Handler {
|
||
|
|
||
|
function loading() {
|
||
|
header("Content-type: text/html");
|
||
|
print __("Loading, please wait...") . " " .
|
||
|
"<img src='images/indicator_tiny.gif'>";
|
||
|
}
|
||
|
}
|
||
|
?>
|