project structure refactoring
This commit is contained in:
parent
d137d08ff4
commit
e75de72afd
@ -142,7 +142,6 @@ Project Link: [https://github.com/GamerClassN7/Smart_Home/](https://github.com/G
|
||||
- /controllers
|
||||
- UserController.php
|
||||
- /library # helpers etc.
|
||||
- Mailer.php
|
||||
- /models
|
||||
- /types
|
||||
- Units.php
|
||||
|
@ -1,30 +0,0 @@
|
||||
<?php
|
||||
class Route{
|
||||
private $urls = [];
|
||||
private $views = [];
|
||||
|
||||
function __construct() {
|
||||
// code...
|
||||
}
|
||||
|
||||
function add($url, $view = "", $conrol = "") {
|
||||
$this->urls[] = '/'.trim($url, '/');
|
||||
if (!empty($view)) {
|
||||
$this->views[] = $view;
|
||||
}
|
||||
}
|
||||
|
||||
function submit(){
|
||||
$urlGetParam = isset($_GET['url']) ? '/' . $_GET['url'] : '/';
|
||||
foreach ($this->urls as $urlKey => $urlValue) {
|
||||
if ($urlValue === $urlGetParam) {
|
||||
$useView = $this->views[$urlKey];
|
||||
new $useView();
|
||||
die();
|
||||
}
|
||||
}
|
||||
echo 'Not Fount 404';
|
||||
die();
|
||||
//TODO: 404 přidělat
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user