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