mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-11-04 06:11:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			347 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			347 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
* Smarty method GetPluginsDir
 | 
						|
* 
 | 
						|
* Returns directory of plugins
 | 
						|
* 
 | 
						|
* @package Smarty
 | 
						|
* @subpackage SmartyMethod
 | 
						|
* @author Uwe Tews 
 | 
						|
*/
 | 
						|
 | 
						|
/**
 | 
						|
* Returns directory of plugins
 | 
						|
*/
 | 
						|
 | 
						|
/**
 | 
						|
* Returns directory of plugins
 | 
						|
* 
 | 
						|
* @return array plugins folder
 | 
						|
*/
 | 
						|
function  Smarty_Method_GetPluginsDir($smarty)
 | 
						|
{
 | 
						|
    return $smarty->plugins_dir;
 | 
						|
} 
 | 
						|
 | 
						|
?>
 |