TaskCenterController.class.php 649 Bytes
<?php
/**
 * 任务中心入口
 * User: yingcai
 * Date: 2017/9/6
 * Time: 下午5:19
 */

namespace Frontend\Controller\Index;

class TaskCenterController extends \Common\Controller\Frontend\AbstractController
{
    /**
     * 不是必须登录
     * @var string $_require_login
     */
    protected $_require_login = false;

    public function Index()
    {
        $customtask_id = I('customtask_id', 0, 'rintval');
        $app_data_id = I('app_data_id', 0, 'rintval');

        redirectFront('/app/page/activity/activity-detail', array('_identifier' => APP_IDENTIFIER, 'customtask_id' => $customtask_id,'ac_id' => $app_data_id));

    }

}