首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

Yaf_Dispatcher (class)

Introduction

(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.

Class synopsis

final Yaf_Dispatcher {

/* Properties */

protected $_router ;

protected $_view ;

protected $_request ;

protected $_plugins ;

protected static $_instance ;

protected $_auto_render ;

protected $_return_response ;

protected $_instantly_flush ;

protected $_default_module ;

protected $_default_controller ;

protected $_default_action ;

/* Methods */

代码语言:javascript
复制
public Yaf_Dispatcher autoRender ([ bool $flag ] )
代码语言:javascript
复制
public Yaf_Dispatcher catchException ([ bool $flag ] )
代码语言:javascript
复制
private void __clone ( void )
代码语言:javascript
复制
public __construct ( void )
代码语言:javascript
复制
public bool disableView ( void )
代码语言:javascript
复制
public Yaf_Response_Abstract dispatch ( Yaf_Request_Abstract $request )
代码语言:javascript
复制
public Yaf_Dispatcher enableView ( void )
代码语言:javascript
复制
public Yaf_Dispatcher flushInstantly ([ bool $flag ] )
代码语言:javascript
复制
public Yaf_Application getApplication ( void )
代码语言:javascript
复制
public static Yaf_Dispatcher getInstance ( void )
代码语言:javascript
复制
public Yaf_Request_Abstract getRequest ( void )
代码语言:javascript
复制
public Yaf_Router getRouter ( void )
代码语言:javascript
复制
public Yaf_View_Interface initView ( string $templates_dir [, array $options ] )
代码语言:javascript
复制
public Yaf_Dispatcher registerPlugin ( Yaf_Plugin_Abstract $plugin )
代码语言:javascript
复制
public Yaf_Dispatcher returnResponse ( bool $flag )
代码语言:javascript
复制
public Yaf_Dispatcher setDefaultAction ( string $action )
代码语言:javascript
复制
public Yaf_Dispatcher setDefaultController ( string $controller )
代码语言:javascript
复制
public Yaf_Dispatcher setDefaultModule ( string $module )
代码语言:javascript
复制
public Yaf_Dispatcher setErrorHandler ( call $callback , int $error_types )
代码语言:javascript
复制
public Yaf_Dispatcher setRequest ( Yaf_Request_Abstract $request )
代码语言:javascript
复制
public Yaf_Dispatcher setView ( Yaf_View_Interface $view )
代码语言:javascript
复制
private void __sleep ( void )
代码语言:javascript
复制
public Yaf_Dispatcher throwException ([ bool $flag ] )
代码语言:javascript
复制
private void __wakeup ( void )

}

Properties

_router_view_request_plugins_instance_auto_render_return_response_instantly_flush_default_module_default_controller_default_action

Table of Contents

  • Yaf_Dispatcher::autoRender — Switch on/off autorendering
  • Yaf_Dispatcher::catchException — Switch on/off exception catching
  • Yaf_Dispatcher::__clone — Yaf_Dispatcher can not be cloned
  • Yaf_Dispatcher::__construct — Yaf_Dispatcher constructor
  • Yaf_Dispatcher::disableView — Disable view rendering
  • Yaf_Dispatcher::dispatch — Dispatch a request
  • Yaf_Dispatcher::enableView — enable view rendering
  • Yaf_Dispatcher::flushInstantly — Switch on/off the instant flushing
  • Yaf_Dispatcher::getApplication — Retrive the application
  • Yaf_Dispatcher::getInstance — Retrive the dispatcher instance
  • Yaf_Dispatcher::getRequest — Retrive the request instance
  • Yaf_Dispatcher::getRouter — Retrive router instance
  • Yaf_Dispatcher::initView — Initialize view and return it
  • Yaf_Dispatcher::registerPlugin — Register a plugin
  • Yaf_Dispatcher::returnResponse — The returnResponse purpose
  • Yaf_Dispatcher::setDefaultAction — Change default action name
  • Yaf_Dispatcher::setDefaultController — Change default controller name
  • Yaf_Dispatcher::setDefaultModule — Change default module name
  • Yaf_Dispatcher::setErrorHandler — Set error handler
  • Yaf_Dispatcher::setRequest — The setRequest purpose
  • Yaf_Dispatcher::setView — Set a custom view engine
  • Yaf_Dispatcher::__sleep — Yaf_Dispatcher can not be serialized
  • Yaf_Dispatcher::throwException — Switch on/off exception throwing
  • Yaf_Dispatcher::__wakeup — Yaf_Dispatcher can not be unserialized

← Yaf_Bootstrap_Abstract

Yaf_Dispatcher::autoRender →

代码语言:txt
复制
 © 1997–2017 The PHP Documentation Group

Licensed under the Creative Commons Attribution License v3.0 or later.

扫码关注腾讯云开发者

领取腾讯云代金券