1
0
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

<?php
/**
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
* @license https://opensource.org/licenses/GPL-2.0
* @link https://www.koogua.com
*/
namespace App\Http\Home\Controllers;
use App\Http\Home\Services\Index as IndexService;
use App\Services\Logic\Help\HelpInfo as HelpInfoService;
use App\Services\Logic\Help\HelpList as HelpListService;
/**
* @RoutePrefix("/help")
*/
class HelpController extends Controller
{
/**
* @Get("/", name="home.help.index")
*/
public function indexAction()
{
$service = new HelpListService();
$items = $service->handle();
$this->seo->prependTitle('帮助');
$this->view->setVar('items', $items);
}
/**
* @Get("/{id:[0-9]+}", name="home.help.show")
*/
public function showAction($id)
{
$service = new HelpInfoService();
$help = $service->handle($id);
if ($help['deleted'] == 1) {
return $this->notFound();
}
$featuredCourses = $this->getFeaturedCourses();
$this->seo->prependTitle(['帮助', $help['title']]);
$this->view->setVar('help', $help);
$this->view->setVar('featured_courses', $featuredCourses);
}
protected function getFeaturedCourses()
{
$service = new IndexService();
return $service->getSimpleFeaturedCourses();
}
}