mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 17:31:59 +01:00
19 lines
205 B
PHP
19 lines
205 B
PHP
<?php
|
|
|
|
|
|
class ControllerCommonFooter extends Controller {
|
|
|
|
protected function index() {
|
|
|
|
$this->id = "footer";
|
|
$this->template = "common/footer.tpl";
|
|
|
|
|
|
$this->render();
|
|
}
|
|
|
|
|
|
}
|
|
|
|
?>
|