diff options
Diffstat (limited to 'views/meta.php')
| -rw-r--r-- | views/meta.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/views/meta.php b/views/meta.php new file mode 100644 index 0000000..5011fc5 --- /dev/null +++ b/views/meta.php @@ -0,0 +1,16 @@ +<?php + +include "../header.php"; + +function end_page() { + include "../footer.php"; +} + +foreach (glob("../../models/*.php") as $filename) { + include $filename; +} + +function runController(string $name) { + include "../../controllers/$name.php"; + include '../../controllers/meta.php'; +} |
