Index.php 406 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace addons\tablemake\controller;
  3. /**
  4. * 自建表前台页面,展示数据字典
  5. */
  6. class Index extends \think\addons\Controller {
  7. public function _initialize() {
  8. parent::_initialize();
  9. }
  10. /**
  11. *展示数据字典信息
  12. */
  13. public function index() {
  14. $this->error("当前插件暂无前台页面",url());
  15. }
  16. }