Authored by yangyang

完成频道选择页

... ... @@ -15,15 +15,15 @@ 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);
// }
$result = IndexModel::getChannel();
$result['background'] = Index\HomeModel::getBgImage();
$result['channelPage'] = true;
... ...
... ... @@ -17,7 +17,7 @@ class IndexModel
{
public function getChannel(){
$result = array();
$result['showYohood'] = false;
$result['showYohood'] = true;
$data = IndexData::channelData();
... ...