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