mirror of
https://github.com/saccas/mjml-typo3.git
synced 2024-11-15 10:16:10 +01:00
26 lines
774 B
PHP
26 lines
774 B
PHP
<?php
|
|
namespace Saccas\Mjml\View;
|
|
|
|
use Saccas\Mjml\Domain\Renderer\RendererInterface;
|
|
use TYPO3\CMS\Fluid\View\StandaloneView;
|
|
use TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer;
|
|
|
|
class MjmlBasedView extends StandaloneView
|
|
{
|
|
protected ?RendererInterface $renderer = null;
|
|
|
|
public function __construct(ContentObjectRenderer $contentObject = null, RendererInterface $renderer = null)
|
|
{
|
|
parent::__construct($contentObject);
|
|
|
|
$this->renderer = $renderer;
|
|
if ($this->renderer === null) {
|
|
$this->renderer = $this->objectManager->get(RendererInterface::class);
|
|
}
|
|
}
|
|
|
|
public function render($actionName = null): string
|
|
{
|
|
return $this->renderer->getHtmlFromMjml(parent::render($actionName));
|
|
}
|
|
}
|