mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-01 22:01:19 +00:00
20 lines
235 B
PHP
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');
|
|
}
|
|
}
|
|
?>
|