2020-01-26 13:19:35 +00:00
|
|
|
<?php declare(strict_types=1);
|
2019-08-07 14:53:59 -05:00
|
|
|
|
2007-07-08 19:57:57 +00:00
|
|
|
|
2014-04-29 17:45:13 -04:00
|
|
|
/**
|
|
|
|
* Class Emoticons
|
|
|
|
*/
|
2019-05-28 17:59:38 +01:00
|
|
|
class Emoticons extends FormatterExtension
|
|
|
|
{
|
|
|
|
public function format(string $text): string
|
|
|
|
{
|
|
|
|
$data_href = get_base_href();
|
|
|
|
$text = preg_replace("/:([a-z]*?):/s", "<img src='$data_href/ext/emoticons/default/\\1.gif'>", $text);
|
|
|
|
return $text;
|
|
|
|
}
|
2007-07-08 19:57:57 +00:00
|
|
|
|
2019-05-28 17:59:38 +01:00
|
|
|
public function strip(string $text): string
|
|
|
|
{
|
|
|
|
return $text;
|
|
|
|
}
|
2007-07-08 19:57:57 +00:00
|
|
|
}
|