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