mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-10-31 20:31:41 +01:00 
			
		
		
		
	
		
			
	
	
		
			25 lines
		
	
	
		
			332 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			25 lines
		
	
	
		
			332 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
|   | <?php | ||
|  | 
 | ||
|  | /** | ||
|  | * Smarty Internal Base | ||
|  | *  | ||
|  | * @package Smarty | ||
|  | * @subpackage PluginsInternal | ||
|  | * @author Monte Ohrt | ||
|  | */ | ||
|  | /** | ||
|  | /** | ||
|  | * Smarty Internal Base Class | ||
|  | */ | ||
|  | abstract class Smarty_Internal_Base { | ||
|  |     /** | ||
|  |     * Set up instance of Smarty object | ||
|  |     */ | ||
|  |     function __construct() | ||
|  |     { | ||
|  |         $this->smarty = Smarty::instance(); | ||
|  |     }  | ||
|  | }  | ||
|  | 
 | ||
|  | ?>
 |