1: <?php
2:
3: /**
4: * This file is part of the Nette Framework (https://nette.org)
5: * Copyright (c) 2004 David Grudl (https://davidgrudl.com)
6: */
7:
8: namespace Nette\Templating;
9:
10:
11: /**
12: * @deprecated
13: */
14: interface IFileTemplate extends ITemplate
15: {
16:
17: /**
18: * Sets the path to the template file.
19: * @param string template file path
20: * @return void
21: */
22: function setFile($file);
23:
24: /**
25: * Returns the path to the template file.
26: * @return string template file path
27: */
28: function getFile();
29:
30: }
31: