Event.class.php
483 Bytes
<?php
/**
* 活动控制器
*/
class Controller_Event extends Controller_Abstract
{
public function init()
{
header("location:".SITE_MAIN);
}
public function indexAction()
{
/***设置网站的SEO信息***/
$seo = C('APP.Seo');
$this->setTitle($seo['channel_events_title']);
$this->setKeywords($seo['channel_events_keywords']);
$this->setDescription($seo['channel_events_description']);
$seo = null; unset($seo);
}
}