ACC SHELL

Path : /srv/www/vhosts/svj-u-leskavy/vendor/latte/latte/src/Latte/
File Upload :
Current File : /srv/www/vhosts/svj-u-leskavy/vendor/latte/latte/src/Latte/ILoader.php

<?php

/**
 * This file is part of the Nette Framework (http://nette.org)
 * Copyright (c) 2004 David Grudl (http://davidgrudl.com)
 */

namespace Latte;


/**
 * Template loader.
 */
interface ILoader
{

	/**
	 * Returns template source code.
	 * @return string
	 */
	function getContent($name);

	/**
	 * Checks whether template is expired.
	 * @return bool
	 */
	function isExpired($name, $time);

	/**
	 * Returns fully qualified template name.
	 * @return string
	 */
	function getChildName($name, $parent = NULL);

}

ACC SHELL 2018