piler/webui/controller/common/layout-minimal.php
2012-06-27 11:17:23 +02:00

27 lines
385 B
PHP

<?php
class ControllerCommonLayoutMinimal extends Controller {
protected function index() {
$this->data['title'] = $this->document->title;
$this->template = "common/layout-minimal.tpl";
$this->children = array(
"common/menu",
"common/footer"
);
$this->render();
}
}
?>