-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathview.php
44 lines (40 loc) · 1.38 KB
/
view.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php declare(strict_types=1);
namespace PhpSlides\Router;
use function component;
use PhpSlides\Core\Foundation\Application;
/**
* --------------------------------------------------------------
* Router View
*
* This class controls public URL parsing and validation. It is responsible for rendering views
* and parsing public URLs within views.
*
* --------------------------------------------------------------
*/
final class view
{
/**
* --------------------------------------------------------------
* Render Views and Parse Public URL in Views
*
* This method is used to render a view by parsing the provided view name, validating
* the path, and passing any additional parameters to the view file.
* It returns the output from the view file as a result.
*
* @param string $view The name or path of the view to be rendered.
* @param mixed ...$props Additional parameters to be passed into the view.
*
* @return mixed The rendered content of the view.
*
* --------------------------------------------------------------
*/
final public static function render (string $view, mixed ...$props): mixed
{
// split :: into array and extract the folder and files
$file = preg_replace('/(::)|::/', '/', $view);
$file = trim($file, '\/\/');
$file_uri = Application::$viewsDir . $file;
header('Content-Type: text/html');
return component($file_uri, ...$props);
}
}