-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSmartyView.php
120 lines (101 loc) · 2.62 KB
/
SmartyView.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
110
111
112
113
114
115
116
117
118
119
120
<?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;
use Smarty;
use SmartyException;
/**
* Smarty View.
*
* @author Sławomir Kaleta <[email protected]>
*/
class SmartyView implements ViewInterface
{
/**
* @var Smarty
*/
public $smarty;
/**
* @var Config
*/
protected $smartyConfig;
/**
* SmartyView constructor.
*/
public function __construct()
{
$this->smartyConfig = Config::load('view/smarty');
$smarty = new Smarty();
$smarty->debugging = $this->smartyConfig->get('debugging', false);
$smarty->setTemplateDir($this->smartyConfig->get('setTemplateDir'))
->setCompileDir($this->smartyConfig->get('setCompileDir'))
->addPluginsDir($this->smartyConfig->get('addPluginsDir'));
$this->smarty = $smarty;
}
/**
* @param $dir
*/
public function setTemplateDir($dir): void
{
$this->smarty->setTemplateDir($dir);
}
/**
* @param $name
* @param $value
*
* @return Smarty
* @throws ViewException
*/
public function assign($name, $value)
{
if ($this->smarty->getTemplateVars($name) !== null) {
throw new ViewException('You can\'t assign "' . $name . '" in Smarty');
}
$assign = $this->smarty->assign($name, $value);
return $assign;
}
/**
* Return code.
*
* @param string $name Filename
* @param string $path Alternative Path
*
* @return mixed
* @throws SmartyException
* @throws ViewException
*/
public function fetch($name, $path = null)
{
return $this->renderInclude($name, $path);
}
/**
* Transfers the code to the Smarty template.
*
* @param string $name
* @param string $path
*
* @return mixed
* @throws SmartyException
* @throws ViewException
*/
public function renderInclude($name, $path = null)
{
$pathFile = pathFile($name);
$folder = $pathFile[0];
$name = $pathFile[1];
if ($path === null) {
$path = $this->smarty->getTemplateDir(0) . DIRECTORY_SEPARATOR . $folder . $name .
$this->smartyConfig->get('fileExtension', '.html.php');
}
if (!is_file($path)) {
throw new ViewException('Can not open template ' . $name . ' in: ' . $path);
}
return $this->smarty->fetch($path); // Loading view
}
}