mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 10:25:35 +08:00
86 lines
2.5 KiB
PHP
86 lines
2.5 KiB
PHP
<?php
|
|
/**
|
|
* Copyright 2012-2026 ShopeX (https://www.shopex.cn)
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
|
|
class base_demo
|
|
{
|
|
|
|
/**
|
|
* 初始化
|
|
* @return mixed 返回值
|
|
*/
|
|
public function init()
|
|
{
|
|
$demo_dir = ROOT_DIR . '/demo';
|
|
if(is_dir($demo_dir)){
|
|
$handle = opendir($demo_dir);
|
|
while($file = readdir($handle)){
|
|
$realfile = $demo_dir . '/' . $file;
|
|
if(is_file($realfile)){
|
|
list($app_id, $model, $ext) = explode('.', $file);
|
|
if($ext == 'sdf'){
|
|
$this->init_sdf($app_id, $model, $realfile);
|
|
}elseif($ext=='php' && $model=='setting'){
|
|
$setting = include($realfile);
|
|
$this->init_setting($app_id, $setting);
|
|
}
|
|
}
|
|
}
|
|
closedir($handle);
|
|
}
|
|
}//End Function
|
|
|
|
/**
|
|
* 初始化_setting
|
|
* @param mixed $app_id ID
|
|
* @param mixed $setting setting
|
|
* @return mixed 返回值
|
|
*/
|
|
public function init_setting($app_id, $setting)
|
|
{
|
|
$app = app::get($app_id);
|
|
if(is_array($setting)){
|
|
foreach($setting AS $key=>$value){
|
|
$app->setConf($key, $value);
|
|
}
|
|
}
|
|
}//End Function
|
|
|
|
/**
|
|
* 初始化_sdf
|
|
* @param mixed $app_id ID
|
|
* @param mixed $model model
|
|
* @param mixed $file file
|
|
* @return mixed 返回值
|
|
*/
|
|
public function init_sdf($app_id, $model, $file)
|
|
{
|
|
$handle = fopen($file, 'r');
|
|
if($handle){
|
|
while(!feof($handle)){
|
|
$buffer .= fgets($handle);
|
|
if(!($sdf = unserialize($buffer))){
|
|
continue;
|
|
}
|
|
app::get($app_id)->model($model)->db_save($sdf);
|
|
$buffer = '';
|
|
}
|
|
fclose($handle);
|
|
}
|
|
}//End Function
|
|
}//End Class
|