1
|
|
|
<?php |
2
|
|
|
declare(strict_types = 1); |
3
|
|
|
|
4
|
|
|
namespace Yiisoft\View; |
5
|
|
|
|
6
|
|
|
use Psr\EventDispatcher\EventDispatcherInterface; |
7
|
|
|
use Psr\Log\LoggerInterface; |
8
|
|
|
use Yiisoft\I18n\Locale; |
9
|
|
|
use Yiisoft\View\Event\AfterRender; |
10
|
|
|
use Yiisoft\View\Event\BeforeRender; |
11
|
|
|
use Yiisoft\View\Event\PageBegin; |
12
|
|
|
use Yiisoft\View\Event\PageEnd; |
13
|
|
|
use Yiisoft\Widget\Block; |
14
|
|
|
use Yiisoft\Widget\ContentDecorator; |
15
|
|
|
use Yiisoft\Widget\FragmentCache; |
16
|
|
|
|
17
|
|
|
/** |
18
|
|
|
* View represents a view object in the MVC pattern. |
19
|
|
|
* |
20
|
|
|
* View provides a set of methods (e.g. {@see render()}) for rendering purpose. |
21
|
|
|
* |
22
|
|
|
* For more details and usage information on View, see the [guide article on views](guide:structure-views). |
23
|
|
|
*/ |
24
|
|
|
class View implements DynamicContentAwareInterface |
25
|
|
|
{ |
26
|
|
|
/** |
27
|
|
|
* @var string $basePath view path |
28
|
|
|
*/ |
29
|
|
|
private $basePath; |
30
|
|
|
|
31
|
|
|
/** |
32
|
|
|
* @var array a list of named output blocks. The keys are the block names and the values are the corresponding block |
33
|
|
|
* content. You can call {@see beginBlock()} and {@see endBlock()} to capture small fragments of a view. |
34
|
|
|
* They can be later accessed somewhere else through this property. |
35
|
|
|
*/ |
36
|
|
|
private $blocks; |
37
|
|
|
|
38
|
|
|
/** |
39
|
|
|
* @var ViewContextInterface the context under which the {@see {renderFile()} method is being invoked. |
40
|
|
|
*/ |
41
|
|
|
public $context; |
42
|
|
|
|
43
|
|
|
/** |
44
|
|
|
* @var string the default view file extension. This will be appended to view file names if they don't have file |
45
|
|
|
* extensions. |
46
|
|
|
*/ |
47
|
|
|
public $defaultExtension = 'php'; |
48
|
|
|
|
49
|
|
|
/** |
50
|
|
|
* @var mixed custom parameters that are shared among view templates. |
51
|
|
|
*/ |
52
|
|
|
public $params = []; |
53
|
|
|
|
54
|
|
|
/** |
55
|
|
|
* @var EventDispatcherInterface $eventDispatcher |
56
|
|
|
*/ |
57
|
|
|
protected $eventDispatcher; |
58
|
|
|
|
59
|
|
|
/** |
60
|
|
|
* @var array a list of available renderers indexed by their corresponding supported file extensions. Each renderer |
61
|
|
|
* may be a view renderer object or the configuration for creating the renderer object. For example, the |
62
|
|
|
* following configuration enables the Twig view renderer: |
63
|
|
|
* |
64
|
|
|
* ```php |
65
|
|
|
* [ |
66
|
|
|
* 'twig' => ['__class' => \Yiisoft\Yii\Twig\ViewRenderer::class], |
67
|
|
|
* ] |
68
|
|
|
* ``` |
69
|
|
|
* |
70
|
|
|
* If no renderer is available for the given view file, the view file will be treated as a normal PHP and rendered |
71
|
|
|
* via PhpTemplateRenderer. |
72
|
|
|
*/ |
73
|
|
|
protected $renderers = []; |
74
|
|
|
|
75
|
|
|
/** |
76
|
|
|
* @var Theme the theme object. |
77
|
|
|
*/ |
78
|
|
|
protected $theme; |
79
|
|
|
|
80
|
|
|
/** |
81
|
|
|
* @var DynamicContentAwareInterface[] a list of currently active dynamic content class instances. |
82
|
|
|
*/ |
83
|
|
|
private $cacheStack = []; |
84
|
|
|
|
85
|
|
|
/** |
86
|
|
|
* @var array a list of placeholders for embedding dynamic contents. |
87
|
|
|
*/ |
88
|
|
|
private $dynamicPlaceholders = []; |
89
|
|
|
|
90
|
|
|
/** |
91
|
|
|
* @var string $language |
92
|
|
|
*/ |
93
|
|
|
private $language = 'en'; |
94
|
|
|
|
95
|
|
|
/** |
96
|
|
|
* @var LoggerInterface $logger |
97
|
|
|
*/ |
98
|
|
|
private $logger; |
99
|
|
|
|
100
|
|
|
/** |
101
|
|
|
* @var string $sourceLanguage |
102
|
|
|
*/ |
103
|
|
|
private $sourceLanguage = 'en'; |
104
|
|
|
|
105
|
|
|
/** |
106
|
|
|
* @var Locale source locale used to find localized view file. |
107
|
|
|
*/ |
108
|
|
|
private $sourceLocale; |
109
|
|
|
|
110
|
|
|
/** |
111
|
|
|
* @var array the view files currently being rendered. There may be multiple view files being |
112
|
|
|
* rendered at a moment because one view may be rendered within another. |
113
|
|
|
*/ |
114
|
|
|
private $viewFiles = []; |
115
|
|
|
|
116
|
78 |
|
public function __construct(string $basePath, Theme $theme, EventDispatcherInterface $eventDispatcher, LoggerInterface $logger) |
117
|
|
|
{ |
118
|
78 |
|
$this->basePath = $basePath; |
119
|
78 |
|
$this->theme = $theme; |
120
|
78 |
|
$this->eventDispatcher = $eventDispatcher; |
121
|
78 |
|
$this->logger = $logger; |
122
|
|
|
} |
123
|
|
|
|
124
|
|
|
public function getBasePath(): string |
125
|
|
|
{ |
126
|
|
|
return $this->basePath; |
127
|
|
|
} |
128
|
|
|
|
129
|
|
|
public function setRenderers(array $renderers): void |
130
|
|
|
{ |
131
|
|
|
$this->renderers = $renderers; |
132
|
|
|
} |
133
|
|
|
|
134
|
|
|
public function setSourceLanguage(string $language): void |
135
|
|
|
{ |
136
|
|
|
$this->sourceLanguage = $language; |
137
|
|
|
} |
138
|
|
|
|
139
|
|
|
public function setLanguage(string $language): void |
140
|
|
|
{ |
141
|
|
|
$this->language = $language; |
142
|
|
|
} |
143
|
|
|
|
144
|
|
|
/** |
145
|
|
|
* {@see blocks} |
146
|
|
|
* |
147
|
|
|
* @param string $id |
148
|
|
|
* @param string $value |
149
|
|
|
* |
150
|
|
|
* @return void |
151
|
|
|
*/ |
152
|
1 |
|
public function setBlocks(string $id, string $value): void |
153
|
|
|
{ |
154
|
1 |
|
$this->blocks[$id] = $value; |
155
|
|
|
} |
156
|
|
|
|
157
|
|
|
/** |
158
|
|
|
* {@see blocks} |
159
|
|
|
* |
160
|
|
|
* @param string $value |
161
|
|
|
* |
162
|
|
|
* @return string |
163
|
|
|
*/ |
164
|
2 |
|
public function getBlock(string $value): string |
165
|
|
|
{ |
166
|
2 |
|
if (isset($this->blocks[$value])) { |
167
|
1 |
|
return $this->blocks[$value]; |
168
|
|
|
} |
169
|
|
|
|
170
|
1 |
|
throw new \InvalidArgumentException('Block: ' . $value. ' not found.'); |
171
|
|
|
} |
172
|
|
|
|
173
|
|
|
/** |
174
|
|
|
* Renders a view. |
175
|
|
|
* |
176
|
|
|
* The view to be rendered can be specified in one of the following formats: |
177
|
|
|
* |
178
|
|
|
* - [path alias](guide:concept-aliases) (e.g. "@app/views/site/index"); |
179
|
|
|
* - absolute path within application (e.g. "//site/index"): the view name starts with double slashes. The actual |
180
|
|
|
* view file will be looked for under the [[Application::viewPath|view path]] of the application. |
181
|
|
|
* - absolute path within current module (e.g. "/site/index"): the view name starts with a single slash. The actual |
182
|
|
|
* view file will be looked for under the [[Module::viewPath|view path]] of the [[Controller::module|current module]]. |
183
|
|
|
* - relative view (e.g. "index"): the view name does not start with `@` or `/`. The corresponding view file will be |
184
|
|
|
* looked for under the {@see ViewContextInterface::getViewPath()|view path} of the view `$context`. |
185
|
|
|
* If `$context` is not given, it will be looked for under the directory containing the view currently |
186
|
|
|
* being rendered (i.e., this happens when rendering a view within another view). |
187
|
|
|
* |
188
|
|
|
* @param string $view the view name. |
189
|
|
|
* @param array $params the parameters (name-value pairs) that will be extracted and made available in the view |
190
|
|
|
* file. |
191
|
|
|
* @param object $context the context to be assigned to the view and can later be accessed via [[context]] in the |
192
|
|
|
* view. If the context implements {@see ViewContextInterface}, it may also be used to locate |
193
|
|
|
* the view file corresponding to a relative view name. |
194
|
|
|
* |
195
|
|
|
* @return string the rendering result |
196
|
|
|
* |
197
|
|
|
* @throws InvalidCallException if the view cannot be resolved. |
198
|
|
|
* @throws ViewNotFoundException if the view file does not exist. |
199
|
|
|
* |
200
|
|
|
* {@see renderFile()} |
201
|
|
|
*/ |
202
|
2 |
|
public function render($view, $params = [], $context = null): string |
203
|
|
|
{ |
204
|
2 |
|
$viewFile = $this->findTemplateFile($view, $context); |
205
|
2 |
|
return $this->renderFile($viewFile, $params, $context); |
206
|
|
|
} |
207
|
|
|
|
208
|
|
|
/** |
209
|
|
|
* Finds the view file based on the given view name. |
210
|
|
|
* |
211
|
|
|
* @param string $view the view name or the [path alias](guide:concept-aliases) of the view file. Please refer to |
212
|
|
|
* {@see render()} on how to specify this parameter. |
213
|
|
|
* @param object $context the context to be assigned to the view and can later be accessed via [[context]] in the |
214
|
|
|
* view. If the context implements [[ViewContextInterface]], it may also be used to locate the view |
215
|
|
|
* file corresponding to a relative view name. |
216
|
|
|
* |
217
|
|
|
* @throws InvalidCallException if a relative view name is given while there is no active context to determine the |
218
|
|
|
* corresponding view file. |
219
|
|
|
* |
220
|
|
|
* @return string the view file path. Note that the file may not exist. |
221
|
|
|
*/ |
222
|
2 |
|
protected function findTemplateFile(string $view, $context = null): string |
223
|
|
|
{ |
224
|
2 |
|
if (strncmp($view, '//', 2) === 0) { |
225
|
|
|
// path relative to basePath e.g. "//layouts/main" |
226
|
2 |
|
$file = $this->basePath . '/' . ltrim($view, '/'); |
227
|
1 |
|
} elseif ($context instanceof ViewContextInterface) { |
228
|
|
|
// path provided by context |
229
|
|
|
$file = $context->getViewPath() . '/' . $view; |
230
|
1 |
|
} elseif (($currentViewFile = $this->getRequestedViewFile()) !== false) { |
231
|
|
|
// path relative to currently rendered view |
232
|
1 |
|
$file = dirname($currentViewFile) . '/' . $view; |
|
|
|
|
233
|
|
|
} else { |
234
|
|
|
throw new \RuntimeException("Unable to resolve view file for view '$view': no active view context."); |
235
|
|
|
} |
236
|
|
|
|
237
|
2 |
|
if (pathinfo($file, PATHINFO_EXTENSION) !== '') { |
238
|
1 |
|
return $file; |
239
|
|
|
} |
240
|
|
|
|
241
|
1 |
|
$path = $file . '.' . $this->defaultExtension; |
242
|
|
|
|
243
|
1 |
|
if ($this->defaultExtension !== 'php' && !is_file($path)) { |
244
|
|
|
$path = $file . '.php'; |
245
|
|
|
} |
246
|
|
|
|
247
|
1 |
|
return $path; |
248
|
|
|
} |
249
|
|
|
|
250
|
|
|
/** |
251
|
|
|
* Renders a view file. |
252
|
|
|
* |
253
|
|
|
* If {@see theme} is enabled (not null), it will try to render the themed version of the view file as long as it |
254
|
|
|
* is available. |
255
|
|
|
* |
256
|
|
|
* If {@see renderers|renderer} is enabled (not null), the method will use it to render the view file. Otherwise, |
257
|
|
|
* it will simply include the view file as a normal PHP file, capture its output and |
258
|
|
|
* return it as a string. |
259
|
|
|
* |
260
|
|
|
* @param string $viewFile the view file. This can be either an absolute file path or an alias of it. |
261
|
|
|
* @param array $params the parameters (name-value pairs) that will be extracted and made available in the view |
262
|
|
|
* file. |
263
|
|
|
* @param object $context the context that the view should use for rendering the view. If null, existing [[context]] |
264
|
|
|
* will be used. |
265
|
|
|
* |
266
|
|
|
* @return string the rendering result |
267
|
|
|
* @throws \Throwable |
268
|
|
|
* |
269
|
|
|
* @throws ViewNotFoundException if the view file does not exist |
270
|
|
|
*/ |
271
|
34 |
|
public function renderFile(string $viewFile, array $params = [], object $context = null): string |
272
|
|
|
{ |
273
|
|
|
// TODO: these two match now |
274
|
34 |
|
$requestedFile = $viewFile; |
275
|
|
|
|
276
|
34 |
|
if ($this->theme !== null) { |
277
|
34 |
|
$viewFile = $this->theme->applyTo($viewFile); |
278
|
|
|
} |
279
|
34 |
|
if (is_file($viewFile)) { |
280
|
34 |
|
$viewFile = $this->localize($viewFile); |
281
|
|
|
} else { |
282
|
|
|
throw new ViewNotFoundException("The view file does not exist: $viewFile"); |
283
|
|
|
} |
284
|
|
|
|
285
|
34 |
|
$oldContext = $this->context; |
286
|
34 |
|
if ($context !== null) { |
287
|
|
|
$this->context = $context; |
288
|
|
|
} |
289
|
34 |
|
$output = ''; |
290
|
34 |
|
$this->viewFiles[] = [ |
291
|
34 |
|
'resolved' => $viewFile, |
292
|
34 |
|
'requested' => $requestedFile, |
293
|
|
|
]; |
294
|
|
|
|
295
|
34 |
|
if ($this->beforeRender($viewFile, $params)) { |
296
|
34 |
|
$this->logger->debug("Rendering view file: $viewFile"); |
297
|
34 |
|
$ext = pathinfo($viewFile, PATHINFO_EXTENSION); |
298
|
34 |
|
$renderer = $this->renderers[$ext] ?? new PhpTemplateRenderer(); |
299
|
34 |
|
$output = $renderer->render($this, $viewFile, $params); |
300
|
|
|
|
301
|
34 |
|
$output = $this->afterRender($viewFile, $params, $output); |
302
|
|
|
} |
303
|
|
|
|
304
|
34 |
|
array_pop($this->viewFiles); |
305
|
34 |
|
$this->context = $oldContext; |
306
|
|
|
|
307
|
34 |
|
return $output; |
308
|
|
|
} |
309
|
|
|
|
310
|
|
|
/** |
311
|
|
|
* Returns the localized version of a specified file. |
312
|
|
|
* |
313
|
|
|
* The searching is based on the specified language code. In particular, a file with the same name will be looked |
314
|
|
|
* for under the subdirectory whose name is the same as the language code. For example, given the file |
315
|
|
|
* "path/to/view.php" and language code "zh-CN", the localized file will be looked for as path/to/zh-CN/view.php". |
316
|
|
|
* If the file is not found, it will try a fallback with just a language code that is "zh" i.e. "path/to/zh/view.php". |
317
|
|
|
* If it is not found as well the original file will be returned. |
318
|
|
|
* |
319
|
|
|
* If the target and the source language codes are the same, the original file will be returned. |
320
|
|
|
* |
321
|
|
|
* @param string $file the original file |
322
|
|
|
* @param string|null $language the target language that the file should be localized to. |
323
|
|
|
* @param string|null $sourceLanguage the language that the original file is in. |
324
|
|
|
* |
325
|
|
|
* @return string the matching localized file, or the original file if the localized version is not found. |
326
|
|
|
* If the target and the source language codes are the same, the original file will be returned. |
327
|
|
|
*/ |
328
|
35 |
|
public function localize(string $file, ?string $language = null, ?string $sourceLanguage = null): string |
329
|
|
|
{ |
330
|
35 |
|
$language = $language ?? $this->language; |
331
|
35 |
|
$sourceLanguage = $sourceLanguage ?? $this->sourceLanguage; |
332
|
|
|
|
333
|
35 |
|
if ($language === $sourceLanguage) { |
334
|
35 |
|
return $file; |
335
|
|
|
} |
336
|
1 |
|
$desiredFile = dirname($file) . DIRECTORY_SEPARATOR . $language . DIRECTORY_SEPARATOR . basename($file); |
337
|
1 |
|
if (is_file($desiredFile)) { |
338
|
1 |
|
return $desiredFile; |
339
|
|
|
} |
340
|
|
|
|
341
|
|
|
$language = substr($language, 0, 2); |
342
|
|
|
if ($language === $sourceLanguage) { |
343
|
|
|
return $file; |
344
|
|
|
} |
345
|
|
|
$desiredFile = dirname($file) . DIRECTORY_SEPARATOR . $language . DIRECTORY_SEPARATOR . basename($file); |
346
|
|
|
|
347
|
|
|
return is_file($desiredFile) ? $desiredFile : $file; |
348
|
|
|
} |
349
|
|
|
|
350
|
|
|
/** |
351
|
|
|
* @return string|bool the view file currently being rendered. False if no view file is being rendered. |
352
|
|
|
*/ |
353
|
32 |
|
public function getViewFile() |
354
|
|
|
{ |
355
|
32 |
|
return empty($this->viewFiles) ? false : end($this->viewFiles)['resolved']; |
356
|
|
|
} |
357
|
|
|
|
358
|
|
|
/** |
359
|
|
|
* @return string|bool the requested view currently being rendered. False if no view file is being rendered. |
360
|
|
|
*/ |
361
|
1 |
|
protected function getRequestedViewFile() |
362
|
|
|
{ |
363
|
1 |
|
return empty($this->viewFiles) ? false : end($this->viewFiles)['requested']; |
364
|
|
|
} |
365
|
|
|
|
366
|
|
|
/** |
367
|
|
|
* This method is invoked right before {@see renderFile()} renders a view file. |
368
|
|
|
* |
369
|
|
|
* The default implementation will trigger the {@see BeforeRender()} event. If you override this method, make sure |
370
|
|
|
* you call the parent implementation first. |
371
|
|
|
* |
372
|
|
|
* @param string $viewFile the view file to be rendered. |
373
|
|
|
* @param array $params the parameter array passed to the {@see render()} method. |
374
|
|
|
* |
375
|
|
|
* @return bool whether to continue rendering the view file. |
376
|
|
|
*/ |
377
|
34 |
|
public function beforeRender(string $viewFile, array $params): bool |
378
|
|
|
{ |
379
|
34 |
|
$event = new BeforeRender($viewFile, $params); |
380
|
34 |
|
$event = $this->eventDispatcher->dispatch($event); |
381
|
|
|
|
382
|
34 |
|
return !$event->isPropagationStopped(); |
383
|
|
|
} |
384
|
|
|
|
385
|
|
|
/** |
386
|
|
|
* This method is invoked right after {@see renderFile()} renders a view file. |
387
|
|
|
* |
388
|
|
|
* The default implementation will trigger the {@see AfterRender} event. If you override this method, make sure you |
389
|
|
|
* call the parent implementation first. |
390
|
|
|
* |
391
|
|
|
* @param string $viewFile the view file being rendered. |
392
|
|
|
* @param array $params the parameter array passed to the {@see render()} method. |
393
|
|
|
* @param string $output the rendering result of the view file. Updates to this parameter |
394
|
|
|
* will be passed back and returned by {@see renderFile()}. |
395
|
|
|
*/ |
396
|
34 |
|
public function afterRender(string $viewFile, array $params, &$output): string |
397
|
|
|
{ |
398
|
34 |
|
$event = new AfterRender($viewFile, $params, $output); |
399
|
34 |
|
$event = $this->eventDispatcher->dispatch($event); |
400
|
|
|
|
401
|
34 |
|
return $event->getResult(); |
402
|
|
|
} |
403
|
|
|
|
404
|
|
|
/** |
405
|
|
|
* Renders dynamic content returned by the given PHP statements. |
406
|
|
|
* |
407
|
|
|
* This method is mainly used together with content caching (fragment caching and page caching) when some portions |
408
|
|
|
* of the content (called *dynamic content*) should not be cached. The dynamic content must be returned by some PHP |
409
|
|
|
* statements. You can optionally pass additional parameters that will be available as variables in the PHP |
410
|
|
|
* statement:. |
411
|
|
|
* |
412
|
|
|
* ```php |
413
|
|
|
* <?= $this->renderDynamic('return foo($myVar);', [ |
414
|
|
|
* 'myVar' => $model->getMyComplexVar(), |
415
|
|
|
* ]) ?> |
416
|
|
|
* ``` |
417
|
|
|
* |
418
|
|
|
* @param string $statements the PHP statements for generating the dynamic content. |
419
|
|
|
* @param array $params the parameters (name-value pairs) that will be extracted and made |
420
|
|
|
* available in the $statement context. The parameters will be stored in the cache and be reused |
421
|
|
|
* each time $statement is executed. You should make sure, that these are safely serializable. |
422
|
|
|
* |
423
|
|
|
* @return string the placeholder of the dynamic content, or the dynamic content if there is no active content |
424
|
|
|
* cache currently. |
425
|
|
|
*/ |
426
|
|
|
public function renderDynamic(string $statements, array $params = []): string |
427
|
|
|
{ |
428
|
|
|
if (!empty($params)) { |
429
|
|
|
$statements = 'extract(unserialize(\'' . str_replace(['\\', '\''], ['\\\\', '\\\''], serialize($params)) . '\'));' . $statements; |
430
|
|
|
} |
431
|
|
|
|
432
|
|
|
if (!empty($this->cacheStack)) { |
433
|
|
|
$n = count($this->dynamicPlaceholders); |
434
|
|
|
$placeholder = "<![CDATA[YII-DYNAMIC-$n]]>"; |
435
|
|
|
$this->addDynamicPlaceholder($placeholder, $statements); |
436
|
|
|
|
437
|
|
|
return $placeholder; |
438
|
|
|
} |
439
|
|
|
|
440
|
|
|
return $this->evaluateDynamicContent($statements); |
441
|
|
|
} |
442
|
|
|
|
443
|
|
|
/** |
444
|
|
|
* Get source locale. |
445
|
|
|
* |
446
|
|
|
* @return Locale |
447
|
|
|
*/ |
448
|
|
|
public function getSourceLocale(): Locale |
449
|
|
|
{ |
450
|
|
|
if ($this->sourceLocale === null) { |
451
|
|
|
$this->sourceLocale = Locale::create('en-US'); |
|
|
|
|
452
|
|
|
} |
453
|
|
|
|
454
|
|
|
return $this->sourceLocale; |
455
|
|
|
} |
456
|
|
|
|
457
|
|
|
/** |
458
|
|
|
* Set source locale. |
459
|
|
|
* |
460
|
|
|
* @param string $locale |
461
|
|
|
* @return self |
462
|
|
|
*/ |
463
|
|
|
public function setSourceLocale(string $locale): self |
464
|
|
|
{ |
465
|
|
|
$this->sourceLocale = Locale::create($locale); |
466
|
|
|
|
467
|
|
|
return $this; |
468
|
|
|
} |
469
|
|
|
|
470
|
|
|
public function getDynamicPlaceholders(): array |
471
|
|
|
{ |
472
|
|
|
return $this->dynamicPlaceholders; |
473
|
|
|
} |
474
|
|
|
|
475
|
|
|
public function setDynamicPlaceholders(array $placeholders): void |
476
|
|
|
{ |
477
|
|
|
$this->dynamicPlaceholders = $placeholders; |
478
|
|
|
} |
479
|
|
|
|
480
|
|
|
public function addDynamicPlaceholder(string $placeholder, string $statements): void |
481
|
|
|
{ |
482
|
|
|
foreach ($this->cacheStack as $cache) { |
483
|
|
|
$cache->addDynamicPlaceholder($placeholder, $statements); |
484
|
|
|
} |
485
|
|
|
|
486
|
|
|
$this->dynamicPlaceholders[$placeholder] = $statements; |
487
|
|
|
} |
488
|
|
|
|
489
|
|
|
/** |
490
|
|
|
* Evaluates the given PHP statements. |
491
|
|
|
* |
492
|
|
|
* This method is mainly used internally to implement dynamic content feature. |
493
|
|
|
* |
494
|
|
|
* @param string $statements the PHP statements to be evaluated. |
495
|
|
|
* |
496
|
|
|
* @return mixed the return value of the PHP statements. |
497
|
|
|
*/ |
498
|
|
|
public function evaluateDynamicContent(string $statements) |
499
|
|
|
{ |
500
|
|
|
return eval($statements); |
|
|
|
|
501
|
|
|
} |
502
|
|
|
|
503
|
|
|
/** |
504
|
|
|
* Returns a list of currently active dynamic content class instances. |
505
|
|
|
* |
506
|
|
|
* @return DynamicContentAwareInterface[] class instances supporting dynamic contents. |
507
|
|
|
*/ |
508
|
|
|
public function getDynamicContents(): array |
509
|
|
|
{ |
510
|
|
|
return $this->cacheStack; |
511
|
|
|
} |
512
|
|
|
|
513
|
|
|
/** |
514
|
|
|
* Adds a class instance supporting dynamic contents to the end of a list of currently active dynamic content class |
515
|
|
|
* instances. |
516
|
|
|
* |
517
|
|
|
* @param DynamicContentAwareInterface $instance class instance supporting dynamic contents. |
518
|
|
|
* |
519
|
|
|
* @return void |
520
|
|
|
*/ |
521
|
|
|
public function pushDynamicContent(DynamicContentAwareInterface $instance): void |
522
|
|
|
{ |
523
|
|
|
$this->cacheStack[] = $instance; |
524
|
|
|
} |
525
|
|
|
|
526
|
|
|
/** |
527
|
|
|
* Removes a last class instance supporting dynamic contents from a list of currently active dynamic content class |
528
|
|
|
* instances. |
529
|
|
|
* |
530
|
|
|
* @return void |
531
|
|
|
*/ |
532
|
|
|
public function popDynamicContent(): void |
533
|
|
|
{ |
534
|
|
|
array_pop($this->cacheStack); |
535
|
|
|
} |
536
|
|
|
|
537
|
|
|
/** |
538
|
|
|
* Begins recording a block. |
539
|
|
|
* |
540
|
|
|
* This method is a shortcut to beginning {@see Block}. |
541
|
|
|
* |
542
|
|
|
* @param string $id the block ID. |
543
|
|
|
* @param bool $renderInPlace whether to render the block content in place. |
544
|
|
|
* Defaults to false, meaning the captured block will not be displayed. |
545
|
|
|
* |
546
|
|
|
* @return Block the Block widget instance |
547
|
|
|
*/ |
548
|
|
|
public function beginBlock(string $id, $renderInPlace = false): Block |
549
|
|
|
{ |
550
|
|
|
return Block::begin() |
551
|
|
|
->id($id) |
552
|
|
|
->renderInPlace($renderInPlace); |
553
|
|
|
} |
554
|
|
|
|
555
|
|
|
/** |
556
|
|
|
* Ends recording a block. |
557
|
|
|
* |
558
|
|
|
* @return void |
559
|
|
|
*/ |
560
|
|
|
public function endBlock(): void |
561
|
|
|
{ |
562
|
|
|
Block::end(); |
563
|
|
|
} |
564
|
|
|
|
565
|
|
|
/** |
566
|
|
|
* Begins the rendering of content that is to be decorated by the specified view. |
567
|
|
|
* |
568
|
|
|
* This method can be used to implement nested layout. For example, a layout can be embedded in another layout file |
569
|
|
|
* specified as '@app/views/layouts/base.php' like the following: |
570
|
|
|
* |
571
|
|
|
* ```php |
572
|
|
|
* <?php $this->beginContent('@app/views/layouts/base.php'); ?> |
573
|
|
|
* //...layout content here... |
574
|
|
|
* <?php $this->endContent(); ?> |
575
|
|
|
* ``` |
576
|
|
|
* |
577
|
|
|
* @param string $viewFile the view file that will be used to decorate the content enclosed by this widget. This can |
578
|
|
|
* be specified as either the view file path or [path alias](guide:concept-aliases). |
579
|
|
|
* @param array $params the variables (name => value) to be extracted and made available in the decorative view. |
580
|
|
|
* |
581
|
|
|
* @return ContentDecorator the ContentDecorator widget instance |
582
|
|
|
* |
583
|
|
|
* {@see ContentDecorator} |
584
|
|
|
*/ |
585
|
|
|
public function beginContent(string $viewFile, array $params = []): ContentDecorator |
586
|
|
|
{ |
587
|
|
|
return ContentDecorator::begin() |
588
|
|
|
->params($params) |
589
|
|
|
->viewFile($viewFile); |
590
|
|
|
} |
591
|
|
|
|
592
|
|
|
/** |
593
|
|
|
* Ends the rendering of content. |
594
|
|
|
* |
595
|
|
|
* @return void |
596
|
|
|
*/ |
597
|
|
|
public function endContent(): void |
598
|
|
|
{ |
599
|
|
|
ContentDecorator::end(); |
600
|
|
|
} |
601
|
|
|
|
602
|
|
|
/** |
603
|
|
|
* Begins fragment caching. |
604
|
|
|
* |
605
|
|
|
* This method will display cached content if it is available. If not, it will start caching and would expect an |
606
|
|
|
* {@see endCache()} call to end the cache and save the content into cache. A typical usage of fragment caching is |
607
|
|
|
* as follows, |
608
|
|
|
* |
609
|
|
|
* ```php |
610
|
|
|
* if ($this->beginCache($id)) { |
611
|
|
|
* // ...generate content here |
612
|
|
|
* $this->endCache(); |
613
|
|
|
* } |
614
|
|
|
* ``` |
615
|
|
|
* |
616
|
|
|
* @param string $id a unique ID identifying the fragment to be cached. |
617
|
|
|
* @param array $properties initial property values for {@see FragmentCache} |
618
|
|
|
* |
619
|
|
|
* @return bool whether you should generate the content for caching. |
620
|
|
|
* False if the cached version is available. |
621
|
|
|
*/ |
622
|
|
|
public function beginCache(string $id, array $properties = []): bool |
623
|
|
|
{ |
624
|
|
|
$properties['id'] = $id; |
625
|
|
|
$properties['view'] = $this; |
626
|
|
|
$cache = FragmentCache::begin($properties); |
|
|
|
|
627
|
|
|
if ($cache->getCachedContent() !== false) { |
628
|
|
|
$this->endCache(); |
629
|
|
|
|
630
|
|
|
return false; |
631
|
|
|
} |
632
|
|
|
|
633
|
|
|
return true; |
634
|
|
|
} |
635
|
|
|
|
636
|
|
|
/** |
637
|
|
|
* Ends fragment caching. |
638
|
|
|
* |
639
|
|
|
* @return void |
640
|
|
|
*/ |
641
|
|
|
public function endCache(): void |
642
|
|
|
{ |
643
|
|
|
FragmentCache::end(); |
644
|
|
|
} |
645
|
|
|
|
646
|
|
|
/** |
647
|
|
|
* Marks the beginning of a page. |
648
|
|
|
* |
649
|
|
|
* @return void |
650
|
|
|
*/ |
651
|
32 |
|
public function beginPage(): void |
652
|
|
|
{ |
653
|
32 |
|
ob_start(); |
654
|
32 |
|
ob_implicit_flush(0); |
655
|
|
|
|
656
|
32 |
|
$this->eventDispatcher->dispatch(new PageBegin($this->getViewFile())); |
|
|
|
|
657
|
|
|
} |
658
|
|
|
|
659
|
|
|
/** |
660
|
|
|
* Marks the ending of a page. |
661
|
|
|
* |
662
|
|
|
* @return void |
663
|
|
|
*/ |
664
|
|
|
public function endPage(): void |
665
|
|
|
{ |
666
|
|
|
$this->eventDispatcher->dispatch(new PageEnd($this->getViewFile())); |
|
|
|
|
667
|
|
|
ob_end_flush(); |
668
|
|
|
} |
669
|
|
|
} |
670
|
|
|
|