lollipop

A PHP-framework
Log | Files | Refs

commit 5a4d1e009c99a49b92d706ae0f599c3a0c5dd60e
parent 4d0742b42436cd0ce26d979376f9804f65d920be
Author: Friedel Schön <[email protected]>
Date:   Sun, 25 Jun 2023 17:16:19 +0200

mime type router

Diffstat:
MLollipop/Router.php | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/Lollipop/Router.php b/Lollipop/Router.php @@ -10,6 +10,10 @@ namespace Lollipop { public function __construct($temp) { $this->temp = $temp; } + + protected function set_mime(string $file) { + header("Content-Type: " . (mime_content_type($file) ?? "text/html")); + } protected function match(string $match, array &$route_vars): bool { @@ -71,9 +75,11 @@ namespace Lollipop { $fil = $route["func"]($vars); if (!is_null($fil)) echo $this->temp->template($fil, $vars); + $this->set_mime($fil); return; } else { echo $this->temp->template($route["func"], $vars); + $this->set_mime($fil); return; } }