Yaf_Route_Rewrite::__construct
(Yaf >=1.0.0)
Yaf_Route_Rewrite::__construct — Yaf_Route_Rewrite のコンストラクタ
パラメータ
match
-
リクエストの URI とマッチさせるパターン。 もしマッチしなければ Yaf_Route_Rewrite は
false
を返します。:name 形式を使って、マッチしたセグメントに名前を付けることができます。 また、* で残りの URL セグメントにマッチさせられます。
route
-
リクエスト URI がパターンにマッチしたときに、 Yaf_Route_Rewrite はこれを使ってルーティング先のモジュール、コントローラ、アクションを判断します。
この配列で指定するモジュール、コントローラ、アクションはすべて任意指定で、 値を省略したときにはデフォルト設定を利用します。
verify
-
戻り値
例
例1 Yaf_Route_Rewrite() の例
<?php
/**
* Add a rewrite route to Yaf_Router route stack
*/
Yaf_Dispatcher::getInstance()->getRouter()->addRoute("name",
new Yaf_Route_rewrite(
"/product/:name/:id/*", //match request uri leading "/product"
array(
'controller' => "product", //route to product controller,
),
)
);
?>
上の例の出力は、 たとえば以下のようになります。
/* http://yourdomain.com/product/foo/22/foo/bar * の場合はこのような結果になります */ array( "controller" => "product", "module" => "index", //(default) "action" => "index", //(default) ) /** * リクエストパラメータは、このようになります */ array( "name" => "foo", "id" => 22, "foo" => bar )
例2 Yaf_Route_Rewrite() の例
<?php
/**
* Add a rewrite route to Yaf_Router route stack by calling addconfig
*/
$config = array(
"name" => array(
"type" => "rewrite", //Yaf_Route_Rewrite route
"match" => "/user-list/:id", //match only /user/list/?/
"route" => array(
'controller' => "user", //route to user controller,
'action' => "list", //route to list action
),
),
);
Yaf_Dispatcher::getInstance()->getRouter()->addConfig(
new Yaf_Config_Simple($config));
?>
上の例の出力は、 たとえば以下のようになります。
/* http://yourdomain.com/user-list/22 * の場合はこのような結果になります */ array( "controller" => "user", "action" => "list", "module" => "index", //(default) ) /** * リクエストパラメータは、このようになります */ array( "id" => 22, )
例3 Yaf_Route_Rewrite() (2.3.0 以降) の例
<?php
/**
* Add a rewrite route use match result as m/c/a name
*/
$config = array(
"name" => array(
"type" => "rewrite",
"match" => "/user-list/:a/:id", //match only /user-list/*
"route" => array(
'controller' => "user", //route to user controller,
'action' => ":a", //route to :a action
),
),
);
Yaf_Dispatcher::getInstance()->getRouter()->addConfig(
new Yaf_Config_Simple($config));
?>
上の例の出力は、 たとえば以下のようになります。
/* http://yourdomain.com/user-list/list/22 * の場合はこのような結果になります */ array( "controller" => "user", "action" => "list", "module" => "index", //(default) ) /** * リクエストパラメータは、このようになります */ array( "id" => 22, )
参考
- Yaf_Router::addRoute() - 新しいルートをルーターに追加する
- Yaf_Router::addConfig() - 設定で定義したルートをルーターに追加する
- Yaf_Route_Static
- Yaf_Route_Supervar
- Yaf_Route_Simple
- Yaf_Route_Regex
- Yaf_Route_Map
+add a note
User Contributed Notes 1 note
aqueel at ikonami dot net ¶
12 years ago
Working Example for Modules in YAF FOR PHP
Please follow these steps to make modules work in YAF.
1. Create a folder with name modules inside application directory the path would normally look like this
/application/modules
2. In modules folder copy following folders and files from application root.
i. conf / configration folder ( what ever name your configration folder has)
ii. controllers
iii. models
iv. plugins ( if you have)
v. Views
Now your folder structure will look like this
-- application
-- controllers
-- models
-- modules
-- [moduledirectory]
-- controllers
-- models
-- plugins
-- views
-- plugins
-- views
application.ini file in configuration folder will look like this the only thing to notice closely in this file is this line
;defined modules
application.modules= "Index,director" // comma separated list of all modules that you will use in your web application using yaf
############################################################
[product]
;layout
application.directory = APP_PATH
application.bootstrap = APP_PATH "Bootstrap.php"
application.library = BASE_PATH "/library"
appnamespace = "Application"
resources.frontController.controllerDirectory = APP_PATH "controllers"
resources.frontController.params.displayExceptions = 0
resources.frontController.defaultModule = "index"
resources.frontController.defaultController = "index"
resources.frontController.defaultAction = "index"
;resources.frontController.moduleDirectory = APP_PATH "modules/"
resources.layout.layoutPath = APP_PATH "/layouts/scripts/"
resources.view[] =
;errors (see Bootstrap::initErrors)
application.showErrors=0
;enable the error controller
application.dispatcher.catchException=0
application.dispatcher.defaultModule=Index
application.dispatcher.defaultController=Index
application.dispatcher.defaultAction=index
;defined modules
application.modules= "Index,director"
;database
database.adapter = Pdo_Mysql
database.params.dbname = printmaster
database.params.host = localhost ;NA when using sqlite
database.params.username = root ;NA when using sqlite
database.params.password = root ;NA when using sqlite
[devel : product]
;errors (see Bootstrap::initErrors)
application.showErrors=1
#############################################################
Add this in your bootstrap.php
<?php
public function _initRoute(Yaf_Dispatcher $dis) {
$route1 = new Yaf_Route_Rewrite("/director",
array(
"controller" => "index",
"module" => "director",
"action" => "index"
)
);
}
?>
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google