-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathView.php
More file actions
42 lines (32 loc) · 1006 Bytes
/
View.php
File metadata and controls
42 lines (32 loc) · 1006 Bytes
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
<?php
namespace heitorspedroso\minimalphpmvcframework;
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($viewContent);
return str_replace('{{content}}', $viewContent, $layoutContent);
}
protected function layoutContent() {
$layout = Application::$app->layout;
if(Application::$app->controller){
$layout = Application::$app->controller->layout;
}
ob_start();
include_once Application::$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 Application::$ROOT_DIR."/views/$view.php";
return ob_get_clean();
}
}