<?php
/**
* Render Engine interface for the KvFramework.
* @package KvFramework
* @subpackage SiteHandler
* @author Greg McWhirter <hide@address.com>
* @copyright Copyright © 2006, Greg McWhirter
* @license BSD License
* @version 1.0
*/
/**
* @package KvFramework
* @subpackage SiteHandler
*/
interface kvframework_irenderengine{
public function render_file($file, array $params = array(), $with_template = null);
public function render_text($text, array $params = array(), $with_template = null);
}
?>