12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace Common\Model;
- class IssueModel extends \Think\Model
- {
- public function check_install()
- {
- $this->check_server();
- $this->check_authorization();
- $this->check_database();
- $this->check_update();
- $this->check_file();
- }
- public function check_uninstall()
- {
- }
- public function check_server()
- {
- }
- public function check_authorization()
- {
- }
- public function check_database()
- {
- }
- public function check_update()
- {
- }
- public function check_file()
- {
- }
- }
- ?>
|