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