-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefaultView.php
109 lines (91 loc) · 2.36 KB
/
DefaultView.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?php
/**
* DframeFramework
* Copyright (c) Sławomir Kaleta.
*
* @license https://github.com/dframe/dframe/blob/master/LICENCE (MIT)
*/
namespace Dframe\View;
use Dframe\Config\Config;
use Dframe\View\Exceptions\ViewException;
/**
* Default View.
*
* @author Sławomir Kaleta <[email protected]>
* @author Amadeusz Dzięcioł <[email protected]>
*/
class DefaultView implements ViewInterface
{
/**
* @var Config
*/
protected $templateConfig;
/**
* DefaultView constructor.
*/
public function __construct()
{
$this->templateConfig = Config::load('view/default');
}
/**
* Set the var to the template.
*
* @param string $name
* @param string $value
*
* @return void
*/
public function assign($name, $value): void
{
$this->$name = $value;
}
/**
* Return code.
*
* @param string $name Filename
* @param string $path Alternative Path
*
* @return string
* @throws ViewException
*/
public function fetch($name, $path = null)
{
$pathFile = pathFile($name);
$folder = $pathFile[0];
$name = $pathFile[1];
if ($path === null) {
$path = $this->templateConfig->get('setTemplateDir') . DIRECTORY_SEPARATOR . $folder . $name .
$this->templateConfig->get('fileExtension', '.html.php');
}
if (!is_file($path)) {
throw new ViewException('Can not open template ' . $name . ' in: ' . $path);
}
ob_start();
include $path;
return ob_get_clean();
}
/**
* Return code to the Smarty template.
*
* @param string $name
* @param string $path
*
* @return mixed
* @throws ViewException
*/
public function renderInclude($name, $path = null)
{
$pathFile = pathFile($name);
$folder = $pathFile[0];
$name = $pathFile[1];
if ($path === null) {
$path = $this->templateConfig->get('setTemplateDir') . DIRECTORY_SEPARATOR . $folder . $name .
$this->templateConfig->get('fileExtension', '.html.php');
}
if (!is_file($path)) {
throw new ViewException('Can not open template ' . $name . ' in: ' . $path);
}
$renderInclude = include $path;
return $renderInclude;
}
}