CakeFest 2024: The Official CakePHP Conference

The Yaf_Route_Map class

(Yaf >=1.0.0)

Introduzione

Yaf_Route_Map is a built-in route, it simply convert a URI endpoint (that part of the URI which comes after the base URI: see Yaf_Request_Abstract::setBaseUri()) to a controller name or action name(depends on the parameter passed to Yaf_Route_Map::__construct()) in following rule: A => controller A. A/B/C => controller A_B_C. A/B/C/D/E => controller A_B_C_D_E.

If the second parameter of Yaf_Route_Map::__construct() is specified, then only the part before delimiter of URI will used to routing, the part after it is used to routing request parameters (see the example section of Yaf_Route_Map::__construct()).

Sommario della classe

class Yaf_Route_Map implements Yaf_Route_Interface {
/* Proprietà */
protected $_ctl_router;
protected $_delimiter;
/* Metodi */
public __construct(string $controller_prefer = false, string $delimiter = "")
public assemble(array $info, array $query = ?): string
public route(Yaf_Request_Abstract $request): bool
}

Proprietà

_ctl_router

_delimiter

Indice dei contenuti

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top