leftypol/inc/lib/Twig/TemplateInterface.php

48 lines
1.2 KiB
PHP
Raw Normal View History

2011-10-05 04:22:53 +00:00
<?php
/*
* This file is part of Twig.
*
* (c) 2009 Fabien Potencier
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* Interface implemented by all compiled templates.
*
2013-08-01 19:20:12 +00:00
* @author Fabien Potencier <fabien@symfony.com>
* @deprecated since 1.12 (to be removed in 2.0)
2011-10-05 04:22:53 +00:00
*/
interface Twig_TemplateInterface
{
const ANY_CALL = 'any';
const ARRAY_CALL = 'array';
const METHOD_CALL = 'method';
/**
* Renders the template with the given context and returns it as string.
*
* @param array $context An array of parameters to pass to the template
*
* @return string The rendered template
*/
2013-08-01 19:20:12 +00:00
public function render(array $context);
2011-10-05 04:22:53 +00:00
/**
* Displays the template with the given context.
*
* @param array $context An array of parameters to pass to the template
* @param array $blocks An array of blocks to pass to the template
*/
2013-08-01 19:20:12 +00:00
public function display(array $context, array $blocks = array());
2011-10-05 04:22:53 +00:00
/**
* Returns the bound environment for this template.
*
* @return Twig_Environment The current environment
*/
2013-08-01 19:20:12 +00:00
public function getEnvironment();
2011-10-05 04:22:53 +00:00
}