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

27 lines
387 B
PHP

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