Path : /srv/www/vhosts/pk-dane/kliminvest/vendor/nette/application/src/Application/UI/ |
Current File : /srv/www/vhosts/pk-dane/kliminvest/vendor/nette/application/src/Application/UI/ITemplate.php |
<?php /** * This file is part of the Nette Framework (http://nette.org) * Copyright (c) 2004 David Grudl (http://davidgrudl.com) */ namespace Nette\Application\UI; use Nette; /** * Defines template. */ interface ITemplate { /** * Renders template to output. * @return void */ function render(); /** * Sets the path to the template file. * @return void */ function setFile($file); /** * Returns the path to the template file. * @return string */ function getFile(); }