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