Mercurial > owls
diff Includes/Bbcodeparser.inc.php @ 2:ab74e95a8040
added display of broken nodes; Header and Footer in Owls.php now; added logos
author | "Meillo r e t u r n s <meillo@marmaro.de>" |
---|---|
date | Thu, 07 Dec 2006 21:04:30 +0100 |
parents | 3021ce32ee14 |
children | 2672cd855fa2 |
line wrap: on
line diff
--- a/Includes/Bbcodeparser.inc.php Sun Dec 03 22:32:33 2006 +0100 +++ b/Includes/Bbcodeparser.inc.php Thu Dec 07 21:04:30 2006 +0100 @@ -9,6 +9,11 @@ */ + define('SMILIE_DIR', 'Smilies/'); // path to smilies + + + + function parse_quote1($textinput,$level = 1) { // ohne Quelle $pattern = '#\[quote\](((?R)|(.*))*)\[/quote\]#isUe'; $replacement = "'<br />[nl]<span class=\"quote0\">Zitat:</span>[nl]<div class=\"quote1\">[nl]'.parse_quote1('$1', @@ -25,8 +30,6 @@ } function smilies($text) { - $smilieDir = 'Pics/Smilies/'; // path to smilies - $smilies = array( ':-)' => 'Smile.gif', ':)' => 'Smile.gif', ';-)' => 'Wink.gif', @@ -41,14 +44,14 @@ ':-S' => 'Dontknow.gif', ':dontknow:' => 'Dontknow.gif', ':-@' => 'Angry.gif', - ':cool:' => 'Cool.gif', - '(H)' => 'Cool.gif', + ':cool:' => 'Cool.gif', + 'B-)' => 'Cool.gif', '%-)' => 'Crosseyed.gif', '%-(' => 'Crosseyed.gif', ':rolleyes:' => 'Rolleyes.gif', ':eek:' => 'Shocked.gif'); while(list($key, $val) = each($smilies)) { - $text = str_replace($key,'[img]'.$smilieDir.$val.'[/img]',$text); + $text = str_replace($key,'[img]'. SMILIE_DIR . $val .'[/img]', $text); } return $text; }