24 lines
381 B
PHP
24 lines
381 B
PHP
<?php
|
|
defined('IN_TS') or die('Access Denied.');
|
|
class location extends tsApp{
|
|
|
|
//构造函数
|
|
public function __construct($db){
|
|
$tsAppDb = array();
|
|
include 'app/location/config.php';
|
|
//判断APP是否采用独立数据库
|
|
if($tsAppDb){
|
|
$db = new MySql($tsAppDb);
|
|
}
|
|
|
|
parent::__construct($db);
|
|
}
|
|
|
|
|
|
//析构函数
|
|
public function __destruct(){
|
|
|
|
}
|
|
|
|
}
|