Pauli Nieminen 4327e0e843 moved unit test website code to branches/resources/ from trunk/utils/
[[Split portion of a mixed commit.]]
2008-08-12 22:44:15 +00:00

33 lines
687 B
PHP

<?php
/*
Copyright (C) 2008 by Pauli Nieminen <paniemin@cc.hut.fi>
Part of the Battle for Wesnoth Project http://www.wesnoth.org/
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2
or at your option any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY.
See the COPYING file for more details.
*/
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');
}
}
?>