Contao\Message::getFlashBagKey PHP Метод

getFlashBagKey() защищенный статический Метод

Return the flash bag key
protected static getFlashBagKey ( string $strType, string | null $strScope = TL_MODE ) : string
$strType string The message type
$strScope string | null The message scope
Результат string The flash bag key
    protected static function getFlashBagKey($strType, $strScope = TL_MODE)
    {
        return 'contao.' . $strScope . '.' . strtolower(str_replace('TL_', '', $strType));
    }