-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRenderer.php
172 lines (155 loc) · 3.58 KB
/
Renderer.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<?php
/*
* This file has its roots as part of the Mojavi package which was
* Copyright (c) 2003 Sean Kerr. It has been incorporated into this
* derivative work under the terms of the LGPL V2.1.
* (http://www.gnu.org/licenses/lgpl-2.1.html)
*/
namespace Xmf\Xadr;
/**
* Renderer implements a renderer object using template files
* consisting of PHP code.
*
* @category Xmf\Xadr\Renderer
* @package Xmf
* @author Richard Griffith <[email protected]>
* @author Sean Kerr <[email protected]>
* @copyright 2013-2015 XOOPS Project (http://xoops.org)
* @copyright 2003 Sean Kerr
* @license GNU GPL 2 or later (http://www.gnu.org/licenses/gpl-2.0.html)
* @link http://xoops.org
*/
abstract class Renderer extends ContextAware
{
/**
* An attribute object for template attributes.
*
* @var XadrArray
*/
public $attributes;
/**
* An absolute file-system path where a template can be found.
*
* @var string
*/
protected $dir = null;
/**
* The mode to be used for rendering, which is one of the following:
*
* - Xadr::RENDER_CLIENT - render to client
* - Xadr::RENDER_VARIABLE - render to variable
*
* @var int
*/
protected $mode = Xadr::RENDER_CLIENT;
/**
* A file-system path to a template.
*
* @var string|null
*/
protected $template = null;
/**
* Render results for mode Xadr::RENDER_VARIABLE
*
* @var string
*/
protected $result = '';
/**
* initContextAware - called by ContextAware::__construct
*
* @return void
*/
protected function initContextAware()
{
$this->attributes = new XadrArray;
}
/**
* Render the view.
*
* @return void
*/
abstract public function execute();
/**
* Retrieve the rendered result when render mode is Xadr::RENDER_VARIABLE.
*
* @return string the rendered view.
*/
public function fetchResult()
{
return $this->result;
}
/**
* Clear any rendered result.
*
* @return void
*/
public function clearResult()
{
$this->result = '';
}
/**
* Retrieve the render mode, which is one of the following:
*
* - Xadr::RENDER_CLIENT - render to client
* - Xadr::RENDER_VARIABLE - render to variable
*
* @return int A render mode.
*/
public function getMode()
{
return $this->mode;
}
/**
* Set the render mode, which is one of the following:
* - Xadr::RENDER_CLIENT - echo to output
* - Xadr::RENDER_VARIABLE - render to variable
*
* @param int $mode render mode.
*
* @return void
*/
public function setMode($mode)
{
$this->mode = $mode;
}
/**
* Get the current template.
*
* @return mixed $template The template if previously set or null
*/
public function getTemplate()
{
return $this->template;
}
/**
* Set the template.
*
* @param mixed $template A template
*
* @return void
*/
public function setTemplate($template)
{
$this->template = $template;
}
/**
* Retrieve the path to the template directory.
*
* @return string the template directory.
*/
public function getTemplateDir()
{
return $this->dir;
}
/**
* Set the template directory.
*
* @param string $dir A path to the templates
*
* @return void
*/
public function setTemplateDir($dir)
{
$this->dir = $dir;
}
}