IndexController.php 857 B

12345678910111213141516171819202122232425
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2013-2018 http://www.thinkcmf.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Author: Dean <zxxjjforever@163.com>
  8. // +----------------------------------------------------------------------
  9. namespace plugins\demo\controller;
  10. //Demo插件英文名,改成你的插件英文就行了
  11. use app\user\model\UserModel;
  12. use cmf\controller\PluginBaseController;
  13. class IndexController extends PluginBaseController
  14. {
  15. public function index()
  16. {
  17. $users = UserModel::limit(0, 5)->select();
  18. $this->assign('users', $users);
  19. return $this->fetch('/index');
  20. }
  21. }