- <?php
- /**
- * Zend Framework (http://framework.zend.com/)
- *
- * @link http://github.com/zendframework/zf2 for the canonical source repository
- * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
-
- namespace Zend\View\Renderer;
-
- use Zend\View\Model\ModelInterface;
- use Zend\View\Resolver\ResolverInterface;
-
- /**
- * Interface class for Zend_View compatible template engine implementations
- */
- interface RendererInterface
- {
- /**
- * Return the template engine object, if any
- *
- * If using a third-party template engine, such as Smarty, patTemplate,
- * phplib, etc, return the template engine object. Useful for calling
- * methods on these objects, such as for setting filters, modifiers, etc.
- *
- * @return mixed
- */
- public function getEngine();
-
- /**
- * Set the resolver used to map a template name to a resource the renderer may consume.
- *
- * @param ResolverInterface $resolver
- * @return RendererInterface
- */
- public function setResolver(ResolverInterface $resolver);
-
- /**
- * Processes a view script and returns the output.
- *
- * @param string|ModelInterface $nameOrModel The script/resource process, or a view model
- * @param null|array|\ArrayAccess $values Values to use during rendering
- * @return string The script output.
- */
- public function render($nameOrModel, $values = null);
- }
# |
Change |
User |
Description |
Committed |
|
#1
|
18334 |
Liz Lam |
initial add of jambox |
9 years ago
|
|