Index.php 327 B

12345678910111213141516171819202122
  1. <?php
  2. namespace app\index\controller;
  3. use app\common\controller\Frontend;
  4. class Index extends Frontend
  5. {
  6. protected $layout = 'bootstrap';
  7. public function _initialize()
  8. {
  9. parent::_initialize();
  10. }
  11. public function index()
  12. {
  13. return $this->view->fetch();
  14. }
  15. }