controller.stub 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CatchAdmin [Just Like ~ ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~{$year} http://catchadmin.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  8. // +----------------------------------------------------------------------
  9. // | Author: JaguarJack [ njphper@gmail.com ]
  10. // +----------------------------------------------------------------------
  11. namespace {NAMESPACE};
  12. use catcher\base\CatchController;
  13. class {CLASS} extends CatchController
  14. {
  15. public function index()
  16. {
  17. return $this->fetch();
  18. }
  19. public function create()
  20. {
  21. return $this->fetch();
  22. }
  23. public function save()
  24. {}
  25. public function read()
  26. {}
  27. public function edit()
  28. {
  29. return $this->fetch();
  30. }
  31. public function update()
  32. {}
  33. public function delete()
  34. {}
  35. }