mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-20 11:03:01 +08:00
63 lines
1.4 KiB
PHP
63 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Home\Controllers;
|
|
|
|
use App\Services\Logic\Vip\CourseList as VipCourseListService;
|
|
use App\Services\Logic\Vip\OptionList as VipOptionListService;
|
|
use App\Services\Logic\Vip\UserList as VipUserListService;
|
|
use Phalcon\Mvc\View;
|
|
|
|
/**
|
|
* @RoutePrefix("/vip")
|
|
*/
|
|
class VipController extends Controller
|
|
{
|
|
|
|
/**
|
|
* @Get("/", name="home.vip.index")
|
|
*/
|
|
public function indexAction()
|
|
{
|
|
$service = new VipOptionListService();
|
|
|
|
$vipOptions = $service->handle();
|
|
|
|
$this->seo->prependTitle('会员');
|
|
|
|
$this->view->setVar('vip_options', $vipOptions);
|
|
}
|
|
|
|
/**
|
|
* @Get("/courses", name="home.vip.courses")
|
|
*/
|
|
public function coursesAction()
|
|
{
|
|
$type = $this->request->getQuery('type', 'string', 'discount');
|
|
|
|
$service = new VipCourseListService();
|
|
|
|
$pager = $service->handle($type);
|
|
|
|
$pager->target = "tab-{$type}-courses";
|
|
|
|
$this->view->setRenderLevel(View::LEVEL_ACTION_VIEW);
|
|
$this->view->setVar('pager', $pager);
|
|
}
|
|
|
|
/**
|
|
* @Get("/users", name="home.vip.users")
|
|
*/
|
|
public function usersAction()
|
|
{
|
|
$service = new VipUserListService();
|
|
|
|
$pager = $service->handle();
|
|
|
|
$pager->target = 'tab-users';
|
|
|
|
$this->view->setRenderLevel(View::LEVEL_ACTION_VIEW);
|
|
$this->view->setVar('pager', $pager);
|
|
}
|
|
|
|
}
|