summaryrefslogtreecommitdiff
path: root/src/Http/UrlGenerator.php
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2018-09-07 20:50:31 +0200
committermsquare <msquare@notrademark.de>2018-09-07 20:50:31 +0200
commit2d6bca1357faff28bc1f86a56b432cc463ff7574 (patch)
treece18461d2e170ac28dd365342a1f125a8a31aa3a /src/Http/UrlGenerator.php
parentb320fc779063ee80b8f0ba505cb323287ccccbf5 (diff)
parentce6d0fd13b54ac79a955b85d50860736a520d333 (diff)
Merge branch 'MyIgel-routing'
Diffstat (limited to 'src/Http/UrlGenerator.php')
-rw-r--r--src/Http/UrlGenerator.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/Http/UrlGenerator.php b/src/Http/UrlGenerator.php
new file mode 100644
index 00000000..7ced769e
--- /dev/null
+++ b/src/Http/UrlGenerator.php
@@ -0,0 +1,30 @@
+<?php
+
+namespace Engelsystem\Http;
+
+/**
+ * Provides urls when rewriting on the webserver is enabled. (default)
+ *
+ * The urls have the form <app url>/<path>?<parameters>
+ */
+class UrlGenerator implements UrlGeneratorInterface
+{
+ /**
+ * @param string $path
+ * @param array $parameters
+ * @return string url in the form [app url]/[path]?[parameters]
+ */
+ public function to($path, $parameters = [])
+ {
+ $path = '/' . ltrim($path, '/');
+ $request = app('request');
+ $uri = $request->getUriForPath($path);
+
+ if (!empty($parameters) && is_array($parameters)) {
+ $parameters = http_build_query($parameters);
+ $uri .= '?' . $parameters;
+ }
+
+ return $uri;
+ }
+}