‪TYPO3CMS  ‪main
FluidViewAdapter.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /*
6  * This file is part of the TYPO3 CMS project.
7  *
8  * It is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU General Public License, either version 2
10  * of the License, or any later version.
11  *
12  * For the full copyright and license information, please read the
13  * LICENSE.txt file that was distributed with this source code.
14  *
15  * The TYPO3 project - inspiring people to share!
16  */
17 
19 
20 use ‪TYPO3\CMS\Core\View\ViewInterface as CoreViewInterface;
21 use TYPO3Fluid\Fluid\View\TemplateAwareViewInterface as FluidTemplateAwareViewInterface;
22 use TYPO3Fluid\Fluid\View\ViewInterface as FluidViewInterface;
23 
27 class ‪FluidViewAdapter implements CoreViewInterface
28 {
29  public function ‪__construct(
30  protected readonly FluidViewInterface&FluidTemplateAwareViewInterface $view,
31  ) {}
32 
33  public function ‪assign(string $key, mixed $value): self
34  {
35  $this->view->assign($key, $value);
36  return $this;
37  }
38 
39  public function ‪assignMultiple(array $values): self
40  {
41  $this->view->assignMultiple($values);
42  return $this;
43  }
44 
45  public function ‪render(string $templateFileName = ''): string
46  {
47  return $this->view->render($templateFileName);
48  }
49 }
‪TYPO3\CMS\Core\View
Definition: FluidViewAdapter.php:18
‪TYPO3\CMS\Core\View\ViewInterface
Definition: ViewInterface.php:24
‪TYPO3\CMS\Core\View\FluidViewAdapter
Definition: FluidViewAdapter.php:28
‪TYPO3\CMS\Core\View\FluidViewAdapter\render
‪render(string $templateFileName='')
Definition: FluidViewAdapter.php:45
‪TYPO3\CMS\Core\View\FluidViewAdapter\__construct
‪__construct(protected readonly FluidViewInterface &FluidTemplateAwareViewInterface $view,)
Definition: FluidViewAdapter.php:29
‪TYPO3\CMS\Core\View\FluidViewAdapter\assignMultiple
‪assignMultiple(array $values)
Definition: FluidViewAdapter.php:39
‪TYPO3\CMS\Core\View\FluidViewAdapter\assign
‪assign(string $key, mixed $value)
Definition: FluidViewAdapter.php:33