Common.php 454 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2017 https://www.sapixx.com All rights reserved.
  4. * @license Licensed (http://www.apache.org/licenses/LICENSE-2.0).
  5. * @author pillar<ltmn@qq.com>
  6. * 用户公共调用模块
  7. */
  8. namespace app\system\controller\Home;
  9. use app\common\controller\Base;
  10. class Common extends Base{
  11. public function initialize() {
  12. parent::initialize();
  13. $this->view->config('view_path',PATH_THEMES);
  14. }
  15. }