本文实例讲述了Zend Framework创建自己的动作助手实现方法。分享给大家供大家参考,具体如下:
助手的抽象基类是Zend_Controller_Action_Helper_Abstract,如要定义自己的助手,需要继承此类。
类的源代码如下:
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
<?php
/**
* @see Zend_Controller_Action
*/
require_once 'Zend/Controller/Action.php' ;
abstract class Zend_Controller_Action_Helper_Abstract
{
/**
* $_actionController
*
* @var Zend_Controller_Action $_actionController
*/
protected $_actionController = null;
/**
* @var mixed $_frontController
*/
protected $_frontController = null;
/**
* setActionController()
*
* @param Zend_Controller_Action $actionController
* @return Zend_Controller_ActionHelper_Abstract Provides a fluent interface
*/
public function setActionController(Zend_Controller_Action $actionController = null)
{
$this ->_actionController = $actionController ;
return $this ;
}
/**
* Retrieve current action controller
*
* @return Zend_Controller_Action
*/
public function getActionController()
{
return $this ->_actionController;
}
/**
* Retrieve front controller instance
*
* @return Zend_Controller_Front
*/
public function getFrontController()
{
return Zend_Controller_Front::getInstance();
}
/**
* Hook into action controller initialization
*
* @return void
*/
public function init()
{
}
/**
* Hook into action controller preDispatch() workflow
*
* @return void
*/
public function preDispatch()
{
}
/**
* Hook into action controller postDispatch() workflow
*
* @return void
*/
public function postDispatch()
{
}
/**
* getRequest() -
*
* @return Zend_Controller_Request_Abstract $request
*/
public function getRequest()
{
$controller = $this ->getActionController();
if (null === $controller ) {
$controller = $this ->getFrontController();
}
return $controller ->getRequest();
}
/**
* getResponse() -
*
* @return Zend_Controller_Response_Abstract $response
*/
public function getResponse()
{
$controller = $this ->getActionController();
if (null === $controller ) {
$controller = $this ->getFrontController();
}
return $controller ->getResponse();
}
/**
* getName()
*
* @return string
*/
public function getName()
{
$fullClassName = get_class( $this );
if ( strpos ( $fullClassName , '_' ) !== false) {
$helperName = strrchr ( $fullClassName , '_' );
return ltrim( $helperName , '_' );
} elseif ( strpos ( $fullClassName , '\\' ) !== false) {
$helperName = strrchr ( $fullClassName , '\\' );
return ltrim( $helperName , '\\' );
} else {
return $fullClassName ;
}
}
}
|
助手基类提供的常用方法如下:
setActionController() 用来设置当前的动作控制器。
init(),该方法在实例化时由助手经纪人触发,可用来触发助手的初始化过程;
动作链中多个控制器使用相同的助手时,如要恢复状态时将十分有用。
preDispatch()分发动作之前触发。
postDispatch()分发过程结束时触发——即使preDispatch()插件已经跳过了该动作。清理时大量使用。
getRequest() 获取当前的请求对象。
getResponse() 获取当前的响应对象。
getName() 获取助手名。获取了下划线后面的类名部分,没有下划线则获取类的全名。
例如,如果类名为Zend_Controller_Action_Helper_Redirector,他将返回 Redirector,如果类名为FooMessage,将会返回全名。
举例说明自定义动作助手类
作用:解析传入的网址,返回各个部分。使用parse_url解析指定的网址。
用zendstudio新建一个zend framework项目helper_demo1。
新增文件:/helper_demo1/library/Application/Controller/Action/Helpers/UrlParser.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
require_once 'Zend/Controller/Action/Helper/Abstract.php' ;
class Application_Controller_Action_Helpers_UrlParser extends Zend_Controller_Action_Helper_Abstract
{
public function __construct()
{
}
/**
* Parse url
*
* @param String $url
* @return Array part of url
*/
public function parse( $url )
{
return parse_url ( $url );
}
}
|
修改文件:/helper_demo1/application/Bootstrap.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
protected function _initAutoload()
{
$autoloader = Zend_Loader_Autoloader::getInstance();
$autoloader ->registerNamespace( array ( 'Application_' ));
}
protected function _initActionHelpers() {
//用前缀形式
//Zend_Controller_Action_HelperBroker::addPrefix('Application_Controller_Action_Helpers');
//指定目录和前缀
//Zend_Controller_Action_HelperBroker::addPath('/www/helper_demo1/library/Application/Controller/Action/Helpers',
// 'Application_Controller_Action_Helpers');
//new一个助手类传入
Zend_Controller_Action_HelperBroker::addHelper( new Application_Controller_Action_Helpers_UrlParser);
}
}
|
修改测试action:/helper_demo1/application/controllers/IndexController.php
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
class IndexController extends Zend_Controller_Action
{
public function init()
{
/* Initialize action controller here */
}
public function indexAction()
{
$urlParser = $this ->_helper->getHelper( 'UrlParser' );
}
}
|
以上介绍了自定义动作助手类,以及简单的使用方法。
需要注意的就是什么是助手类的前缀,助手类的名称以及助手的路径。
希望本文所述对大家PHP程序设计有所帮助。