BaseController.php 299 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * 基础Controller
  4. * @ignore
  5. * @author benzhan
  6. */
  7. class BaseController extends WebController {
  8. /**
  9. * 构造函数
  10. * @param string $initTpl 是否初始化模板
  11. */
  12. public function __construct($initTpl = false) {
  13. parent::__construct($initTpl);
  14. }
  15. }