$header_content
\n"; $result = dbquery("SELECT * FROM ".FUSION_PREFIX."site_links WHERE link_position>='2' ORDER BY link_order"); if (dbrows($result) != 0) { $i = 0; while($data = dbarray($result)) { if (checkgroup($data['link_visibility'])) { if ($data['link_url']!="---") { if ($i != 0) { echo " ::\n"; } else { echo "\n"; } $link_target = ($data['link_window'] == "1" ? " target='_blank'" : ""); if (strstr($data['link_url'], "http://") || strstr($data['link_url'], "https://")) { echo "".$data['link_name'].""; } else { echo "".$data['link_name'].""; } } $i++; } } } echo ($i == 0 ? " " : "")."\n".ucwords(showdate("%A, %B %d, %Y", time()))." \n"; echo "\n\n"; } function render_footer($license=false) { global $theme_width,$settings; echo "\n
\n"; echo "
PHP-Fusion v".sprintf("%.2f", $settings['version']/100)." © 2003-2005 ".stripslashes($settings['footer'])." Dark Echelon made by eXtreme-fusion
\n"; } function render_news($subject, $news, $info) { echo "
$subject
$news
".LAN_40."".$info['user_name']." ".LAN_41.showdate("longdate", $info['news_date'])." ".($info['news_ext'] == "y" ? "".LAN_42." ·\n" : "")." ".$info['news_comments'].LAN_43." · ".$info['news_reads'].LAN_44." ".LAN_45."
\n"; } function render_article($subject, $article, $info) { echo "
$subject
".($info['article_breaks'] == "y" ? nl2br($article) : $article)."
".LAN_40."".$info['user_name']." ".LAN_41.showdate("longdate", $info['article_date'])." ".$info['article_comments'].LAN_43." · ".$info['article_reads'].LAN_44." ".LAN_45."
\n"; } function opentable($title) { echo "
$title
\n"; } function closetable() { echo "
\n"; } function openside($title) { echo "
$title
\n"; } function closeside() { echo "
\n"; tablebreak(); } function opensidex($title,$open="on") { $box_img = ($open=="on" ? "off" : "on"); echo "
$title $box_img
\n"; } function closesidex() { echo "
\n"; tablebreak(); } function tablebreak() { echo "
\n"; } ?>