Yaf_Route_Map::__construct
(Yaf >=1.0.0)
Yaf_Route_Map::__construct — The __construct purpose
Description
$controller_prefer
= FALSE
[, string $delimiter
= ""
]] )
Parameters
-
controller_prefer
-
Whether the result should considering as controller or action
-
delimiter
-
Examples
Example #1 Yaf_Route_Map()example
<?php
/**
* Add a map route to Yaf_Router route stack
*/
Yaf_Dispatcher::getInstance()->getRouter()->addRoute("name",
new Yaf_Route_Map());
?>
The above example will output something similar to:
/* for http://yourdomain.com/product/foo/bar * route will result in following values: */ array( "controller" => "product_foo_bar", )
Example #2 Yaf_Route_Map()example
<?php
/**
* Add a map route to Yaf_Router route stack
*/
Yaf_Dispatcher::getInstance()->getRouter()->addRoute("name",
new Yaf_Route_Map(true, "_"));
?>
The above example will output something similar to:
/* for http://yourdomain.com/user/list/_/foo/22 * route will result in following values: */ array( "action" => "user_list", ) /** * and request parameters: */ array( "foo" => 22, )
Example #3 Yaf_Route_Map()example
<?php
/**
* Add a map route to Yaf_Router route stack by calling addconfig
*/
$config = array(
"name" => array(
"type" => "map", //Yaf_Route_Map route
"controllerPrefer" => FALSE,
"delimiter" => "#!",
),
);
Yaf_Dispatcher::getInstance()->getRouter()->addConfig(
new Yaf_Config_Simple($config));
?>
See Also
- Yaf_Router::addRoute() - Add new Route into Router
- Yaf_Route_Static
- Yaf_Route_Supervar
- Yaf_Route_Simple
- Yaf_Route_Regex
- Yaf_Route_Rewrite
English translation
You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.
Thank you in advance.
Document created the 30/01/2003, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/php-rf-yaf-route-map.construct.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.