aboutsummaryrefslogtreecommitdiff
path: root/views/meta.php
blob: 5011fc56bbf58c02925cfd299330fcdcb88ee1bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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';
}