mirror of
https://github.com/kevachat/webapp.git
synced 2025-01-25 14:04:14 +00:00
remove deprecated methods
This commit is contained in:
parent
c16c071952
commit
4063fabf30
@ -52,20 +52,6 @@ class AppExtension extends AbstractExtension
|
|||||||
'mentionToMarkdown'
|
'mentionToMarkdown'
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
new TwigFilter(
|
|
||||||
'url_to_html',
|
|
||||||
[
|
|
||||||
$this,
|
|
||||||
'urlToHtml'
|
|
||||||
]
|
|
||||||
),
|
|
||||||
new TwigFilter(
|
|
||||||
'mention_to_html',
|
|
||||||
[
|
|
||||||
$this,
|
|
||||||
'mentionToHtml'
|
|
||||||
]
|
|
||||||
),
|
|
||||||
new TwigFilter(
|
new TwigFilter(
|
||||||
'keva_namespace_value',
|
'keva_namespace_value',
|
||||||
[
|
[
|
||||||
@ -184,28 +170,6 @@ class AppExtension extends AbstractExtension
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function urlToHtml(
|
|
||||||
string $text
|
|
||||||
): string
|
|
||||||
{
|
|
||||||
return preg_replace(
|
|
||||||
'~(https?://(?:www\.)?[^\(\s\)]+)~i',
|
|
||||||
'<a href="$1">$1</a>',
|
|
||||||
$text
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function mentionToHtml(
|
|
||||||
string $text
|
|
||||||
): string
|
|
||||||
{
|
|
||||||
return preg_replace(
|
|
||||||
'~@([A-z0-9]{64})~i',
|
|
||||||
'<a href="#$1">@$1</a>',
|
|
||||||
$text
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
private function plural(int $number, array $texts)
|
private function plural(int $number, array $texts)
|
||||||
{
|
{
|
||||||
$cases = [2, 0, 1, 1, 1, 2];
|
$cases = [2, 0, 1, 1, 1, 2];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user