<?
if (!defined("IN_FUSION")) { header("Location: ../../index.php"); exit; }
require_once INCLUDES."theme_functions_include.php";
// theme settings
$body_text = "#000000";
$body_bg = "#ffffff";
$theme_width = "100%";
$theme_width_l = "175";
$theme_width_r = "175";
function render_header($header_content) {
global $theme_width;
/* this is the very very top of the whole page */
echo "<table align='center' cellspacing='0' cellpadding='0' width='$theme_width'>
<tr>
<td class='border-left'> </td>
<td>";
/* this is the links & date/time area */
echo "<table cellpadding='0' cellspacing='0' width='100%'>\n<tr>
<td class='white-header'><strong>".showsublinks(" | ", "white")."</strong></td>
<td align='right' class='white-header'>".showsubdate()."</td>
</tr>
</table>\n";
/* this is where the banner goes */
echo "<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td class='full-header'>
<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td><a href='".BASEDIR."index.php'>$header_content</a></td>
</tr>
</table>
</td>
</tr>
</table>\n";
/* finally, this starts the page */
echo "<table cellpadding='0' cellspacing='0' width='100%'>\n<tr>\n";
}
function render_footer($license=false) {
global $theme_width,$settings;
echo "</tr>\n</table>\n
<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td class='footer-top' colspan='3'> </td>
</tr>
<tr>
<td align='center' colspan='3' class='footer'>";
echo stripslashes($settings['footer'])."</td></tr><tr>";
if(!$license){
/* this is the php-fusion copyright */
echo "<td align='left' class='footer' width='30%'>\n
Powered by <a href='http://www.php-fusion.co.uk' class='white'>
PHP-Fusion</a> v".$settings['version']."</td>";
}
/* this is where YOUR theme copyright and the total unique views are */
echo "<td align='center' class='footer' width='40%'>
FuturBlu theme by <a href='http://www.php-invent.com' target='_blank' class='white'>PHP-Invent Themes</a>
</td>
<td align='right' class='footer' width='30%'>".showcounter()."</td></tr>
</table>
</td>
<td class='border-right'> </td>
</tr>
</table>\n";
}
function render_news($subject, $news, $info) {
/* this is what the news post will be like */
echo "<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td class='scapmain-left' width='38'> </td>
<td class='scapmain'>$subject</td>
<td class='scapmain-right' width='38'> </td>
</tr>[color=red]</table>
<table cellpadding='0' cellspacing='0' width='100%'>[/color]<tr>
<td class='side-body' colspan='3'>\n
$news<br /><br /><hr><div align='center'>\n";
echo openform("N",$info['news_id']).newsposter($info,"<br>").newsopts($info,"·").closeform("N",$info['news_id']);
echo "</div></td>
</tr>
</table>\n";
}
function render_article($subject, $article, $info) {
/* this is what the article will look like */
echo "<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td class='scapmain-left' width='38'> </td>
<td class='scapmain'>$subject</td>
<td class='scapmain-right' width='38'> </td>
</tr>
<tr>
<td class='side-body' colspan='3'>\n
".($info['article_breaks'] == "y" ? nl2br($article) : $article)."
</td>
</tr>
<tr>
<td align='center' class='news-footer'>\n";
echo openform("A",$info['article_id']).articleposter($info,"<br>").articleopts($info,"·").closeform("A",$info['article_id']);
echo "</td>
</tr>
</table>\n";
}
function opentable($title) {
echo "<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td class='scapmain-left' width='38'> </td>
<td class='scapmain'>$title</td>
<td class='scapmain-right' width='38'> </td>
</tr>[color=red]</table>
<table cellpadding='0' cellspacing='0' width='100%'>[/color]<tr>
<td class='side-body'>\n";
}
function closetable() {
echo "</td>
</tr>
</table>\n";
}
function openside($title) {
echo "<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td class='scapmain-left' width='38'> </td>
<td class='scapmain'>$title</td>
<td class='scapmain-right' width='38'> </td>
</tr>[color=red]</table>
<table cellpadding='0' cellspacing='0' width='100%'>[/color]<tr>
<td class='side-body' >\n";
}
function closeside() {
echo "</td>
</tr>
</table>\n";
tablebreak();
}
function opensidex($title,$state="on") {
$boxname = str_replace(" ", "", $title);
echo "<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td class='scapmain-left' width='38'> </td>
<td class='scapmain'>$title</td>
<td class='scapmain-right' width='38'>".panelbutton($state,$boxname)."</td>
</tr></table>
<table cellpadding='0' cellspacing='0' width='100%'><tr>
<td class='side-body'>
<div id='box_$boxname'".($state=="off"?" style='display:none'":"").">\n";
}
function closesidex() {
echo "</div>
</td>
</tr>
</table>\n";
tablebreak();
}
function tablebreak() {
echo "<table cellpadding='0' cellspacing='0' width='100%'>\n<tr>\n<td height='5'></td>\n</tr>\n</table>\n";
}
?>
Poprawiłem funkcje opentable(), openside() i opensidex() i co poprawiłem zanaczyłem na czerwono :) Powinno być dobrze :D
Piterus World mój blog i miejsce moich eksperymentów. Ubi lex, ibi poena Kontakt przez komunikatory tylko dla znajomych...
|