aboutsummaryrefslogtreecommitdiff
path: root/views/meta.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/meta.php')
-rw-r--r--views/meta.php19
1 files changed, 0 insertions, 19 deletions
diff --git a/views/meta.php b/views/meta.php
deleted file mode 100644
index 4aa7b8f..0000000
--- a/views/meta.php
+++ /dev/null
@@ -1,19 +0,0 @@
-<?php
-
-if (isset($title)) {
- include_once "../header.php";
-}
-
-function end_page() {
- include_once "../footer.php";
-}
-
-include_once "../../models/database.php";
-foreach (glob("../../models/*.php") as $filename) {
- include_once $filename;
-}
-
-function runController(string $name) {
- include_once "../../controllers/$name.php";
- include_once '../../controllers/meta.php';
-}