-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmacro.php
More file actions
291 lines (257 loc) · 4.74 KB
/
macro.php
File metadata and controls
291 lines (257 loc) · 4.74 KB
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
<?php
/**
* @package hubzero-cms
* @copyright Copyright (c) 2005-2020 The Regents of the University of California.
* @license http://opensource.org/licenses/MIT MIT
*/
// No direct access
defined('_HZEXEC_') or die();
/**
* Base class for wiki macros
* Should be extended
*/
class WikiMacro
{
/**
* Name of the macro
*
* @var string
*/
protected $_name = null;
/**
* Container for internal data
*
* @var array
*/
protected $_data = array();
/**
* Database
*
* @var object
*/
protected $_db = null;
/**
* Container for errors
*
* @var array
*/
protected $_error = null;
/**
* Container for errors
*
* @var array
*/
protected $_arguments = null;
/**
* Allow macro in partial parsing?
*
* @var string
*/
public $allowPartial = false;
/**
* Allow macro in partial parsing?
*
* @var array
*/
public $linkLog = array();
/**
* Instance of a macro
*
* @var object
*/
static protected $thisInstance = null;
/**
* Constructor
*
* @param array $config Configuration options
* @return void
*/
public function __construct($config=array())
{
$this->_db = App::get('db');
$this->args = '';
// Set the controller name
if (empty($this->_name))
{
if (isset($config['name']))
{
$this->_name = $config['name'];
}
else
{
// Get the reflection info
$r = new ReflectionClass($this);
// Is it namespaced?
if ($r->inNamespace())
{
// It is! This makes things easy.
$this->_name = strtolower($r->getShortName());
}
else if (preg_match('/(.*)Macro/i', get_class($this), $r))
{
$this->_name = strtolower($r[1]);
}
else
{
throw new RuntimeException(__CLASS__ . '::__construct(); Can\'t get or parse class name.');
}
}
}
}
/**
* Set a property
*
* @param string $property Name of property to set
* @param mixed $value Value to set property to
* @return void
*/
public function __set($property, $value)
{
if ($property == 'args')
{
$this->_arguments = null;
}
$this->_data[$property] = $value;
}
/**
* Get a property
*
* @param string $property Name of property to retrieve
* @return mixed
*/
public function __get($property)
{
if (isset($this->_data[$property]))
{
return $this->_data[$property];
}
}
/**
* Get an instance of this macro, creating it if not found
*
* @param array $config Configuration parameters
* @return object
*/
public static function getInstance($config=array())
{
if (self::$thisInstance == null)
{
if (isset($config['name']))
{
$name = $config['name'];
}
else
{
$name = get_class();
}
self::$thisInstance = new $name();
}
return self::$thisInstance;
}
/**
* Render macro output
* this should be overriden by extended classes
*
* @return void
*/
public function render()
{
// Abstract function for overloading
}
/**
* Return the macro's name
*
* @return string
*/
public function name()
{
return $this->_name;
}
/**
* Returns description of macro, use, and accepted arguments
* this should be overriden by extended classes
*
* @return string
*/
public function description()
{
return Lang::txt('Not implemented.');
}
/**
* Get macro argumentss
*
* @return array List of arguments
*/
protected function getArguments()
{
if (!is_array($this->_arguments))
{
// get the args passed in
$arguments = explode(',', (string)$this->args);
$arguments = array_map('trim', (array)$arguments);
$this->_arguments = $arguments;
}
return $this->_arguments;
}
/**
* Get a macro argument
*
* @param mixed $key
* @param mixed $default
* @return string
*/
protected function getArgument($key, $default = null)
{
$arguments = $this->getArguments();
if (!$this->hasArgument($key))
{
return $default;
}
$value = $arguments[$key];
return $value ? $value : $default;
}
/**
* Set all macro argument values
*
* @param array $data
* @return object
*/
protected function setArguments($data)
{
$this->arguments = (array)$data;
return $this;
}
/**
* Set a macro argument value
*
* @param mixed $key
* @param mixed $val
* @return object
*/
protected function setArgument($key, $val)
{
$this->_arguments[$key] = $val;
return $this;
}
/**
* Check if macro has any arguments
*
* @return boolean
*/
protected function hasArguments()
{
$arguments = $this->getArguments();
return !empty($arguments);
}
/**
* Check if macro has specified argument
*
* @param string $key
* @return boolean
*/
protected function hasArgument($key)
{
$arguments = $this->getArguments();
return isset($arguments[$key]);
}
}