10 lines
196 B
PHP
10 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'>";
|
|
}
|
|
}
|
|
?>
|