Quote:
Originally Posted by kh99
Oh, right, I forgot about the fact that it has to be able to go back and forth between bbcode and html. There's a file includes/class_wysiwygparser.php that goes from html to bbcode, and it uses the <font> tag instead of the font-size attribute. So you could either change your replacement to use the font tag (which I know isn't the way it's done these days), or else figure out how to change the code in class_wysiwygparser.php. I only glanced at it, but there's a function parse_style_attribute(), and it currently doesn't parse out the font size. You might be able to add a line to the $searchlist array to make it find the font size and insert a size tag for it. Probably something like:
Code:
array('tag' => 'size', 'option' => true, 'regex' => '#font-size:\s*([0-9]+px;?)#i', 'match' => 1)
then you'd also need code to convert the matched text to your font number. If this isn't something you can do, I'll give it a try later.
|
It's beyond my knowledge

Thank you for your time! I'll be waiting.
--------------- Added 23 Apr 2015 at 15:47 ---------------
Btw, my vb version is 3.8.8 and i don't see a file named class_wysiwygparser.php. Maybe it's a vb 4.x file? There is file named functions_wysiwyg.php though.
Is this the related section?
PHP Code:
// ###################### Start WYSIWYG_fontparser #######################
function parse_wysiwyg_font($fontoptions, $text)
{
$tags = array(
'font' => 'face=',
'size' => 'size=',
'color' => 'color='
);
$prependtags = '';
$appendtags = '';
$fontoptionlen = strlen($fontoptions);
foreach ($tags AS $vbcode => $locate)
{
$optionvalue = parse_wysiwyg_tag_attribute($locate, $fontoptions);
if ($optionvalue)
{
$vbcode = strtoupper($vbcode);
$prependtags .= "[$vbcode=$optionvalue]";
$appendtags = "[/$vbcode]$appendtags";
}
}
parse_style_attribute($fontoptions, $prependtags, $appendtags);
return $prependtags . parse_wysiwyg_recurse('font', $text, 'parse_wysiwyg_font') . $appendtags;
}