©
This document uses PHP Chinese website manual Release
(Yaf >=2.3.0)
Yaf_Route_Rewrite::assemble — 组合url
$info
[, array $query
] )根据指定参数和自定义参数将rewrite这个route组合成一个url
info
需要传入一个数组,数组中每个key必须和初始化rewrite route时$match参数中的带冒号的参数名一致
query
用户自定义的query string,将根据此路由规则拼接在url中
Example #1 Yaf_Route_Rewrite::assemble() example
router = new Yaf_Router();
$route = new Yaf_Route_Rewrite(
"/product/:name/:id
Yaf_Dispatcher :: getInstance ()-> getRouter ()-> addRoute ( "name" ,
new Yaf_Route_rewrite (
"/product/:name/:id
array(
"controller" => "product",
"module" => "index", //(default)
"action" => "index", //(default)
)
array(
"name" => "foo",
"id" => 22,
"foo" => bar
)
Example #2 Yaf_Route_Rewrite() example
<?php
$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 ));
?>
以上例程的输出类似于:
array( "controller" => "user", "action" => "list", "module" => "index", //(default) ) array( "id" => 22, )
Example #3 Yaf_Route_Rewrite(as of 2.3.0)() example
<?php
$config = array(
"name" => array(
"type" => "rewrite" , //Yaf_Route_Rewrite route
"match" => "/user-list/:a/:id" , //match only /user-list/开头的
"route" => array(
'controller' => "user" , //route to user controller,
'action' => ":a" , //使用动态的action
),
),
);
Yaf_Dispatcher :: getInstance ()-> getRouter ()-> addConfig (
new Yaf_Config_Simple ( $config ));
?>
以上例程的输出类似于:
array( "controller" => "user", "action" => "list", "module" => "index", //(default) ) array( "id" => 22, )
[#1] aqueel at ikonami dot net [2012-06-20 16:20:29]
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"
)
);
}
?>