-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathView.php
More file actions
49 lines (36 loc) · 1.09 KB
/
Copy pathView.php
File metadata and controls
49 lines (36 loc) · 1.09 KB
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
45
46
47
48
49
<?php
namespace lexuanphat\phpmvc;
class View
{
public string $title = '';
public function renderView($view, $params = [])
{
$viewContent = $this->renderOnlyView($view, $params);
$layoutContent = $this->layoutContent();
return str_replace("{{ content }}", $viewContent, $layoutContent);
}
public function renderContent($viewContent)
{
$layoutContent = $this->layoutContent();
return str_replace("{{ content }}", $viewContent, $layoutContent);
}
protected function layoutContent()
{
$layout = App::$app->layout;
if(App::$app->controller){
$layout = App::$app->controller->layout;
}
ob_start();
include_once App::$ROOT_DIR . "/views/layouts/$layout.php";
return ob_get_clean();
}
protected function renderOnlyView($view, $params)
{
foreach ($params as $key => $value) {
$$key = $value;
}
ob_start();
include_once App::$ROOT_DIR . "/views/$view.php";
return ob_get_clean();
}
}