| Current Path : /var/www/surf/TYPO3/vendor/typo3fluid/fluid/src/Core/Parser/ |
| Current File : /var/www/surf/TYPO3/vendor/typo3fluid/fluid/src/Core/Parser/ParsedTemplateInterface.php |
<?php
/*
* This file belongs to the package "TYPO3 Fluid".
* See LICENSE.txt that was shipped with this package.
*/
namespace TYPO3Fluid\Fluid\Core\Parser;
use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface;
use TYPO3Fluid\Fluid\Core\Variables\VariableProviderInterface;
/**
* This interface is returned by \TYPO3Fluid\Fluid\Core\Parser\TemplateParser->parse()
* method and is a parsed template
*/
interface ParsedTemplateInterface
{
/**
* @param string $identifier
*/
public function setIdentifier($identifier);
/**
* @return string
*/
public function getIdentifier();
/**
* Render the parsed template with rendering context
*
* @param RenderingContextInterface $renderingContext The rendering context to use
* @return string Rendered string
*/
public function render(RenderingContextInterface $renderingContext);
/**
* Returns a variable container used in the PostParse Facet.
*
* @return VariableProviderInterface
*/
public function getVariableContainer();
/**
* Returns the name of the layout that is defined within the current template via <f:layout name="..." />
* If no layout is defined, this returns NULL
* This requires the current rendering context in order to be able to evaluate the layout name
*
* @param RenderingContextInterface $renderingContext
* @return string|null
*/
public function getLayoutName(RenderingContextInterface $renderingContext);
/**
* Method generated on compiled templates to add ViewHelper namespaces which were defined in-template
* and add those to the ones already defined in the ViewHelperResolver.
*
* @param RenderingContextInterface $renderingContext
*/
public function addCompiledNamespaces(RenderingContextInterface $renderingContext);
/**
* Returns TRUE if the current template has a template defined via <f:layout name="..." />
*
* @return bool
*/
public function hasLayout();
/**
* If the template contains constructs which prevent the compiler from compiling the template
* correctly, isCompilable() will return FALSE.
*
* @return bool TRUE if the template can be compiled
*/
public function isCompilable();
/**
* @return bool TRUE if the template is already compiled, FALSE otherwise
*/
public function isCompiled();
}