2023-07-28 21:18:04 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Core;
|
|
|
|
|
|
|
|
class View
|
|
|
|
{
|
2023-12-05 01:01:04 +00:00
|
|
|
public static function render(string $view, array $arguments = []): void
|
2023-07-28 21:18:04 +00:00
|
|
|
{
|
|
|
|
extract($arguments, EXTR_SKIP);
|
|
|
|
$file = $_SERVER['DOCUMENT_ROOT'] . "/_incl_data/Views/$view";
|
|
|
|
|
|
|
|
if (is_readable($file)) {
|
|
|
|
require $file;
|
|
|
|
} else {
|
|
|
|
trigger_error("File $file not found!", E_USER_ERROR);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|