nehemia wrote:
Vielen Dank, Munzli, für Deinen Beitrag dazu.
Die Schweizer sind die "Größten"!!! ':D' Es lebe die Schweiz!,
Martin
ja bitte bitte...
aber übertreiben musst du's ja nicht
hier noch meine ein bisschen überarbeitete version des blog.module.phps mit captcha ( hardcodiert

) und XHTML valid output
Code: Select all
<?php
include("include/inc_module/mod_blogs/inc_lib/functions.general.inc.php");
include("include/inc_module/mod_blogs/inc_lib/functions.db.inc.php");
function bm_render_blog($title)
{
global $gt, $b_prefs;
$s = '';
// style element not allowed here, this is XHTML baby!
//$s .= file_get_contents((dirname(realpath(__FILE__)) . "/blog.style.css"));
/* removed the next lines since i'm now using mootools
*
* you need to call initializeLightbox(); in a frontend rendering file like: content.article.inc.php
* just add it somewhere so it's called on that page that you want to have the news.
*/
//$s .= '<script src="scripts/prototype.lite.js" type="text/javascript"></script>
//<script src="scripts/moo.fx.js" type="text/javascript"></script>';
// Number of blog entries per page
$pp = 5;
if ($_GET["offset"] != "") $start = $_GET["offset"];
else $start = 0;
$bid = db_get_blogid($title);
unserialize_prefs($bid);
// Add a comment if we've been sent one
if ($_POST["addcomment"] == true && $_POST["comment"] != "" && !empty($_POST["captcha"]))
{
include_once (PHPWCMS_ROOT.'/include/inc_ext/SOLMETRA_FormValidator/SPAF_FormValidator.class.php');
// instantiate the object
$spaf_obj = new SPAF_FormValidator();
$captcha = clean_slweg($_POST['captcha']);
if ($spaf_obj->validRequest($captcha)) {
// destroy successful code
$spaf_obj->destroy();
$success = db_add_comment($_POST["entryid"], $_POST["author"], $_POST["url"], $_POST["comment"]);
$msg = file_get_contents(dirname(__FILE__) . "/email.txt");
$search = array("*COMMENT*", "*AUTHOR*", "*PERMALINK*", "*SITE*", "*TITLE*");
$replace = array($_POST["comment"], $_POST["author"], $phpwcms["site"] . $b_prefs["permalink"], $phpwcms["site"], $title);
$msg = str_replace($search, $replace, $msg);
send_comment_notification($b_prefs["commentemails"], $msg);
} else {
$s .= '<div class="captcha_error">Fill in the correct security code!</div>';
}
}
if ($bid != "")
{
if ($_GET["permalink"] != "")
{
$entries = db_get_permalink_entry($_GET["permalink"]);
}
else
{
$entries = db_get_entries($bid, $start, $pp);
}
foreach($entries as $e)
{
$s .= "<div class='blogtext'>";
$cres = db_get_comments($e["id"]);
$ccount = mysql_num_rows($cres);
$etext = $e["content"];
$eid = $e["id"];
$etext = nl2br($etext);
$s .= "<div class='blogheader'>";
$s .= "<span class='blogdate'>" . strftime("%a %d/%m/%y %H:%M", $e["time"]) . "</span>";
$s .= "<div class='blogheadline'>" . $e["title"] . "</div></div>";
$s .= "<div class='blogcontent'><div class='blogsubtitle'>" . $e["subtitle"] . "</div>" . $etext . "</div>";
// Begin comments
$s .= "<div class='blogcomments'><div class="right">";
if ($ccount > 0) {
$s .= "<a style='cursor:pointer;' onclick='c" . $bid . "_" . $eid . ".toggle()'><b>";
}
$s .= "$ccount comment";
if ($ccount != 1) {
$s .= "s"; // "Comment" or "Comments"?
}
if ($ccount > 0) {
$s .= "</b></a>";
}
// create a correct URL so it's XHTML valid
$request_uri = preg_replace('/&(?!amp;)/','&',$_SERVER['REQUEST_URI']);
if (!$_GET["permalink"]) {
($_SERVER["QUERY_STRING"] != "") ? $permalink = $request_uri . "&" : $permalink = $request_uri . "?";
// remove offset parameter for permalink
$permalink = preg_replace("/&offset=\d*/i", "", $permalink);
// permalink parameter
$permalink .= "permalink=$eid";
}
$s.= "<span style='color: #999'> | </span> <a id='link$bid-$eid' style='cursor:pointer;' onmousedown='ac" . $bid . "_" . $eid . ".toggle()'>Add a comment</a></div>";
$s.= "<a href='" . $permalink . "'>permalink</a>";
$s .= "</div>";
$s .= "<div style='width:100%' id='el" . $bid. "addcomment" . $eid . "'>";
$s .= "<form method='post' action='" . $request_uri . "'>
<input type='hidden' name='entryid' value='$eid'/>
<input type='hidden' name='addcomment' value='true'/>
<div style='width: 100%' class='addblogcomment'>
<p>
<label for='author" . $bid . "_" . $eid . "'>Author:</label>
<input id='author" . $bid . "_" . $eid . "' name='author' type='text' />
</p>
<p>
<label for='url" . $bid . "_" . $eid . "'>Webpage:</label>
<input id='url" . $bid . "_" . $eid . "' name='url' type='text' />
</p>
<p>
<label for='comment" . $bid . "_" . $eid . "'>Comment:</label>
<textarea id='comment" . $bid . "_" . $eid . "' name='comment' rows='5' cols='43'></textarea>
</p>
<!--CAPTCHA_START//-->
<p>
<label for='captcha" . $bid . "_" . $eid . "'>Code:</label>
<input name='captcha' type='text' id='captcha" . $bid . "_" . $eid . "' class='gbInputFieldCaptcha' value='' size='10' maxlength='10' />
<img src='img/captcha.php?regen=y&length=5&".time()."' alt='captcha' border='0' class='gbCaptchaImage' />
</p>
<!--CAPTCHA_END//-->
<p>
<input class='submit' type='submit' value='Add Comment'/>
</p>
</div>
</form>";
$s .= "</div>";
$s .= "<div style='width: 100%' class='comments' id='el" . $bid. "comments" . $eid . "' >";
if ($ccount > 0)
{
$s .= "<div class='blogcomments'>
<div class='blogcommentheader'>";
while ($comment = mysql_fetch_array($cres))
{
$s .= "<b>";
if ($comment ["url"] != "http://" && $comment["url"] != "") {
$s .= "<a href='" . $comment["url"] . "'>";
}
$s .= $comment["author"];
if ($comment ["url"] != "") {
$s .= "</a>";
}
$s .= ":</b><br />";
$s .= nl2br(trim($comment["comment"]));
$s .= "<div style='height: 1px; border-top: 1px dashed #000; width: 100%; padding: 0; margin: 6px 0 6px 0;'></div>";
}
$s .= "</div></div>";
}
$s .= "</div>";
$s .= "<script type='text/javascript'>
var ac" . $bid . "_" . $eid . " = new Fx.Slide('el" . $bid . "addcomment" . $eid . "', {duration: 1000, transition: Fx.Transitions.Expo.easeOut});
c" . $bid . "_" . $eid . " = new Fx.Slide('el" . $bid . "comments" . $eid . "', {duration: 1000, transition: Fx.Transitions.Expo.easeOut});
ac" . $bid . "_" . $eid . ".hide();
c" . $bid . "_" . $eid . ".hide();
</script>";
$s .= "</div>";
}
if ($_GET["permalink"] == "")
{
$prevlink = $request_uri;
$nextlink = $request_uri;
$prevlink = preg_replace("/&offset=\d*/i", "", $prevlink);
$nextlink = preg_replace("/&offset=\d*/i", "", $nextlink);
if (strstr($prevlink, "?") !== false)
{
$prevlink .= "&";
$nextlink .= "&";
}
else
{
$prevlink .= "?";
$nextlink .= "?";
}
$prevlink .= "offset=" . ($_GET["offset"] + $pp);
$nextlink .= "offset=" . ($_GET["offset"] - $pp);
if ($start >= $pp) {
$s .= "<span style='float:right'><a href='$nextlink'>NEXT >></a></span>";
}
if (db_num_entries($bid)-($start + $pp) > 0) {
$s .= "<a href='$prevlink'><< PREVIOUS</a>";
}
}
}
// removed this since i don't need the permalink to be displayed with the GT mod
/*if(class_exists('get_gt_by_style')) {
$s = preg_replace('/\{GT:(.+?)\}(.*?)\{\/GT\}/ei', "get_gt_by_style(\$gt, "\$1", "\$2")", $s);
}*/
return $s;
}
if(!empty($content["all"]) && !(strpos($content["all"],'{BLOG')===false))
{
// Style
$content["all"] = preg_replace('/\{BLOG:(.+?)\}/ei', "bm_render_blog("$1")", $content["all"]);
}
?>
vergesst nicht das "initializeLightbox();" im content.article.inc.php immer zu aufrufen, den diese version nützt mootools und nicht moo.fx