1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-11 00:54:49 +02:00

Convert images back to bbcode when using TinyMce to keep image src urls dynamic. Parse bbcode inside [html] in toHtml()

This commit is contained in:
Cameron
2017-12-27 12:28:29 -08:00
parent b1a2e65a9b
commit 66cb38cb85
3 changed files with 82 additions and 19 deletions

View File

@@ -70,7 +70,7 @@ class bb_img extends e_bb_base
// $resize = "&w=".$w; // Always resize - otherwise the thumbnailer returns nothing.
// $parmStr = implode(" ",$p);
// print_a($imgParms);
// $url = e107::getParser()->thumbUrl($code_text, $resize);
@@ -132,8 +132,10 @@ class bb_img extends e_bb_base
}
$imgParms['title'] = $imgParms['alt'] ;
$imgParms['class'] = "img-rounded rounded bbcode ".e107::getBB()->getClass('img');; // This will be overridden if a new class is specified
$class = !empty($imgParms['class']) ? ' '.$imgParms['class'] : '';
$imgParms['class'] = "img-rounded rounded bbcode ".e107::getBB()->getClass('img').$class; // This will be overridden if a new class is specified
if($mode == 'string')
{
@@ -165,7 +167,7 @@ class bb_img extends e_bb_base
}
var_dump($code_text);
if (preg_match("#\.php\?.*#",$code_text)){return "";} //XXX Breaks MediaManager Images, so do it after mediaManager check.