Added server side image map support.
This commit is contained in:
parent
f30cf41f86
commit
adb80bad9e
1 changed files with 10 additions and 3 deletions
|
@ -5,8 +5,11 @@ use Misuzu\Parsers\BBCode\BBCodeTag;
|
||||||
|
|
||||||
final class ImageTag extends BBCodeTag {
|
final class ImageTag extends BBCodeTag {
|
||||||
public function parseText(string $text): string {
|
public function parseText(string $text): string {
|
||||||
return preg_replace_callback("/\[img\]((?:https?:)?\/\/.+?)\[\/img\]/", function ($matches) {
|
return preg_replace_callback("/\[(img|imgmap)\]((?:https?:)?\/\/.+?)\[\/(img|imgmap)\]/", function($matches) {
|
||||||
$url = parse_url($matches[1]);
|
if($matches[1] !== $matches[3])
|
||||||
|
return $matches[0];
|
||||||
|
|
||||||
|
$url = parse_url($matches[2]);
|
||||||
|
|
||||||
if(!empty($url['scheme']) && !in_array(mb_strtolower($url['scheme']), ['http', 'https'], true))
|
if(!empty($url['scheme']) && !in_array(mb_strtolower($url['scheme']), ['http', 'https'], true))
|
||||||
return $matches[0];
|
return $matches[0];
|
||||||
|
@ -17,7 +20,11 @@ final class ImageTag extends BBCodeTag {
|
||||||
// $matches[1]
|
// $matches[1]
|
||||||
// );
|
// );
|
||||||
|
|
||||||
return sprintf('<img src="%1$s" alt="%1$s" style="max-width:100%%;max-height:900px;">', $matches[1]);
|
return sprintf(
|
||||||
|
'<img src="%1$s" alt="%1$s" style="max-width:100%%;max-height:900px;"%2$s>',
|
||||||
|
$matches[2],
|
||||||
|
$matches[1] === 'imgmap' ? ' ismap' : '',
|
||||||
|
);
|
||||||
}, $text);
|
}, $text);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue