The Yaf_Dispatcher class
(Yaf >=1.0.0)
Introduction
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.
Class synopsis
final
Yaf_Dispatcher
{
public Yaf_Dispatcher autoRender
([
bool $flag
] )
public Yaf_View_Interface initView
(
string $templates_dir
[,
array $options
] )
public Yaf_Dispatcher setErrorHandler
(
call $callback
,
int $error_types
)
}
Properties
- _router
-
- _view
-
- _request
-
- _plugins
-
- _instance
-
- _auto_render
-
- _return_response
-
- _instantly_flush
-
- _default_module
-
- _default_controller
-
- _default_action
-
Table of Contents
User Contributed Notes
There are no user contributed notes for this page.