Revision: 50904
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at September 8, 2011 05:01 by ericmuyser
Initial Code
<?
function render_smarty_plugin($name) {
$path = sys_get_temp_dir();
$filename = 'a' . uniqid();
file_put_contents($path . '/' . $filename, '{' . $name . '}');
$smarty = new Gdn_Smarty(); $smarty->Render($path . '/' . $filename, $this);
}
?>
Initial URL
Initial Description
Initial Title
Render Smarty Plugin Content in Vanilla
Initial Tags
php
Initial Language
PHP