mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
25 lines
559 B
PHP
25 lines
559 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
class base_setting{
|
||
|
||
var $_cfg;
|
||
|
||
function __construct($app){
|
||
$this->app = $app;
|
||
}
|
||
|
||
function &source(){
|
||
if(defined('CUSTOM_CORE_DIR') && file_exists(CUSTOM_CORE_DIR.'/'.$this->app->app_id.'/setting.php')){
|
||
include(CUSTOM_CORE_DIR.'/'.$this->app->app_id.'/setting.php');
|
||
}else{
|
||
include($this->app->app_dir.'/setting.php');
|
||
}
|
||
return $setting;
|
||
}
|
||
}
|