mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-11-03 22:01:36 +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();
 | 
						|
    } 
 | 
						|
} 
 | 
						|
 | 
						|
?>
 |