Ticket.class.php 596 Bytes
<?php
/**
 * 活动控制器
 */
class Controller_Ticket extends Controller_Abstract
{
    
    public function indexAction()
    {
    	//$this->_viewname ='/../default/other';
        /***设置网站的SEO信息***/
        $seo = C('APP.Seo');
        $this->setTitle($seo['channel_ticket_title']);
        $this->setKeywords($seo['channel_ticket_keywords']);
        $this->setDescription($seo['channel_ticket_description']);
        $seo = null; unset($seo);
        
        if(time()>1374915600)
        {
            $this->_redirect('http://yohood.yohobuy.com/');
        }
    }
    
}