Fix Router and finish base view system.

This commit is contained in:
2026-03-20 13:59:34 +01:00
parent c36b95a15f
commit 43eb936532
11 changed files with 267 additions and 18 deletions

View File

@@ -0,0 +1,6 @@
<?php
return [
'{int}' => '([0-9]+)',
'{chars}' => '([A-Za-z]+)',
'{string}' => '([0-9A-Za-z]+)',
];

4
config/views.php Normal file
View File

@@ -0,0 +1,4 @@
<?php
return [
'base_view_skeleton' => 'base'
];