📄 previewentry.php
字号:
} else {
$total_entries = mysql_num_rows(mysql_query("SELECT e_id FROM bhost_entries WHERE u_id='$user_info[u_id]' AND draft='0'"));
$current_page = mysql_num_rows(mysql_query("SELECT e_id FROM bhost_entries WHERE u_id='$user_info[u_id]' AND date >= '$entry_date[date]' AND draft='0'"));
}
// REMOVE ANYTHING BETWEEN <IFPAGES> CONTAINERS IF ONLY ONE PAGE
if($total_entries == 1) {
$ifpagescount = occurrencecount("<IfPages>", "</IfPages>", $template, "0");
for($a=0;$a<$ifpagescount;$a++) {
$template = str_replace("<IfPages>".between("<IfPages>", "</IfPages>", $template)."</IfPages>", "", $template);
}
}
// REMOVE ANYTHING BETWEEN <LATERLINK> IF NOTHING LATER
if($current_page == "1") {
$template = str_replace("<LaterLink>", "", $template);
$template = str_replace("</LaterLink>", "", $template);
}
// REMOVE ANYTHING BETWEEN <EARLIERLINK> IF NOTHING EARLIER
if($current_page == $total_entries) {
$template = str_replace("<EarlierLink>", "", $template);
$template = str_replace("</EarlierLink>", "", $template);
}
// INPUT PAGE VARIABLES
$search_array2 = Array("<LaterLink>", "</LaterLink>", "<EarlierLink>", "</EarlierLink>", "<%CurrentPage%>", "<%TotalPages%>");
$replace_array2 = Array("<a class='laterlink' href='#'>", "</a>", "<a class='earlierlink' href='#'>", "</a>", "$current_page", "$total_entries");
$template = str_replace($search_array2, $replace_array2, $template);
// REMOVE ENTRY CATEGORIES IF NOT ALLOWED
if($group_info[allow_entry_cat] != "1") {
$ifcategoriesallowedcount = occurrencecount("<IfCategoriesAllowed>", "</IfCategoriesAllowed>", $template, "0");
for($a=0;$a<$ifcategoriesallowedcount;$a++) {
$template = str_replace("<IfCategoriesAllowed>".between("<IfCategoriesAllowed>", "</IfCategoriesAllowed>", $template)."</IfCategoriesAllowed>", "", $template);
}
$template = str_replace("<%EntryCategory%>", "", $template);
}
// CHECK FOR ENTRIES
$entrycount = occurrencecount("<Entry>", "</Entry>", $template, "0");
for($i=0;$i<$entrycount;$i++) {
$insert = "";
$entry = between("<Entry>", "</Entry>", $template);
$insert .= $entry;
$entrytitle = str_replace("<", "<", $entry_info[title]);
$entrytitle = str_replace(">", ">", $entrytitle);
if($entry_info[ec_id] == 0) {
$ifcategoriesallowedcount = occurrencecount("<IfCategoriesAllowed>", "</IfCategoriesAllowed>", $insert, "0");
for($a=0;$a<$ifcategoriesallowedcount;$a++) {
$insert = str_replace("<IfCategoriesAllowed>".between("<IfCategoriesAllowed>", "</IfCategoriesAllowed>", $insert)."</IfCategoriesAllowed>", "", $insert);
}
$entry_category = "$previewentry2";
} else {
$entry_cat = mysql_fetch_assoc(mysql_query("SELECT ec_id, name FROM bhost_entrycategories WHERE ec_id='$entry_info[ec_id]' AND u_id='$user_info[u_id]'"));
$entry_category = "<a href='".url("index_cat", $user_info[username], "0", "", "", "", "", $category="$entry_cat[name]")."'>$entry_cat[name]</a>";
}
// CHECK FOR MISSING AVATAR FIRST
$entry_avatar = $user_info[avatar];
$avatar_stripped = str_replace(" ", "", $entry_avatar);
if($avatar_stripped == "" OR $avatar_stripped == "http://") {
$entry_avatar = url("/images/", "images/noavatar2.gif");
}
$search_array3 = Array("<%EntryDate%>", "<%EntryTitle%>", "<%EntryURL%>", "<%EntryBody%>", "<%EntryAuthor%>", "<%EntryAuthorAvatar%>", "<%EntryTime%>", "<%EntryCategory%>", "<SendThisLink>", "</SendThisLink>");
$replace_array3 = Array(cdate("$user_info[format_date]", timezone($entry_info[date])), "$entrytitle", "#", "$entry_info[contents]", "$user_info[display_name]", "$entry_avatar", cdate("$user_info[format_time]", timezone($entry_info[date])), "$entry_category", "<a href='#'>", "</a>");
$insert = str_replace($search_array3, $replace_array3, $insert);
if($remove_comments != "yes") {
$insert = str_replace("<%CommentPostURL%>", "#", $insert);
$numofcomments = mysql_num_rows(mysql_query("SELECT c_id FROM bhost_comments WHERE u_id='$user_info[u_id]' AND e_id='$e_id'"));
$numoftrackbacks = mysql_num_rows(mysql_query("SELECT tb_id FROM bhost_trackbacks WHERE e_id='$e_id'"));
$insert = str_replace("<%EntryCommentCount%>", $numofcomments, $insert);
$commentcount = occurrencecount("<Comment>", "</Comment>", $insert, "0");
for($f=0;$f<$commentcount;$f++) {
$insert2 = "";
$comment = between("<Comment>", "</Comment>", $insert);
$comments = mysql_query("SELECT * FROM bhost_comments WHERE u_id='$user_info[u_id]' AND e_id='$e_id' ORDER BY date");
while($comment_info = mysql_fetch_assoc($comments)) {
$comment_author_check = mysql_num_rows(mysql_query("SELECT u_id FROM bhost_users WHERE username='$comment_info[username]' AND u_id='$comment_info[author_u_id]'"));
$comment_author = @mysql_fetch_assoc(mysql_query("SELECT u_id, avatar FROM bhost_users WHERE username='$comment_info[username]' AND u_id='$comment_info[author_u_id]'"));
if($comment_author_check == 1) {
$commentauthor = "<a href='#'>$comment_info[username]</a>";
if(str_replace(" ", "", $comment_author[avatar]) == "") { $commentauthoravatar = "./images/noavatar.gif"; } else { $commentauthoravatar = "$comment_author[avatar]"; }
} else {
if($comment_info[author_u_id] != "0") {
$commentauthor = "<a href='#'>$comment_info[username]</a>";
} else {
$commentauthor = $comment_info[username];
}
$commentauthoravatar = "./images/noavatar.gif";
}
$this_comment = $comment;
$comment_edit = "yes";
$comment_delete = "yes";
if($user_info[logip_comments] == "1") { $comment_ip = "yes"; } else { $comment_ip = "no"; }
$this_comment = str_replace("<CommentEdit>", "<a href='#'>", $this_comment);
$this_comment = str_replace("</CommentEdit>", "</a>", $this_comment);
$this_comment = str_replace("<CommentDelete>", "<a href='#'>", $this_comment);
$this_comment = str_replace("</CommentDelete>", "</a>", $this_comment);
if($comment_info[IP] == "") { $IP = "IP Not Logged"; } else { $IP = $comment_info[IP]; }
$this_comment = str_replace("<%CommentAuthorIP%>", "($IP)", $this_comment);
$insert2 .= "<a name='c$comment_info[c_id]'></a>".$this_comment;
$search_array4 = Array("<%CommentDate%>", "<%CommentTitle%>", "<%CommentBody%>", "<%CommentAuthor%>", "<%CommentAuthorAvatar%>", "<%CommentTime%>", "<%CommentURL%>");
$replace_array4 = Array(cdate("$user_info[format_date]", timezone($comment_info[date])), "$comment_info[title]", "$comment_info[contents]", "$commentauthor", "$commentauthoravatar", cdate("$user_info[format_time]", timezone($comment_info[date])), "#");
$insert2 = str_replace($search_array4, $replace_array4, $insert2);
}
$insert = str_replace("<Comment>".$comment."</Comment>", $insert2, $insert);
}
}
if($group_info[allow_trackback] != "0" | $entry_info[trackbacks] != "0") {
$insert = str_replace("<%EntryTrackbackURL%>", "#", $insert);
$insert = str_replace("<%TrackbackCount%>", $numoftrackbacks, $insert);
$trackbackcount = occurrencecount("<Trackback>", "</Trackback>", $insert, "0");
for($f=0;$f<$trackbackcount;$f++) {
$insert3 = "";
$trackback = between("<Trackback>", "</Trackback>", $insert);
$trackbacks = mysql_query("SELECT * FROM bhost_trackbacks WHERE e_id='$e_id' ORDER BY tb_date");
while($trackback_info = mysql_fetch_assoc($trackbacks)) {
$this_trackback = $trackback;
$trackback_delete = "yes";
if($trackback_delete == "yes") {
$this_trackback = str_replace("<TrackbackDelete>", "<a href='#'>", $this_trackback);
$this_trackback = str_replace("</TrackbackDelete>", "</a>", $this_trackback);
} else {
$this_trackback = str_replace("<TrackbackDelete>".between("<TrackbackDelete>", "</TrackbackDelete>", $this_trackback)."</TrackbackDelete>", "", $this_trackback);
}
$insert3 .= "<a name='tb$trackback_info[tb_id]'></a>".$this_trackback;
$search_array5 = Array("<%TrackbackBlogName%>", "<%TrackbackURL%>", "<%TrackbackTitle%>", "<%TrackbackExcerpt%>", "<%TrackbackDate%>", "<%TrackbackTime%>");
$replace_array5 = Array("$trackback_info[tb_blog_name]", "#", "$trackback_info[tb_title]", "$trackback_info[tb_excerpt]", cdate("$user_info[format_date]", timezone($trackback_info[tb_date])), cdate("$user_info[format_time]", timezone($trackback_info[tb_date])));
$insert3 = str_replace($search_array5, $replace_array5, $insert3);
}
$insert = str_replace("<Trackback>".$trackback."</Trackback>", $insert3, $insert);
}
}
$template = str_replace("<Entry>".$entry."</Entry>", $insert, $template);
}
// REPLACE ADS AT TOP
if(($group_info[show_ad] == 1 OR $group_info[show_ad] == 3) AND $group_info[html_ad] != "") {
// FIRST CHECK FOR BODY TAG
if(preg_match("/<(body)(.*)>/i", $template, $match1)) {
$template = str_replace($match1[0], "$match1[0]$group_info[html_ad]", $template);
// IF BODY TAG CANNOT BE FOUND, CHECK FOR HEAD TAG
} elseif(preg_match("/<(head)(.*)>/i", $template, $match2)) {
$template = str_replace($match2[0], "$group_info[html_ad]$match2[0]", $template);
// IF BODY AND HEAD TAGS CANT BE FOUND, STICK AD AT VERY TOP
} else {
$template = "$group_info[html_ad]$template";
}
}
// REPLACE ADS AT BOTTOM
if(($group_info[show_ad] == 2 OR $group_info[show_ad] == 3) AND $group_info[html_ad_bottom] != "") {
// FIRST CHECK FOR ENDING BODY TAG
if(preg_match("/(<\/body>)/i", $template, $match1)) {
$template = str_replace($match1[0], "$group_info[html_ad_bottom]$match1[0]", $template);
} elseif(preg_match("/<(\/html)(.*)>/i", $template, $match2)) {
$template = str_replace($match2[0], "$group_info[html_ad_bottom]$match2[0]", $template);
} else {
$template = "$template$group_info[html_ad_bottom]";
}
}
$search_vars = Array("<IfPages>", "</IfPages>", "<EarlierLink>", "</EarlierLink>", "<LaterLink>", "</LaterLink>", "<RecentEntry>", "</RecentEntry>", "<Entry>", "</Entry>", "<IfCommentsAllowed>", "</IfCommentsAllowed>", "<IfCommentPostAllowed>", "</IfCommentPostAllowed>", "<Comment>", "</Comment>", "<CommentEdit>", "</CommentEdit>", "<CommentDelete>", "</CommentDelete>", "<IfMainPage>", "</IfMainPage>", "<IfEntryPage>", "</IfEntryPage>", "<IfArchivePage>", "</IfArchivePage>", "<IfCategoriesAllowed>", "</IfCategoriesAllowed>", "<%TrackbackRDF%>", "<IfTrackbacksAllowed>", "</IfTrackbacksAllowed>");
$template = str_replace($search_vars, "", $template);
// OUTPUT WEBLOG
echo $template;
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -