update : 2015.11.03
php.shukuma.com검색:
|
The Yaf_Dispatcher class(Yaf >=1.0.0) 소개Yaf_Dispatcher purpose is to initialize the request environment, route the incoming request, and then dispatch any discovered actions; it aggregates any responses and returns them when the process is complete. Yaf_Dispatcher also implements the Singleton pattern, meaning only a single instance of it may be available at any given time. This allows it to also act as a registry on which the other objects in the dispatch process may draw. 클래스 개요
final
Yaf_Dispatcher
{
/* 프로퍼티 */
protected
$_router
;
protected
$_view
;
protected
$_request
;
protected
$_plugins
;
protected
$_auto_render
;
protected
$_return_response
;
protected
$_instantly_flush
;
protected
$_default_module
;
protected
$_default_controller
;
protected
$_default_action
;
/* 메소드 */
}프로퍼티
Table of Contents
|