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

17 lines
199 B
PHP
Raw Normal View History

2012-02-08 23:14:28 +01:00
<?php
class ControllerCommonLayoutempty extends Controller {
protected function index() {
$this->template = "common/layout-empty.tpl";
$this->render();
}
}
?>