mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-11-03 22:01:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			407 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			407 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
* Smarty method SetPluginsDir
 | 
						|
* 
 | 
						|
* Sets directory of plugin files
 | 
						|
* 
 | 
						|
* @package Smarty
 | 
						|
* @subpackage SmartyMethod
 | 
						|
* @author Uwe Tews 
 | 
						|
*/
 | 
						|
 | 
						|
/**
 | 
						|
* Sets directory of plugin files
 | 
						|
*/
 | 
						|
 | 
						|
/**
 | 
						|
* Sets directory of plugin files
 | 
						|
* 
 | 
						|
* @param string $ plugins folder
 | 
						|
* @return 
 | 
						|
*/
 | 
						|
function  Smarty_Method_SetPluginsDir($smarty, $plugins_dir)
 | 
						|
{
 | 
						|
    $smarty->plugins_dir = (array)$plugins_dir;
 | 
						|
    return;
 | 
						|
} 
 | 
						|
 | 
						|
?>
 |