代码拉取完成,页面将自动刷新
<?php
/**
* 易商城模块微站定义
*
* @author RainYang
* @url http://bbs.we7.cc/
*/
defined('IN_IA') or exit('Access Denied');
require_once IA_ROOT. '/addons/sz_yi/version.php';
require_once IA_ROOT. '/addons/sz_yi/defines.php';
require_once SZ_YI_INC.'functions.php';
require_once SZ_YI_INC.'core.php';
require_once SZ_YI_INC.'plugin/plugin.php';
require_once SZ_YI_INC.'plugin/plugin_model.php';
class Sz_yiModuleSite extends Core {
//商城管理
public function doWebShop(){ $this->_exec(__FUNCTION__ ,'goods'); }
//订单管理
public function doWebOrder(){ $this->_exec(__FUNCTION__,'list'); }
//会员管理
public function doWebMember(){ $this->_exec(__FUNCTION__,'list'); }
//财务管理
public function doWebFinance(){ $this->_exec(__FUNCTION__,'log'); }
//统计分析
public function doWebStatistics(){ $this->_exec(__FUNCTION__,'sale'); }
//插件管理
public function doWebPlugins(){ $this->_exec(__FUNCTION__,'list'); }
//系统设置
public function doWebSysset(){ $this->_exec(__FUNCTION__,'sysset'); }
//插件web入口
public function doWebPlugin(){
global $_W,$_GPC;
require_once SZ_YI_INC."plugin/plugin.php";
$plugins = m('plugin')->getAll();
$p = $_GPC['p'];
$file = SZ_YI_PLUGIN.$p."/web.php";
if(!is_file($file)){
message('未找到插件 '.$plugins[$p].' 入口方法');
}
require $file;
$pluginClass = ucfirst($p)."Web";
$plug = new $pluginClass($p);
$method = strtolower($_GPC['method']);
if(empty($method)){
$plug->index();
exit;
}
if(method_exists($plug,$method)){
$plug->$method();
exit;
}
trigger_error('Plugin Web Method '.$method.' not Found!');
}
//插件app入口
public function doMobilePlugin(){
global $_W,$_GPC;
require_once SZ_YI_INC."plugin/plugin.php";
$plugins = m('plugin')->getAll();
$p = $_GPC['p'];
$file = SZ_YI_PLUGIN.$p."/mobile.php";
if(!is_file($file)){
message('未找到插件 '.$plugins[$p].' 入口方法');
}
require $file;
$pluginClass = ucfirst($p)."Mobile";
$plug = new $pluginClass($p);
$method = strtolower($_GPC['method']);
if(empty($method)){
$plug->index();
exit;
}
if(method_exists($plug,$method)){
$plug->$method();
exit;
}
trigger_error('Plugin Mobile Method '.$method.' not Found!');
}
//购物车入口
public function doMobileCart(){ $this->_exec('doMobileShop','cart',false); }
//我的收藏入口
public function doMobileFavorite(){ $this->_exec('doMobileShop','favorite',false); }
//工具
public function doMobileUtil(){ $this->_exec(__FUNCTION__,'',false); }
//会员
public function doMobileMember(){ $this->_exec(__FUNCTION__,'center',false); }
//商城
public function doMobileShop(){ $this->_exec(__FUNCTION__,'index',false); }
//订单
public function doMobileOrder(){ $this->_exec(__FUNCTION__,'list',false); }
//支付成功
public function payResult($params){ return m('order')->payResult($params); }
public function getAuthSet() {
global $_W;
$set = pdo_fetch('select sets from ' . tablename('sz_yi_sysset') . ' order by id asc limit 1');
$sets = iunserializer($set['sets']);
if (is_array($sets)) {
return is_array($sets['auth']) ? $sets['auth'] : array();
}
return array();
}
public function doWebAuth() {$this->_exec('doWebSysset','auth',true); }
public function doWebUpgrade() {$this->_exec('doWebSysset','upgrade',true); }
}
/*
class Sz_yiModuleSite extends WeModuleSite {
public function doWebShop() {
//这个操作被定义用来呈现 规则列表
}
public function doWebOrder() {
//这个操作被定义用来呈现 规则列表
}
public function doWebCart() {
//这个操作被定义用来呈现 规则列表
}
public function doWebFavorite() {
//这个操作被定义用来呈现 规则列表
}
public function doWebMember() {
//这个操作被定义用来呈现 规则列表
}
public function doWebStatistics() {
//这个操作被定义用来呈现 管理中心导航菜单
}
public function doWebPlugins() {
//这个操作被定义用来呈现 管理中心导航菜单
}
public function doWebSysset() {
//这个操作被定义用来呈现 管理中心导航菜单
}
public function doMobileShop() {
//这个操作被定义用来呈现 微站首页导航图标
}
}
*/
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。