piler/webui/controller/common/layout-health.php

27 lines
383 B
PHP
Raw Normal View History

2012-02-08 23:14:28 +01:00
<?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();
}
}
?>