boka3/include/ReturnPage.php
Erik Thuning 692c2e0aeb Broke all classes into separate files and activated class autoloading.
All free functions are now in functions.php
2019-06-11 17:05:48 +02:00

8 lines
136 B
PHP

<?php
class ReturnPage extends Page {
protected function render_body() {
print($this->fragments['return_page']);
}
}
?>