Help.php
1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
use Action\AbstractAction;
/**
* 帮助中心
*/
class HelpController extends AbstractAction
{
/**
* 晒单 (APP使用)
*/
public function shareorderAction()
{
$this->_view->html('help/shareorder');
// 渲染模板并输出
$this->_view->display('share-order');
}
/**
* 如何获得限购码 (APP使用)
*/
public function limitcodeHelpAction()
{
$this->_view->html('help/limitcodehelp');
// 渲染模板并输出
$this->_view->display('limitcode-help');
}
/**
* 选择限购码颜色和尺寸 (APP使用)
*/
public function limitcodeColSizeAction()
{
$this->_view->html('help/limitcodecolsize');
// 渲染模板并输出
$this->_view->display('limitcode-colsize');
}
/**
* 什么是限购码 (APP使用)
*/
public function limitcodeIntroAction()
{
$this->_view->html('help/limitcodeintro');
// 渲染模板并输出
$this->_view->display('limitcode-intro');
}
}