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