mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-17 14:35:19 +02: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();
|
|
}
|
|
}
|
|
|
|
?>
|