mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 11:02:00 +01:00
19 lines
256 B
PHP
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();
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
?>
|