Exemple #1
0
 /**
  * Get a route based on a full or partial query string. 
  * 
  * This function force the route to be not fully qualified. 
  *
  * @param	string	The query string used to create the route
  * @param 	boolean	If TRUE create a fully qualified route. Default TRUE.
  * @return 	string 	The route
  */
 public function getRoute($route = '', $fqr = true)
 {
     return parent::getRoute($route, false);
 }
Exemple #2
0
 /**
  * Force the route to fully qualified and escaped by default
  *
  * @param   string  $route   The query string used to create the route
  * @param   boolean $fqr     If TRUE create a fully qualified route. Default TRUE.
  * @param   boolean $escape  If TRUE escapes the route for xml compliance. Default TRUE.
  * @return  KDispatcherRouterRoute The route
  */
 public function getRoute($route = '', $fqr = true, $escape = true)
 {
     return parent::getRoute($route, $fqr, $escape);
 }