...
|
...
|
@@ -2,6 +2,7 @@ |
|
|
|
|
|
use Action\AbstractAction;
|
|
|
use Plugin\Helpers;
|
|
|
use LibModels\Wap\Index\IndexData;
|
|
|
|
|
|
/**
|
|
|
* 频道选择
|
...
|
...
|
@@ -14,16 +15,16 @@ class IndexController extends AbstractAction |
|
|
*/
|
|
|
public function indexAction()
|
|
|
{
|
|
|
if (null !== $this->get('go')) {
|
|
|
// 先检查COOKIE是否有访问过, 有则跳转到相应的频道页
|
|
|
Index\HomeModel::goSwitchChannel();
|
|
|
} else {
|
|
|
// 设置客户端浏览器1小时内不改变,
|
|
|
$this->setLastModified(mktime(date('H'), 0, 0, date('n'), date('j'), date('Y')));
|
|
|
// 设置浏览器缓存5分钟
|
|
|
$this->setExpires(300);
|
|
|
}
|
|
|
|
|
|
// if (null !== $this->get('go')) {
|
|
|
// // 先检查COOKIE是否有访问过, 有则跳转到相应的频道页
|
|
|
// Index\HomeModel::goSwitchChannel();
|
|
|
// } else {
|
|
|
// // 设置客户端浏览器1小时内不改变,
|
|
|
// $this->setLastModified(mktime(date('H'), 0, 0, date('n'), date('j'), date('Y')));
|
|
|
// // 设置浏览器缓存5分钟
|
|
|
// $this->setExpires(300);
|
|
|
// }
|
|
|
var_dump(IndexData::channelData());
|
|
|
// 渲染模板
|
|
|
$this->_view->display('index', array(
|
|
|
'background' => Index\HomeModel::getBgImage(),
|
...
|
...
|
|