Blame view

yohobuy/m.yohobuy.com/application/modules/Cart/controllers/Index.php 393 Bytes
hf authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<?php

use Action\AbstractAction;

/**
 * 购物车相关的控制器
 * 
 * @name IndexController
 * @package Cart
 * @copyright yoho.inc
 * @version 1.0 (2015-10-28 16:34:17)
 * @author fei.hong <fei.hong@yoho.cn>
 */
class IndexController extends AbstractAction
{
    public function indexAction()
    {
        // 跳转到老版
        $this->go(OLD_MAIN . '/cart/index/index');
    }
}