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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
<?php
declare(strict_types=1);
namespace Laminas\View\Model;
use ArrayAccess;
use ArrayIterator;
use Laminas\Stdlib\ArrayUtils;
use Laminas\View\Exception;
use Laminas\View\Variables as ViewVariables;
use ReturnTypeWillChange; // phpcs:ignore
use Traversable;
use function array_key_exists;
use function count;
use function get_class;
use function gettype;
use function is_array;
use function is_object;
use function sprintf;
class ViewModel implements ModelInterface, ClearableModelInterface, RetrievableChildrenInterface
{
/**
* What variable a parent model should capture this model to
*
* @var string
*/
protected $captureTo = 'content';
/**
* Child models
*
* @var array
*/
protected $children = [];
/**
* Renderer options
*
* @var array
*/
protected $options = [];
/**
* Template to use when rendering this model
*
* @var string
*/
protected $template = '';
/**
* Is this a standalone, or terminal, model?
*
* @var bool
*/
protected $terminate = false;
/**
* View variables
*
* @var array|ArrayAccess|Traversable
* @psalm-var array|ArrayAccess&Traversable
*/
protected $variables = [];
/**
* Is this append to child with the same capture?
*
* @var bool
*/
protected $append = false;
/**
* Constructor
*
* @param null|array|Traversable|ArrayAccess $variables
* @param array|Traversable $options
*/
public function __construct($variables = null, $options = null)
{
if (null === $variables) {
$variables = new ViewVariables();
}
// Initializing the variables container
$this->setVariables($variables, true);
if (null !== $options) {
$this->setOptions($options);
}
}
/**
* Property overloading: set variable value
*
* @param string $name
* @param mixed $value
* @return void
*/
public function __set($name, $value)
{
$this->setVariable($name, $value);
}
/**
* Property overloading: get variable value
*
* @param string $name
* @return mixed
*/
public function __get($name)
{
if (! $this->__isset($name)) {
return;
}
$variables = $this->getVariables();
return $variables[$name];
}
/**
* Property overloading: do we have the requested variable value?
*
* @param string $name
* @return bool
*/
public function __isset($name)
{
$variables = $this->getVariables();
return isset($variables[$name]);
}
/**
* Property overloading: unset the requested variable
*
* @param string $name
* @return void
*/
public function __unset($name)
{
if (! $this->__isset($name)) {
return;
}
unset($this->variables[$name]);
}
/**
* Called after this view model is cloned.
*
* Clones $variables property so changes done to variables in the new
* instance don't change the current one.
*
* @return void
*/
public function __clone()
{
if (is_object($this->variables)) {
$this->variables = clone $this->variables;
}
}
/**
* Set a single option
*
* @param string $name
* @param mixed $value
* @return ViewModel
*/
public function setOption($name, $value)
{
$this->options[(string) $name] = $value;
return $this;
}
/**
* Get a single option
*
* @param string $name The option to get.
* @param mixed|null $default (optional) A default value if the option is not yet set.
* @return mixed
*/
public function getOption($name, $default = null)
{
$name = (string) $name;
return array_key_exists($name, $this->options) ? $this->options[$name] : $default;
}
/**
* Set renderer options/hints en masse
*
* @param array|Traversable $options
* @throws Exception\InvalidArgumentException
* @return ViewModel
*/
public function setOptions($options)
{
// Assumption is that lowest common denominator for renderer configuration
// is an array
if ($options instanceof Traversable) {
$options = ArrayUtils::iteratorToArray($options);
}
if (! is_array($options)) {
throw new Exception\InvalidArgumentException(sprintf(
'%s: expects an array, or Traversable argument; received "%s"',
__METHOD__,
is_object($options) ? get_class($options) : gettype($options)
));
}
$this->options = $options;
return $this;
}
/**
* Get renderer options/hints
*
* @return array
*/
public function getOptions()
{
return $this->options;
}
/**
* Clear any existing renderer options/hints
*
* @return ViewModel
*/
public function clearOptions()
{
$this->options = [];
return $this;
}
/**
* Get a single view variable
*
* @param string $name
* @param mixed|null $default (optional) default value if the variable is not present.
* @return mixed
*/
public function getVariable($name, $default = null)
{
$name = (string) $name;
if (is_array($this->variables)) {
if (array_key_exists($name, $this->variables)) {
return $this->variables[$name];
}
} elseif ($this->variables->offsetExists($name)) {
return $this->variables->offsetGet($name);
}
return $default;
}
/**
* Set view variable
*
* @param string $name
* @param mixed $value
* @return ViewModel
*/
public function setVariable($name, $value)
{
$this->variables[(string) $name] = $value;
return $this;
}
/**
* Set view variables en masse
*
* Can be an array or a Traversable + ArrayAccess object.
*
* @param array|ArrayAccess|Traversable $variables
* @param bool $overwrite Whether or not to overwrite the internal container with $variables
* @throws Exception\InvalidArgumentException
* @return ViewModel
*/
public function setVariables($variables, $overwrite = false)
{
if (! is_array($variables) && ! $variables instanceof Traversable) {
throw new Exception\InvalidArgumentException(sprintf(
'%s: expects an array, or Traversable argument; received "%s"',
__METHOD__,
is_object($variables) ? get_class($variables) : gettype($variables)
));
}
if ($overwrite) {
if (is_object($variables) && ! $variables instanceof ArrayAccess) {
$variables = ArrayUtils::iteratorToArray($variables);
}
$this->variables = $variables;
return $this;
}
foreach ($variables as $key => $value) {
$this->setVariable($key, $value);
}
return $this;
}
/**
* Get view variables
*
* @return array|ArrayAccess|Traversable
*/
public function getVariables()
{
return $this->variables;
}
/**
* Clear all variables
*
* Resets the internal variable container to an empty container.
*
* @return ViewModel
*/
public function clearVariables()
{
$this->variables = new ViewVariables();
return $this;
}
/**
* Set the template to be used by this model
*
* @param string $template
* @return ViewModel
*/
public function setTemplate($template)
{
$this->template = (string) $template;
return $this;
}
/**
* Get the template to be used by this model
*
* @return string
*/
public function getTemplate()
{
return $this->template;
}
/**
* Add a child model
*
* @param null|string $captureTo Optional; if specified, the "capture to" value to set on the child
* @param null|bool $append Optional; if specified, append to child with the same capture
* @return ViewModel
*/
public function addChild(ModelInterface $child, $captureTo = null, $append = null)
{
$this->children[] = $child;
if (null !== $captureTo) {
$child->setCaptureTo($captureTo);
}
if (null !== $append) {
$child->setAppend($append);
}
return $this;
}
/**
* Return all children.
*
* Return specifies an array, but may be any iterable object.
*
* @return array
*/
public function getChildren()
{
return $this->children;
}
/**
* Does the model have any children?
*
* @return bool
*/
public function hasChildren()
{
return (bool) $this->children;
}
/**
* Clears out all child models
*
* @return ViewModel
*/
public function clearChildren()
{
$this->children = [];
return $this;
}
/**
* Returns an array of Viewmodels with captureTo value $capture
*
* @param string $capture
* @param bool $recursive search recursive through children, default true
* @return array
*/
public function getChildrenByCaptureTo($capture, $recursive = true)
{
$children = [];
foreach ($this->children as $child) {
if ($recursive === true) {
$children += $child->getChildrenByCaptureTo($capture);
}
if ($child->captureTo() === $capture) {
$children[] = $child;
}
}
return $children;
}
/**
* Set the name of the variable to capture this model to, if it is a child model
*
* @param string $capture
* @return ViewModel
*/
public function setCaptureTo($capture)
{
$this->captureTo = (string) $capture;
return $this;
}
/**
* Get the name of the variable to which to capture this model
*
* @return string
*/
public function captureTo()
{
return $this->captureTo;
}
/**
* Set flag indicating whether or not this is considered a terminal or standalone model
*
* @param bool $terminate
* @return ViewModel
*/
public function setTerminal($terminate)
{
$this->terminate = (bool) $terminate;
return $this;
}
/**
* Is this considered a terminal or standalone model?
*
* @return bool
*/
public function terminate()
{
return $this->terminate;
}
/**
* Set flag indicating whether or not append to child with the same capture
*
* @param bool $append
* @return ViewModel
*/
public function setAppend($append)
{
$this->append = (bool) $append;
return $this;
}
/**
* Is this append to child with the same capture?
*
* @return bool
*/
public function isAppend()
{
return $this->append;
}
/**
* Return count of children
*
* @return int
*/
#[ReturnTypeWillChange]
public function count()
{
return count($this->children);
}
/**
* Get iterator of children
*
* @return ArrayIterator
*/
#[ReturnTypeWillChange]
public function getIterator()
{
return new ArrayIterator($this->children);
}
}