Config.php
621 Bytes
<?php
/**
* Created by PhpStorm.
* User: ziy
* Date: 14-7-7
* Time: 下午7:50
*/
class YHMCart_Config
{
/**
* 渠道字典
* @var array
*/
static $channelCodeList = array();
/**
* 最大购买数量
* @var integer
*/
public static $maxShoppingNum = 1000;
/**
* 每个月计算VIP的订单数量限制,如果超过这个数量,则不享受VIP的优惠
* @var integer
*/
public static $vipCalcLimit = 10;
/**
* 支付地址
* @var string
*/
public static $payUrl = 'http://www.yohobuy.com/shopping/pay?ordercode=';
}