mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-07-05 11:49:08 +02:00
- Including files for new customer UI features left out of last commit
This commit is contained in:
26
webui/controller/common/layout-customer.php
Normal file
26
webui/controller/common/layout-customer.php
Normal file
@ -0,0 +1,26 @@
|
||||
<?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();
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
?>
|
Reference in New Issue
Block a user