\n\n";
}
function render_footer($license=false) {
global $theme_width,$settings,$locale;
echo " \n \n";
echo " |
\n";
}
function render_news($subject, $news, $info) {
$subject = strip_tags($subject);
echo "
$subject
|
$news |
";
echo openform("N",$info['news_id']).newsposter($info," ·").newsopts($info," ·").closeform("N",$info['news_id']);
echo " |
|
\n";
}
function render_game($subject, $game, $info) {
global $locale;
include LOCALE.LOCALESET."games.php";
echo "
$subject |
|
\n";
if ($info['game_allow_comments']) echo $info['game_comments'].$locale['043']." ·\n";
echo "".$locale['407']." ".$info['game_reads']." ".$locale['406']."
|
";
}
function opentable($title) {
echo "
$title |
";
}
function closetable() {
echo " |
\n";
}
function openside($title) {
echo "
$title |
";
}
function closeside() {
echo " |
\n";
tablebreak();
}
function opensidex($title,$state="on") {
$boxname = str_replace(" ", "", $title);
echo "
$title |
".panelbutton($state,$boxname)." |
\n";
}
function closesidex() {
echo " |
\n";
tablebreak();
}
function tablebreak() {
echo "\n";
}
?>