...
|
...
|
@@ -42,6 +42,13 @@ class HuodongAction extends Controller_Abstract |
|
|
protected $_data;
|
|
|
|
|
|
/**
|
|
|
* 是否是应用访问标志位
|
|
|
*
|
|
|
* @var boolean
|
|
|
*/
|
|
|
protected $_isApp;
|
|
|
|
|
|
/**
|
|
|
* 初始化
|
|
|
*/
|
|
|
public function init()
|
...
|
...
|
@@ -58,6 +65,9 @@ class HuodongAction extends Controller_Abstract |
|
|
if (isset($config->css->url)) {
|
|
|
$this->_view->assign('imgUrl', $config->img->url);
|
|
|
}
|
|
|
|
|
|
// 判断是否是应用访问, 拼接APP需要的URL参数
|
|
|
$this->_isApp = (null !== $this->get('app_version') || null !== $this->get('uid'));
|
|
|
}
|
|
|
|
|
|
/**
|
...
|
...
|
@@ -196,7 +206,7 @@ class HuodongAction extends Controller_Abstract |
|
|
* @param string $name cookie的名字
|
|
|
* @param string $value cookie的值
|
|
|
* @param integer $expire cookie过期时间
|
|
|
* @param integer $path cookie可用的路径
|
|
|
* @param string $path cookie可用的路径
|
|
|
* @param string $domain cookie可用域名
|
|
|
*/
|
|
|
protected function setCookie($name, $value, $expire = 0, $path = '/', $domain = '.yohobuy.com')
|
...
|
...
|
|