IssueModel.class.php 491 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. namespace Common\Model;
  3. class IssueModel extends \Think\Model
  4. {
  5. public function check_install()
  6. {
  7. $this->check_server();
  8. $this->check_authorization();
  9. $this->check_database();
  10. $this->check_update();
  11. $this->check_file();
  12. }
  13. public function check_uninstall()
  14. {
  15. }
  16. public function check_server()
  17. {
  18. }
  19. public function check_authorization()
  20. {
  21. }
  22. public function check_database()
  23. {
  24. }
  25. public function check_update()
  26. {
  27. }
  28. public function check_file()
  29. {
  30. }
  31. }
  32. ?>