1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| <?php
|
| !defined('P_W') && exit('Forbidden');
| //api mode 9
|
| class Site {
|
| var $base;
| var $db;
|
| function Site($base) {
| $this->base = $base;
| $this->db = $base->db;
| }
|
| function connect() {
| return new ApiResponse(1);
| }
| }
| ?>
|
|