mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-20 11:03:01 +08:00
43 lines
820 B
PHP
43 lines
820 B
PHP
<?php
|
|
|
|
namespace App\Http\Home\Controllers;
|
|
|
|
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);
|
|
|
|
$this->seo->prependTitle(['帮助', $help['title']]);
|
|
|
|
$this->view->setVar('help', $help);
|
|
}
|
|
|
|
}
|