Exemplo n.º 1
0
 /**
  * Generuje link.
  * @param $name
  * @param null $data
  * @return bool|string
  */
 public function generateUrl($name, $data = null)
 {
     $router = new \Router\Router('http://' . $_SERVER["SERVER_NAME"] . $_SERVER["REQUEST_URI"]);
     $collection = $router->getCollection();
     $route = $collection->get($name);
     if (isset($route)) {
         return $route->geneRateUrl($data);
     }
     return false;
 }