mirror of
https://github.com/e107inc/e107.git
synced 2025-02-24 16:52:43 +01:00
62 lines
1.7 KiB
BlitzBasic
62 lines
1.7 KiB
BlitzBasic
global $pref;
|
|
if (preg_match("#\.php\?.*#",$code_text)){return "";}
|
|
global $IMAGES_DIRECTORY, $FILES_DIRECTORY, $e107;
|
|
$search = array('"', '{E_IMAGE}', '{E_FILE}', '{e_IMAGE}', '{e_FILE}');
|
|
$replace = array(''', $e107->base_path.$IMAGES_DIRECTORY, $e107->base_path.$FILES_DIRECTORY, $e107->base_path.$IMAGES_DIRECTORY, $e107->base_path.$FILES_DIRECTORY);
|
|
$code_text = str_replace($search, $replace, $code_text);
|
|
unset($imgParms);
|
|
$imgParms['class']="bbcode";
|
|
$imgParms['alt']='';
|
|
$imgParms['style']="vertical-align:middle; border:0";
|
|
|
|
$code_text = $tp -> toAttribute($code_text);
|
|
|
|
if($parm) {
|
|
$parm = preg_replace('#onerror *=#i','',$parm);
|
|
$parm = str_replace("amp;", "&", $parm);
|
|
parse_str($parm,$tmp);
|
|
foreach($tmp as $p => $v) {
|
|
$imgParms[$p]=$v;
|
|
}
|
|
}
|
|
$parmStr="";
|
|
foreach($imgParms as $k => $v) {
|
|
$parmStr .= $tp -> toAttribute($k)."='".$tp -> toAttribute($v)."' ";
|
|
}
|
|
|
|
|
|
if((strpos($code_text,'../') === FALSE) && file_exists(e_IMAGE."newspost_images/".$code_text))
|
|
{
|
|
$code_text = e_IMAGE."newspost_images/".$code_text;
|
|
}
|
|
|
|
if (!$postID) {
|
|
return "<img src='".$code_text."' {$parmStr} />";
|
|
} else {
|
|
if(strstr($postID,'class:')) {
|
|
$uc = substr($postID,6);
|
|
}
|
|
if ($pref['image_post']) {
|
|
if(!isset($uc) || ($uc == '')) {
|
|
if (!function_exists('e107_userGetuserclass')) {
|
|
require_once(e_HANDLER.'user_func.php');
|
|
}
|
|
$uc = e107_userGetuserclass($postID);
|
|
}
|
|
if (check_class($pref['image_post_class'],$uc)) {
|
|
return "<img src='".$code_text."' {$parmStr} />";
|
|
}
|
|
else
|
|
{
|
|
return ($pref['image_post_disabled_method'] ? "[ image disabled ]" : "Image: $code_text");
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if ($pref['image_post_disabled_method']) {
|
|
return '[ image disabled ]';
|
|
} else {
|
|
return "Image: $code_text";
|
|
}
|
|
}
|
|
} |