commit 4de368d8ad8a3480d600e84293ec9d8182991280
parent c974ddfe591fb255d8c08b4d61471977da32aa8c
Author: Friedel Schön <[email protected]>
Date: Sun, 25 Jun 2023 17:31:09 +0200
Merge branch 'master' of https://github.com/friedelschoen/lollipop
Diffstat:
2 files changed, 11 insertions(+), 9 deletions(-)
diff --git a/Controller/Templates.php b/Controller/Templates.php
@@ -115,7 +115,12 @@ namespace Controller{
$table .= "<tr>";
$col_names = $obj->get_column_names();
foreach($col_names as $col){
- $table .= '<td>' . $obj->{$col} . '</td>';
+ $table .= '<td>';
+ if($col == "email" || $col == "exam" || $col == "course"){
+ $table .= "<a>$col</a></td>";
+ }else{
+ $table .= $obj->{$col} . '</td>';
+ }
}
$table .= '
<td>
diff --git a/Lollipop/Router.php b/Lollipop/Router.php
@@ -1,11 +1,10 @@
<?php
-
namespace Lollipop {
const MIME_TYPES = array(
- "css" => "text/css",
- "js" => "text/javascript"
- );
-
+ "css" => "text/css",
+ "js" => "text/javascript"
+ );
+
class Router
{
protected array $routes = [];
@@ -19,7 +18,7 @@ namespace Lollipop {
protected function set_mime($file) {
if (!is_null($file))
$ext = pathinfo($file, PATHINFO_EXTENSION);
- else
+ else
$ext = null;
if ($ext != null && array_key_exists($ext, MIME_TYPES))
@@ -104,4 +103,3 @@ namespace Lollipop {
return null;
}
}
-}
-\ No newline at end of file