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));
    }