HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: //usr/share/phpmyadmin/libraries/classes/Twig/MessageExtension.php
<?php

declare(strict_types=1);

namespace PhpMyAdmin\Twig;

use PhpMyAdmin\Message;
use Twig\Extension\AbstractExtension;
use Twig\TwigFilter;

class MessageExtension extends AbstractExtension
{
    /**
     * Returns a list of filters to add to the existing list.
     *
     * @return TwigFilter[]
     */
    public function getFilters()
    {
        return [
            new TwigFilter(
                'notice',
                static function (string $string) {
                    return Message::notice($string)->getDisplay();
                },
                ['is_safe' => ['html']]
            ),
            new TwigFilter(
                'error',
                static function (string $string) {
                    return Message::error($string)->getDisplay();
                },
                ['is_safe' => ['html']]
            ),
            new TwigFilter(
                'raw_success',
                static function (string $string) {
                    return Message::rawSuccess($string)->getDisplay();
                },
                ['is_safe' => ['html']]
            ),
        ];
    }
}