mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 17:31:59 +01:00
27 lines
383 B
PHP
27 lines
383 B
PHP
<?php
|
|
|
|
class ControllerCommonLayoutHealth extends Controller {
|
|
|
|
protected function index() {
|
|
|
|
|
|
$this->data['title'] = $this->document->title;
|
|
|
|
$this->template = "common/layout-health.tpl";
|
|
|
|
|
|
$this->children = array(
|
|
"common/menu",
|
|
"common/footer"
|
|
);
|
|
|
|
$this->render();
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
?>
|