piler/webui/controller/common/layout-email.php
2012-07-06 21:58:52 +02:00

19 lines
256 B
PHP

<?php
class ControllerCommonLayoutemail extends Controller {
protected function index() {
$this->data['title'] = $this->document->title;
$this->template = "common/layout-email.tpl";
$this->render();
}
}
?>