Skip to content

Commit

Permalink
IBX-8805: Dropped deprecated Twig Functions&Filters (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
ViniTou authored Nov 7, 2024
1 parent 533ac84 commit ef174e2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 26 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,24 +32,6 @@ public function __construct(
public function getFilters(): array
{
return [
new TwigFilter(
'ez_richtext_to_html5',
[$this, 'richTextToHtml5'],
[
'is_safe' => ['html'],
'deprecated' => '4.0',
'alternative' => 'ibexa_richtext_to_html5',
]
),
new TwigFilter(
'ez_richtext_to_html5_edit',
[$this, 'richTextToHtml5Edit'],
[
'is_safe' => ['html'],
'deprecated' => '4.0',
'alternative' => 'ibexa_richtext_to_html5_edit',
]
),
new TwigFilter(
'ibexa_richtext_to_html5',
[$this, 'richTextToHtml5'],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,6 @@ public function getFunctions(): array
'ibexa_richtext_youtube_extract_id',
[$this, 'extractId']
),
new TwigFunction(
'ez_richtext_youtube_extract_id',
[$this, 'extractId'],
[
'deprecated' => '4.0',
'alternative' => 'ibexa_richtext_youtube_extract_id',
]
),
];
}

Expand Down

0 comments on commit ef174e2

Please sign in to comment.