Dietcube\Twig\DietcubeExtension::absoluteUrl PHP Method

absoluteUrl() public method

This method is the shortcut for Router::url() with true of is_absolute flag.
public absoluteUrl ( string $handler, array $data = [], array $query_params = [] ) : string
$handler string
$data array
$query_params array
return string url
    public function absoluteUrl($handler, array $data = [], array $query_params = [])
    {
        return $this->url($handler, $data, $query_params, true);
    }