12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- namespace Cas\Controller\Admin\Activity;
- use Cas\Module\Lottery;
- use Cas\Dao\PlatformBulletin;
- use KIF\Core\Request;
- use Cas\Dao\LotteryEvents;
- use Cas\Controller\Admin\Controller;
- class CreateEntrance extends Controller {
- private $objLottery;
- private $operatorData;
-
- public function __construct() {
- header ( "Content-Type: text/html; charset=utf-8" );
- $this->objLottery = new Lottery ();
- $this->operatorData = $this->getUser ();
- }
-
-
- public function doDefault() {
- $url = Request::schemeDomain () . '/?c=Admin_Activity_SetBasics&a=PageCreate&bigType=';
- $bigTypeUrlData = array (
- '活动' => $url . 'Event',
- 'H5' => $url . 'H5',
- '文章' => $url . 'Article'
- );
-
- $this->setOutput ( 'bigTypeData', $bigTypeData );
- $this->setOutput('pagePublicData', $this->getPagePublicData());
- }
-
-
- public function display() {
- return $this->render ();
- }
- }
-
|