Класс Yaf_Route_Map

(Yaf >=1.0.0)

Введение

Yaf_Route_Map - это встроенный маршрут, он просто преобразует конечную точку URI (ту часть URI, которая идет после базового URI: смотрите Yaf_Request_Abstract::setBaseUri()) в имя контроллера или имя действия (зависит от параметра, переданного в Yaf_Route_Map::__construct()) в следующем правиле: 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()).

Обзор классов

Yaf_Route_Map implements Yaf_Route_Interface {
/* Свойства */
protected $_ctl_router ;
protected $_delimiter ;
/* Методы */
public assemble ( array $info , array $query = ? ) : string
public __construct ( string $controller_prefer = false , string $delimiter = "" )
public route ( Yaf_Request_Abstract $request ) : bool
}

Свойства

_ctl_router

_delimiter

Содержание