Yaf
PHP Manual

The Yaf_Route_Simple class

(No version information available, might only be in SVN)

简介

Yaf_Route_Simple will match the query string, and find the route info.

all you need to do is tell Yaf_Route_Simple what key in the $_GET is module, what key is controller, and what key is action.

Yaf_Route_Simple::route() will always return TRUE, so it is important put Yaf_Route_Simple in the front of the Route stack, otherwise all the other routes will not be called.

类摘要

Yaf_Route_Simple implements Yaf_Route_Interface {
/* 属性 */
protected $controller ;
protected $module ;
protected $action ;
/* 方法 */
public __construct ( string $module_name , string $controller_name , string $action_name )
public bool route ( Yaf_Request_Abstract $request )
}

属性

controller

module

action

Table of Contents


Yaf
PHP Manual