Path : /srv/www/vhosts/svj-u-leskavy/vendor/nette/nette/Nette/deprecated/Templating/ |
Current File : /srv/www/vhosts/svj-u-leskavy/vendor/nette/nette/Nette/deprecated/Templating/IFileTemplate.php |
<?php /** * This file is part of the Nette Framework (http://nette.org) * Copyright (c) 2004 David Grudl (http://davidgrudl.com) */ namespace Nette\Templating; use Nette; /** * @deprecated */ interface IFileTemplate extends ITemplate { /** * Sets the path to the template file. * @param string template file path * @return void */ function setFile($file); /** * Returns the path to the template file. * @return string template file path */ function getFile(); }