controller.php 253 B

123456789101112131415
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * Document controller class definition
  5. * @package chamilo.document
  6. */
  7. /**
  8. * Init
  9. */
  10. class DocumentController {
  11. function __construct($title = null) {
  12. $this->tpl = new Template($title);
  13. }
  14. }