mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-11-03 22:01:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			381 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			381 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
* Smarty method getCompileDir
 | 
						|
* 
 | 
						|
* Returns directory of compiled templates
 | 
						|
* 
 | 
						|
* @package Smarty
 | 
						|
* @subpackage SmartyMethod
 | 
						|
* @author Uwe Tews 
 | 
						|
*/
 | 
						|
 | 
						|
/**
 | 
						|
* Returns directory of compiled templates
 | 
						|
*/
 | 
						|
 | 
						|
/**
 | 
						|
* Returns directory of compiled templates
 | 
						|
* 
 | 
						|
* @return array compiled template folder
 | 
						|
*/
 | 
						|
function GetCompileDir($smarty)
 | 
						|
{
 | 
						|
    return $this->smarty->compile_dir;
 | 
						|
} 
 | 
						|
 | 
						|
?>
 |