Yaf_Route_Simple::__construct

(Yaf >=1.0.0)

Yaf_Route_Simple::__constructYaf_Route_Simple constructor

説明

public Yaf_Route_Simple::__construct ( string $module_name , string $controller_name , string $action_name )

Yaf_Route_Simple will get route info from query string. and the parameters of this constructor will used as keys while searching for the route info in $_GET.

警告

この関数は、 現在のところ詳細な情報はありません。引数のリストのみが 記述されています。

パラメータ

module_name

The key name of the module info.

controller_name

the key name of the controller info.

action_name

the key name of the action info.

返り値

Always return TRUE.

例1 Yaf_Route_Simple::route()example

<?php
   $route 
= new Yaf_Route_Simple("m""controller""act");
   
Yaf_Router::getInstance()->addRoute("simple"$route);
?>

例2 Yaf_Route_Simple::route()example

Request: http://yourdomain.com/path/?controller=a&act=b
=> module = default(index), controller = a, action = b

Request: http://yourdomain.com/path
=> module = default(index), controller = default(index), action = default(index)

参考