<?php
/************************************************************************/
/* PHP-NUKE: Web Portal System */
/* =========================== */
/* */
/* Copyright (c) 2002 by Francisco Burzi */
/* http://phpnuke.org */
/* */
/* Complete Add-On */
/* Copyright (c) 2004 by Mutlu Edin */
/* http://www.bankaciyiz.biz */
/* */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License. */
/************************************************************************/
if (!eregi("modules.php", $PHP_SELF)) {
die ("You can't access this file directly...");
}
require_once("mainfile.php");
$module_name = basename(dirname(__FILE__));
get_lang($module_name);
$pagetitle = "$title";
$index = 0;
$theme = get_theme();
////////////////////////////////////////
// //
// Sayfa başına sütun sayısını seçin //
$sectionrow = 2;
// //
////////////////////////////////////////
function display_score($score) {
$image = "<img src=\"images/blue.gif\" title=\"\">";
$halfimage = "<img src=\"images/bluehalf.gif\" title=\"\">";
$full = "<img src=\"images/star.gif\" title=\"\">";
if ($score == 10) {
for ($i=0; $i < 5; $i++)
echo "$full";
} else if ($score % 2) {
$score -= 1;
$score /= 2;
for ($i=0; $i < $score; $i++)
echo "$image";
echo "$halfimage";
} else {
$score /= 2;
for ($i=0; $i < $score; $i++)
echo "$image";
}
}
function listsections() {
global $sitename, $prefix, $dbi, $module_name, $sectionrow;
include ('header.php');
$result = sql_query("select secid, secname, image, mail, active from ".$prefix."_sections WHERE active='1' order by secname", $dbi);
OpenTable();
//echo "<center><font class=\"title\"><b>"._SPECIALSECTIONS."</b></font></center>";
echo "<center><a href=\"modules.php?name=$module_name\"><img src=\"modules/$module_name/images/koseyazilari.png\" border=0 vspace=2 title=\"Köşe Yazıları\"></a></center><br>";
CloseTable();
echo "<br>";
OpenTable();
echo "<center><font class=\"title\">"._SECWELCOME." $sitename.</font></center>";
echo "<br><br><center>"._YOUCANFIND."</center><br><br>";
echo "<table cellpadding=\"0\" cellspacing=\"5\" border=\"0\" align=\"center\">";
$count = 0;
while (list($secid, $secname, $image, $mail, $active) = sql_fetch_row($result, $dbi)) {
//başla
$cresult = sql_query("select artid, title from ".$prefix."_seccont WHERE secid=$secid ORDER BY artid DESC limit 1", $dbi);
while (list($artid, $title) = sql_fetch_row($cresult, $dbi))
//bitiş
if ($count==$sectionrow) {
echo "<tr>";
$count = 0;
}
echo "<td align=\"center\"><a href=\"modules.php?name=$module_name&op=listarticles&secid=$secid\"><img src=\"images/sections/$image\" border=\"0\" height='112' width='86' title=\"$secname\" hspace=\"10\"><br>$secname</a>";
$cresult = sql_query("select artid, title, tarih from ".$prefix."_seccont WHERE secid=$secid ORDER BY artid DESC limit 1", $dbi);
while (list($artid, $title, $tarih) = sql_fetch_row($cresult, $dbi))
echo "<br><img border=\"0\" src='modules/$module_name/images/nok2.gif' valign=\"absmiddle\" height='11' width='10'> <a href=\"modules.php?name=$module_name&op=viewarticle&artid=$artid\"><i>$title</i></a> ($tarih)</td>";
$count++;
if ($count==$sectionrow) {
echo "</tr><tr><td> </td</tr>";
}
echo "<td> </td>";
}
echo "</table></center>";
if (is_active("Search")) {
echo "<br><form action=\"modules.php?name=Search&type=sections#results\" method=\"post\">";
echo "<center><input type=\"name\" name=\"query\" size=\"30\"> ";
echo "<input type=\"submit\" name=\"submit\" value=\""._SEARCH."\">";
echo "</center>";
echo "</form>";
echo "<center>[ <a href=\"modules.php?name=Search&type=sections\">"._ADVANCEDSEARCH."</a> ]</center><br>";
}
CloseTable();
//include('modules/Kose_Yazilari/kitap.php');
include ('footer.php');
}
function listarticles($secid) {
global $prefix, $multilingual, $currentlang, $dbi, $module_name, $bgcolor1, $bgcolor2, $textcolor1, $textcolor2;
if ($multilingual == 1) {
$querylang = "AND slanguage='$currentlang'";
} else {
$querylang = "";
}
include ('header.php');
OpenTable();
echo "<center><a href=\"modules.php?name=$module_name\"><img src=\"modules/$module_name/images/koseyazilari.png\" border=0 vspace=2 title=\"Köşe Yazıları\"></a></center><br>";
CloseTable();
echo "<br>";
$result = sql_query("select secname from ".$prefix."_sections where secid=$secid", $dbi);
list($secname) = sql_fetch_row($result, $dbi);
$result = sql_query("select artid, secid, title, content, counter, tarih from ".$prefix."_seccont where secid=$secid ORDER BY artid DESC LIMIT 0,5", $dbi);
$yazar =$secid;
OpenTable();
$result2 = sql_query("select image, mail from ".$prefix."_sections where secid=$secid", $dbi);
list($image, $mail) = sql_fetch_row($result2, $dbi);
OpenTable2();
echo "<center><img src=\"images/sections/$image\" border=\"0\" alt=\"$secname\"><br><br>";
echo "<font class=\"option\">";
echo "Yazar: <b>$secname</b><br>";
echo "E-Posta: <b><a href=\"mailto:$mail\">$mail</b></a>";
CloseTable2();
echo "<br>"._FOLLOWINGART."</font></center><br><br>";
echo "<table width=\"95%\" cellpadding=\"3\" cellspacing=\"1\" border=\"0\" align=\"center\"><tr>";
echo "<td align=\"center\" bgcolor=\"$bgcolor1\" width=\"70%\"><font color=\"$textcolor1\"><b>"._ARTICLETITLE."</b></font></td>";
echo "<td align=\"center\" bgcolor=\"$bgcolor1\" width=\"15%\"><font color=\"$textcolor1\"><b>Tarih</b></font></td>";
echo "<td align=\"center\" bgcolor=\"$bgcolor1\" width=\"15%\"><font color=\"$textcolor1\"><b>"._ARTICLEVIEWS."</b></font></td>";
echo "<td align=\"center\" bgcolor=\"$bgcolor1\" width=\"15%\"><font color=\"$textcolor1\"><b>"._ARTICLEOPTIONS."</b></font></td>";
echo "</tr>";
while (list($artid, $secid, $title, $content, $counter, $tarih) = sql_fetch_row($result, $dbi)) {
echo "<tr>";
echo "<td bgcolor=\"$bgcolor2\"> <b>•</b> <a href=\"modules.php?name=$module_name&op=viewarticle&artid=$artid\">$title</a></td>";
echo "<td align=\"center\" bgcolor=\"$bgcolor2\"><font class=\"content\">$tarih</td>";
echo "<td align=\"center\" bgcolor=\"$bgcolor2\"><font class=\"content\"><b>$counter</b> "._READS."</td>";
echo "<td align=\"center\" bgcolor=\"$bgcolor2\"><a href=\"modules.php?name=$module_name&op=printpage&artid=$artid\"><img src=\"images/print.gif\" border=\"0\" Alt=\""._PRINTER."\"></a>";
echo "<a href=\"modules.php?name=$module_name&file=printpdf&artid=$artid\"><img src=\"images/pdf.gif\" border=\"0\" Alt=\"PDF\" width=\"20\" height=\"19\"></a>";
echo "<a href=\"modules.php?name=$module_name&file=friend&op=&artid=$artid\"><img src=\"modules/$module_name/images/mail.gif\" border=\"0\" Alt=\"Arkadaşına Gönder\" aling=\"absmiddle\"></a>";
echo "</td></tr>";
}
echo "</table><br>";
//diğer yazılar
OpenTable();
echo "<center><b><a href=\"modules.php?name=$module_name&op=listfull&secid=$yazar\"title=\"Bütün Yazıları\"><img src=\"modules/$module_name/images/devam.gif\"border=\"0\" Alt=\"Bütün Yazıları\" aling=\"absmiddle\"> Bütün yazıları...</a></b></center>";
CloseTable();
//diğer yazılar
if (is_active("Search")) {
echo "<br><form action=\"modules.php?name=Search&type=sections#results\" method=\"post\">";
echo "<center><input type=\"name\" name=\"query\" size=\"30\"> ";
echo "<input type=\"submit\" name=\"submit\" value=\""._SEARCH."\">";
echo "</center>";
echo "</form>";
}
echo "<br>";
echo "<center>[ <a href=\"modules.php?name=$module_name\">"._SECRETURN."</a> ]</center>";
echo "<br>";
CloseTable();
//include('modules/Kose_Yazilari/kitap.php');
include ('footer.php');
}
function viewarticle($artid, $page) {
global $prefix, $dbi, $module_name;
include("header.php");
echo "<a name=\"articlestart\">";
OpenTable();
echo "<center><a href=\"modules.php?name=$module_name\"><img src=\"modules/$module_name/images/koseyazilari.png\" border=0 vspace=2 title=\"Köşe Yazıları\"></a></center><br>";
CloseTable();
echo "<br>";
if (($page == 1) OR ($page == "")) {
sql_query("update ".$prefix."_seccont set counter=counter+1 where artid='$artid'", $dbi);
}
$result = sql_query("select artid, secid, title, content, counter, tarih from ".$prefix."_seccont where artid=$artid", $dbi);
list($artid, $secid, $title, $content, $counter, $tarih) = sql_fetch_row($result, $dbi);
$result2 = sql_query("select secid, secname, image, mail from ".$prefix."_sections where secid=$secid", $dbi);
list($secid, $secname, $image, $mail) = sql_fetch_row($result2, $dbi);
$words = sizeof(explode(" ", $content));
OpenTable();
$contentpages = explode( "<!--pagebreak-->", $content );
$pageno = count($contentpages);
if ( $page=="" || $page < 1 )
$page = 1;
if ( $page > $pageno )
$page = $pageno;
$arrayelement = (int)$page;
$arrayelement --;
echo "<center><font class=\"option\"><b>$title</b></font></center>";
echo "<a href=\"modules.php?name=$module_name&op=listarticles&secid=$secid\"><img src=\"images/sections/$image\" alt=\"$secname\" border=0 vspace=3></a><br><a href=\"modules.php?name=$module_name&op=listarticles&secid=$secid\">$secname</a>";
$tarih = tarih_format($tarih);
echo "<br><br><b>Tarih</b>: $tarih<br>";
echo "<br><center><font class=\"content\">";
if ($pageno > 1) {
echo ""._PAGE.": <b>$page</b> "._OF." $pageno<br>";
}
echo "</center><br>";
echo "<div align=\"justify\">$contentpages[$arrayelement]</div><br><br>";
if($page >= $pageno) {
$next_page = "";
} else {
$next_pagenumber = $page + 1;
if ($page != 1) {
$next_page .= " ";
}
$next_page .= "<a href=\"modules.php?name=$module_name&op=viewarticle&artid=$artid&page=$next_pagenumber#articlestart\"><img src=\"images/buttons/next.gif\" border=\"0\" title=\""._NEXT."\"></a>";
}
if($page <= 1) {
$previous_page = "";
} else {
$previous_pagenumber = $page - 1;
$previous_page = "<a href=\"modules.php?name=$module_name&op=viewarticle&artid=$artid&page=$previous_pagenumber#articlestart\"><img src=\"images/buttons/previous.gif\" border=\"0\" title=\""._PREVIOUS."\"></a>";
}
echo "<center>"
."$previous_page $next_page";
echo "</font>";
echo "</center>";
echo "<b>$secname<br><a href=\"mailto:$mail\">$mail</b></a><br><br>";
echo "<center><br><br>"._READS2." <b>$counter</b> "._ANDHAS." <b>$words</b> "._TOTALWORDS2."<br><br>";
OpenTable();
echo "<center><a href=\"modules.php?name=$module_name&op=printpage&artid=$artid\"><img onmouseover=high(this) style=\"FILTER: alpha(opacity=30); moz-opacity: 0.3\" onmouseout=low(this) src=\"modules/$module_name/images/print.gif\" border=\"0\" Alt=\"Yazdırılabilir Sayfa\" aling=\"absmiddle\"> Yazdırılabilir Sayfa</a> <a href=\"modules.php?name=$module_name&file=printpdf&artid=$artid\"><img onmouseover=high(this) style=\"FILTER: alpha(opacity=30); moz-opacity: 0.3\" onmouseout=low(this) src=\"modules/Kose_Yazilari/images/pdf.gif\" border=\"0\" Alt=\"Pdf Formatı\" aling=\"absmiddle\"> Pdf Formatı</a> <a href=\"modules.php?name=$module_name&op=postcomment&artid=$artid&title=$title\"><img onmouseover=high(this) style=\"FILTER: alpha(opacity=30); moz-opacity: 0.3\" onmouseout=low(this) src=\"modules/$module_name/images/yorum.gif\" border=\"0\" Alt=\"Yorum Ekle\" aling=\"absmiddle\"> Yorum Ekle</a> <a href=\"modules.php?name=$module_name&file=friend&op=&artid=$artid\"><img onmouseover=high(this) style=\"FILTER: alpha(opacity=30); moz-opacity: 0.3\" onmouseout=low(this) src=\"modules/$module_name/images/mail.gif\" border=\"0\" Alt=\"Arkadaşına Gönder\" aling=\"absmiddle\"> Arkadaşına Gönder</a></center>";
CloseTable();
echo "</font></center><br><br>";
echo "<center>[ <a href=\"modules.php?name=$module_name&op=listarticles&secid=$secid\">"._BACKTO." $secname</a> ]"
." - [ <a href=\"modules.php?name=$module_name\">"._SECINDEX."</a> ]";
echo "</center>";
echo "<br>";
CloseTable();
//yorum
$title = urldecode($title);
if (($page == 1) OR ($page == "")) {
if (r_comments == 1)
OpenTable();
r_comments($artid, $title);
}
//yorum
//include('modules/Kose_Yazilari/kitap.php');
include ('footer.php');
}
function PrintSecPage($artid) {
global $site_logo, $nukeurl, $sitename, $datetime, $prefix, $dbi, $module_name, $theme;
$result = sql_query("select secid, title, content, tarih from ".$prefix."_seccont where artid=$artid", $dbi);
list($secid, $title, $content, $tarih) = sql_fetch_row($result, $dbi);
$result2 = sql_query("select secname from ".$prefix."_sections where secid=$secid", $dbi);
list($secname) = sql_fetch_row($result2, $dbi);
echo "
<html>
<head><title>$sitename</title>
<LINK REL=\"StyleSheet\" HREF=\"themes/$theme/style/style.css\" TYPE=\"text/css\">
</head>
<body bgcolor=\"#FFFFFF\" text=\"#000000\">
<table border=\"0\" align=\"center\"><tr><td>
<table border=\"0\" width=\"640\" cellpadding=\"0\" cellspacing=\"1\" bgcolor=\"#000000\"><tr><td>
<table border=\"0\" width=\"640\" cellpadding=\"20\" cellspacing=\"1\" bgcolor=\"#FFFFFF\"><tr><td>
<center>
<img src=\"images/$site_logo\" border=\"0\" alt=\"\"><br><br>
<font class=\"content\">
<b>$title</b></font><br>
</center><font class=\"content\">
$content<br>Yazar: <b>$secname</b><br>Tarih: <b>$tarih</b><br>";
echo "</td></tr></table></td></tr></table>
<br><br><center>
<font class=\"content\">
Bu Köşe Yazısının yer aldığı yer: $sitename<br>
<a href=\"$nukeurl\">$nukeurl</a><br><br>
Bu Köşe Yazısı için adres:<br>
<a href=\"$nukeurl/modules.php?name=$module_name&op=viewarticle&artid=$artid\">$nukeurl/modules.php?name=$module_name&op=viewarticle&artid=$artid</a></font></center>
</td></tr></table>
</body>
</html>
";
}
//yorum
function postcomment($artid, $title) {
global $user, $c o o k i e, $text, $score, $AllowableHTML, $anonymous, $module_name, $button_image, $module_name;
include("header.php");
OpenTable();
echo "<center><a href=\"modules.php?name=$module_name\"><img src=\"modules/$module_name/images/koseyazilari.png\" border=0 vspace=2 title=\"Köşe Yazıları\"></a></center><br>";
CloseTable();
c o o k i edecode($user);
$title = htmlspecialchars(urldecode($title));
$text = stripslashes(check_html($text, ""));
OpenTable();
echo "<center><font class=\"title\">"._POSTCOMMENT."</font></center>";
CloseTable();
Opentable();
OpenTable2();
echo "<center><font class=\"title\">"._REVIEWCOMMENT." - $title</font></center>";
CloseTable2();
echo "<form action=modules.php?name=$module_name method=post>";
echo "<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td>";
if (!is_user($user)) {
echo "<b>"._YOURNICK."</b> $anonymous [ "._RCREATEACCOUNT." ]<br><br>";
$uname = $anonymous;
} else {
echo "<b>"._YOURNICK."</b> $c o o k i e[1]<br>";
echo "<input type=checkbox name=xanonpost> <span style=\"vertical-align=23%\">"._POSTANON."</span><br><br>";
$uname = $c o o k i e[1];
}
echo "<b>"._YOURSCORE.":</b><br>";
echo "<input type=hidden name=uname value=$uname>";
echo "<input type=hidden name=artid value=$artid>";
echo "<select name=score>";
echo "<option name=score value=null>Seçiniz</option>";
echo "<option name=score value=10>10</option>";
echo "<option name=score value=9>9</option>";
echo "<option name=score value=8>8</option>";
echo "<option name=score value=7>7</option>";
echo "<option name=score value=6>6</option>";
echo "<option name=score value=5>5</option>";
echo "<option name=score value=4>4</option>";
echo "<option name=score value=3>3</option>";
echo "<option name=score value=2>2</option>";
echo "<option name=score value=1>1</option>";
echo "</select><br>"._FAIR."<br><br>";
echo "<b>"._YOURCOMMENT."</b><br>";
echo "<textarea name=comments rows=10 cols=70></textarea><br>";
echo "<br><br></td></tr><tr><td align=\"center\" width=\"50%\">";
echo "<input type=hidden name=op value=savecomment>";
echo "<input type=\"submit\" name=\"submit\" value=\""._SUBMIT."\">";
echo "</td><td width=\"50%\"> </td></tr></table></form>";
Closetable();
include("footer.php");
}
function savecomment($xanonpost, $uname, $artid, $score, $comments) {
global $anonymous, $user, $c o o k i e, $prefix, $dbi, $module_name, $score;
include ('header.php');
OpenTable();
echo "<center><a href=\"modules.php?name=$module_name\"><img src=\"modules/$module_name/images/koseyazilari.png\" border=0 vspace=2 title=\"Köşe Yazıları\"></a></center><br>";
CloseTable();
OpenTable();
echo "<center><font class=\"title\">"._REVIEWS."</font></center>";
CloseTable();
OpenTable();
echo "<br>";
if ($comments == "") {
$error = 1;
echo "<b>"._CINVALIDTEXT."</b><br>";
}
if (($score < 1) || ($score > 10)) {
$error = 1;
echo "<b>"._CINVALIDSCORE."</b><br>";
}
if ($error == 1){
echo "<br><center>"._GOBACK."</center>";
CloseTable();
include("footer.php");
} else {
if ($xanonpost) {
$uname = $anonymous;
}
$comments = stripslashes(FixQuotes(check_html($comments)));
sql_query("insert into ".$prefix."_sections_comments values (NULL, '$artid', '$uname', now(), '$comments', '$score')", $dbi);
Header("Location: modules.php?name=$module_name&op=viewarticle&artid=$artid#$artid");
}
}
function r_comments($artid, $title) {
global $admin, $prefix, $dbi, $module_name, $num, $artid;
$result = sql_query("select cid, userid, date, comments, score from ".$prefix."_sections_comments where rid='$artid' ORDER BY date DESC", $dbi);
while(list($cid, $uname, $date, $comments, $score) = sql_fetch_row($result, $dbi)) {
$num = $num + 1;
if ($num < 2) {
OpenTable();
echo "<center><font class=\"title\">"._COMMENTS."</font></center>";
CloseTable();
echo "<a name=\"$artid\">";
Opentable();
$title = urldecode($title);
echo "<b>$title</b><br>";
if ($uname == "Anonymous") {
echo ""._POSTEDBY." $uname "._ON." $date<br>";
} else {
echo ""._POSTEDBY." <a href=\"modules.php?name=Your_Account&op=userinfo&uname=$uname\">$uname</a> "._ON." $date<br>";
}
echo ""._MYSCORE."<span style=\"vertical-align=-33%\">";
display_score($score);
echo "</span>";
if (is_admin($admin)) {
echo "<br><b>"._ADMINOPTIONS.":</b> [ <a href=\"modules.php?name=$module_name&op=del_comment&cid=$cid&artid=$artid\">"._DELETE."</a> ]</font>";
} else {
echo "</font><br>";
}
$comments = FixQuotes(nl2br(filter_text($comments)));
echo "<br><br><div align=\"justify\">$comments</div><br>";
Closetable();
} else {
Opentable();
$title = urldecode($title);
echo "<b>$title</b><br>";
if ($uname == "Anonymous") {
echo ""._POSTEDBY." $uname "._ON." $date<br>";
} else {
echo ""._POSTEDBY." <a href=\"modules.php?name=Your_Account&op=userinfo&uname=$uname\">$uname</a> "._ON." $date<br>";
}
echo ""._MYSCORE."<span style=\"vertical-align=-33%\">";
display_score($score);
echo "</span>";
if (is_admin($admin)) {
echo "<br><b>"._ADMINOPTIONS.":</b> [ <a href=\"modules.php?name=$module_name&op=del_comment&cid=$cid&artid=$artid\">"._DELETE."</a> ]</font>";
} else {
echo "</font><br>";
}
$comments = FixQuotes(nl2br(filter_text($comments)));
echo "<br><br><div align=\"justify\">$comments</div><br>";
Closetable();
}
}
}
function del_comment($cid, $artid) {
global $admin, $prefix, $dbi, $module_name;
if (is_admin($admin)) {
sql_query("delete from ".$prefix."_sections_comments where cid='$cid'", $dbi);
Header("Location: modules.php?name=$module_name&op=viewarticle&artid=$artid");
} else {
echo "ACCESS DENIED";
}
}
//Yorum
//tüm yazılar
function listfull($secid) {
global $prefix, $multilingual, $currentlang, $dbi, $module_name, $bgcolor1, $bgcolor2, $textcolor1, $textcolor2;
if ($multilingual == 1) {
$querylang = "AND slanguage='$currentlang'";
} else {
$querylang = "";
}
include ('header.php');
OpenTable();
echo "<center><a href=\"modules.php?name=$module_name\"><img src=\"modules/$module_name/images/koseyazilari.png\" border=0 vspace=2 title=\"Köşe Yazıları\"></a></center><br>";
CloseTable();
echo "<br>";
$result = sql_query("select secname from ".$prefix."_sections where secid=$secid", $dbi);
list($secname) = sql_fetch_row($result, $dbi);
$result = sql_query("select artid, secid, title, content, counter, tarih from ".$prefix."_seccont where secid=$secid ORDER BY artid DESC", $dbi);
OpenTable();
$result2 = sql_query("select image, mail from ".$prefix."_sections where secid=$secid", $dbi);
list($image, $mail) = sql_fetch_row($result2, $dbi);
OpenTable2();
echo "<center><img src=\"images/sections/$image\" border=\"0\" alt=\"$secname\"><br><br>";
echo "<font class=\"option\">";
echo "Yazar: <b>$secname</b><br>";
echo "E-Posta: <b><a href=\"mailto:$mail\">$mail</b></a>";
CloseTable2();
echo "<br>"._FOLLOWINGART1."</font></center><br><br>";
echo "<table width=\"95%\" cellpadding=\"3\" cellspacing=\"1\" border=\"0\" align=\"center\"><tr>";
echo "<td align=\"center\" bgcolor=\"$bgcolor1\" width=\"70%\"><font color=\"$textcolor1\"><b>"._ARTICLETITLE."</b></font></td>";
echo "<td align=\"center\" bgcolor=\"$bgcolor1\" width=\"15%\"><font color=\"$textcolor1\"><b>Tarih</b></font></td>";
echo "<td align=\"center\" bgcolor=\"$bgcolor1\" width=\"15%\"><font color=\"$textcolor1\"><b>"._ARTICLEVIEWS."</b></font></td>";
echo "<td align=\"center\" bgcolor=\"$bgcolor1\" width=\"15%\"><font color=\"$textcolor1\"><b>"._ARTICLEOPTIONS."</b></font></td>";
echo "</tr>";
while (list($artid, $secid, $title, $content, $counter, $tarih) = sql_fetch_row($result, $dbi)) {
echo "<tr>";
echo "<td bgcolor=\"$bgcolor2\"> <b>•</b> <a href=\"modules.php?name=$module_name&op=viewarticle&artid=$artid\">$title</a></td>";
echo "<td align=\"center\" bgcolor=\"$bgcolor2\"><font class=\"content\">$tarih</td>";
echo "<td align=\"center\" bgcolor=\"$bgcolor2\"><font class=\"content\"><b>$counter</b> "._READS."</td>";
echo "<td align=\"center\" bgcolor=\"$bgcolor2\"><a href=\"modules.php?name=$module_name&op=printpage&artid=$artid\"><img src=\"images/print.gif\" border=\"0\" Alt=\""._PRINTER."\"></a>";
echo "<a href=\"modules.php?name=$module_name&file=printpdf&artid=$artid\"><img src=\"images/pdf.gif\" border=\"0\" Alt=\"PDF\" width=\"20\" height=\"19\"></a>";
echo "<a href=\"modules.php?name=$module_name&file=friend&op=&artid=$artid\"><img src=\"modules/$module_name/images/mail.gif\" border=\"0\" Alt=\"Arkadaşına Gönder\" aling=\"absmiddle\"></a>";
echo "</td></tr>";
}
echo "</table><br>";
if (is_active("Search")) {
echo "<br><form action=\"modules.php?name=Search&type=sections#results\" method=\"post\">";
echo "<center><input type=\"name\" name=\"query\" size=\"30\"> ";
echo "<input type=\"submit\" name=\"submit\" value=\""._SEARCH."\">";
echo "</center>";
echo "</form>";
}
echo "<br>";
echo "<center>[ <a href=\"modules.php?name=$module_name\">"._SECRETURN."</a> ]</center>";
echo "<br>";
CloseTable();
//include('modules/Kose_Yazilari/kitap.php');
include ('footer.php');
}
function tarih_format($tarih)
{
if ($tarih) {
$yil = substr($tarih,0,4);
$ay = substr($tarih,5,2);
$gun = substr($tarih,8,2);
$tarihs = mktime(0,0,0,$ay,$gun,$yil);
$days = array(_IO_SUNDAY,_IO_MONDAY,_IO_TUESDAY,_IO_WEDNESDAY,_IO_THURSDAY,_IO_FRIDAY,_IO_SATURDAY);
$months = array(_JANUARY,_FEBRUARY,_MARCH,_APRIL,_MAY,_JUNE,_JULY,_AUGUST,_SEPTEMBER,_OCTOBER,_NOVERMBER,_DECEMBER);
$buay = date("n", $tarihs) - 1;
$bugun = date("w", $tarihs);
$bugun1 = date("j", $tarihs);
$son = $bugun1 . " " . $months[$buay] . " " . $yil . " " . $days[$bugun];
return $son;
} else {
return 0;
}
}
switch($op) {
case "viewarticle":
viewarticle($artid, $page);
break;
case "listarticles":
listarticles($secid);
break;
case "printpage":
PrintSecPage($artid);
break;
default:
listsections();
break;
case "postcomment":
postcomment($artid, $title, $tur, $izdin);
break;
case "savecomment":
savecomment($xanonpost, $uname, $artid, $score, $comments);
break;
case "del_comment":
del_comment($cid, $artid);
break;
case "listfull":
listfull($secid);
break;
case "tarih_format":
tarih_format($tarih);
break;
}
?>
|