blob: 960e37971dfb04f67aa8be74db6deca1b760846f (
plain)
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
|
<?php
namespace Smarty\Resource;
use Smarty\Exception;
use Smarty\Template;
use Smarty\Template\Source;
/**
* Smarty Internal Plugin Resource Extends
* Implements the file system as resource for Smarty which {extend}s a chain of template files templates
* @author Uwe Tews
* @author Rodney Rehm
*/
class ExtendsPlugin extends BasePlugin
{
/**
* populate Source Object with metadata from Resource
*
* @param Source $source source object
* @param Template|null $_template template object
*
* @throws Exception
*/
public function populate(Source $source, ?Template $_template = null)
{
$uid = '';
$sources = array();
$components = explode('|', $source->name);
$smarty = $source->getSmarty();
$exists = true;
foreach ($components as $component) {
$_s = Source::load(null, $smarty, $component);
$sources[ $_s->uid ] = $_s;
$uid .= $_s->uid;
if ($_template) {
$exists = $exists && $_s->exists;
}
}
$source->components = $sources;
$source->uid = sha1($uid . $source->getSmarty()->_joined_template_dir);
$source->exists = $exists;
if ($_template) {
$source->timestamp = $_s->timestamp;
}
}
/**
* populate Source Object with timestamp and exists from Resource
*
* @param Source $source source object
*/
public function populateTimestamp(Source $source)
{
$source->exists = true;
/* @var Source $_s */
foreach ($source->components as $_s) {
$source->exists = $source->exists && $_s->exists;
}
$source->timestamp = $source->exists ? $_s->getTimeStamp() : false;
}
/**
* Load template's source from files into current template object
*
* @param Source $source source object
*
* @return string template source
* @throws \Smarty\Exception if source cannot be loaded
*/
public function getContent(Source $source)
{
if (!$source->exists) {
throw new \Smarty\Exception("Unable to load '{$source->type}:{$source->name}'");
}
$_components = array_reverse($source->components);
$_content = '';
/* @var Source $_s */
foreach ($_components as $_s) {
// read content
$_content .= $_s->getContent();
}
return $_content;
}
/**
* Determine basename for compiled filename
*
* @param Source $source source object
*
* @return string resource's basename
*/
public function getBasename(Source $source)
{
$search = array(':');
if (\Smarty\Smarty::$_IS_WINDOWS) {
$search = array(':', '|');
}
return str_replace($search, '.', basename($source->getResourceName()));
}
/*
* Disable timestamp checks for extends resource.
* The individual source components will be checked.
*
* @return bool
*/
/**
* @return bool
*/
public function checkTimestamps()
{
return false;
}
}
|