| Current Path : /var/www/surf/TYPO3/vendor/typo3/cms-form/Classes/Domain/Renderer/ |
| Current File : //var/www/surf/TYPO3/vendor/typo3/cms-form/Classes/Domain/Renderer/AbstractElementRenderer.php |
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
/*
* Inspired by and partially taken from the Neos.Form package (www.neos.io)
*/
namespace TYPO3\CMS\Form\Domain\Renderer;
use TYPO3\CMS\Form\Domain\Runtime\FormRuntime;
/**
* Abstract renderer which can be used as base class for custom renderers.
*
* Scope: frontend
* **This class is meant to be sub classed by developers**.
*/
abstract class AbstractElementRenderer implements RendererInterface
{
/**
* @var \TYPO3\CMS\Form\Domain\Runtime\FormRuntime
*/
protected $formRuntime;
public function setFormRuntime(FormRuntime $formRuntime)
{
$this->formRuntime = $formRuntime;
}
public function getFormRuntime(): FormRuntime
{
return $this->formRuntime;
}
}