Chapter 19. SmartyBC - Backwards Compatibility Wrapper

Table of Contents

SmartyBC class

SmartyBC class

TODO: SmartyBC allows: {php} and {include_php}

Example 19.1. Using SmartyBC


<?php
// instead of
require_once('path/to/smarty/libs/Smarty.class.php');
$smarty = new Smarty();

// use 
require_once('path/to/smarty/libs/SmartyBC.class.php');
$smarty = new SmartyBC();
?>