mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2024-12-02 11:59:16 +08:00
75 lines
2.5 KiB
PHP
Executable File
75 lines
2.5 KiB
PHP
Executable File
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | ShopXO 国内领先企业级B2C免费开源电商系统
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2011~2099 http://shopxo.net All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed ( https://opensource.org/licenses/mit-license.php )
|
|
// +----------------------------------------------------------------------
|
|
// | Author: Devil
|
|
// +----------------------------------------------------------------------
|
|
namespace app\service;
|
|
|
|
use think\facade\Db;
|
|
use app\service\ResourcesService;
|
|
|
|
/**
|
|
* 轮播服务层
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 0.0.1
|
|
* @datetime 2016-12-01T21:51:08+0800
|
|
*/
|
|
class BannerService
|
|
{
|
|
/**
|
|
* 获取轮播
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2018-08-29
|
|
* @desc description
|
|
* @param [array] $params [输入参数]
|
|
*/
|
|
public static function Banner($params = [])
|
|
{
|
|
// 缓存
|
|
$key = MyConfig('shopxo.cache_banner_list_key').APPLICATION_CLIENT_TYPE;
|
|
$data = MyCache($key);
|
|
if($data === null || MyEnv('app_debug'))
|
|
{
|
|
// 获取banner数据
|
|
$field = 'name,images_url,event_value,event_type,bg_color';
|
|
$order_by = 'sort asc,id asc';
|
|
$data = Db::name('Slide')->field($field)->where(['platform'=>APPLICATION_CLIENT_TYPE, 'is_enable'=>1])->order($order_by)->select()->toArray();
|
|
if(!empty($data))
|
|
{
|
|
foreach($data as &$v)
|
|
{
|
|
// 图片地址
|
|
$v['images_url'] = ResourcesService::AttachmentPathViewHandle($v['images_url']);
|
|
|
|
// 事件值
|
|
if(!empty($v['event_value']))
|
|
{
|
|
// 地图
|
|
if($v['event_type'] == 3)
|
|
{
|
|
$v['event_value_data'] = explode('|', $v['event_value']);
|
|
}
|
|
$v['event_value'] = htmlspecialchars_decode($v['event_value']);
|
|
} else {
|
|
$v['event_value'] = null;
|
|
}
|
|
}
|
|
} else {
|
|
$data = [];
|
|
}
|
|
|
|
// 存储缓存
|
|
MyCache($key, $data, 180);
|
|
}
|
|
return $data;
|
|
}
|
|
}
|
|
?>
|