controller.php 115 B

1234567
  1. <?php
  2. class DocumentController {
  3. function __construct($title = null) {
  4. $this->tpl = new Template($title);
  5. }
  6. }