ApiIndexController.php 774 B

123456789101112131415161718192021
  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 cmf\controller\PluginRestBaseController;
  12. class ApiIndexController extends PluginRestBaseController
  13. {
  14. public function index()
  15. {
  16. $this->success('success', ['hello' => 'hello ThinkCMF!']);
  17. }
  18. }