1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- namespace Common\Model;
- class VoteModel 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()
- {
- }
- }
- ?>
|