12 lines
		
	
	
		
			211 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			211 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?php
 | 
						|
require_once 'boot.php';
 | 
						|
 | 
						|
 | 
						|
/**
 | 
						|
 * Interface for template engines
 | 
						|
 */
 | 
						|
interface ITemplateEngine {
 | 
						|
	public function replace_macros($s,$v);
 | 
						|
	public function get_markup_template($file, $root='');
 | 
						|
}
 |