silence
Well-known member
I'm doing as specified by this thread, except going into the nitty gritty of it:
http://xenforo.com/community/threads/bit-of-an-immature-request.42852/
So I've extended XenForo_BbCode_Formatter_Base and am doing the following:
However, I can't for the life of me figure this out! I get this in my posts:
Should I summon the gods of Zeus or...
http://xenforo.com/community/threads/bit-of-an-immature-request.42852/
So I've extended XenForo_BbCode_Formatter_Base and am doing the following:
PHP:
<?php
class GreenText_BbCode_Formatter_Base extends XFCP_GreenText_BbCode_Formatter_Base
{
public function filterString($string, array $rendererStates)
{
$parent = parent::filterString($string, $rendererStates);
$pattern = "/(\n|^)>(.*?)(\n|$)/";
if (preg_match($pattern, $string))
{
$replacement = '<span style="color: #789922">$i</span>';
$string = nl2br(preg_replace($pattern, $replacement, $string));
Zend_Debug::dump($string);
}
return $string;
}
}
However, I can't for the life of me figure this out! I get this in my posts:
Should I summon the gods of Zeus or...