11 lines
114 B
PHP
11 lines
114 B
PHP
<?php
|
|
|
|
class page_handler {
|
|
var $needsAuth = true;
|
|
|
|
function handle($input) {
|
|
$this->output = "rat";
|
|
}
|
|
}
|
|
|
|
?>
|