wesnoth/utils/tests/include/Footer.php
2008-08-08 17:39:25 +00:00

20 lines
235 B
PHP

<?php
class Footer
{
private $file;
private $smarty;
function __construct($file)
{
global $smarty;
$this->file = $file;
$this->smarty = $smarty;
}
public function show()
{
$this->smarty->display('footer.tpl');
}
}
?>