- Including files for new customer UI features left out of last commit

This commit is contained in:
Remi
2013-08-26 18:50:30 -04:00
parent 9f6d3fd802
commit 3376984ec9
3 changed files with 99 additions and 16 deletions

View 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();
}
}
?>