Contao\Session::getSessionBagKey PHP 메소드

getSessionBagKey() 개인적인 메소드

Gets the correct session bag key depending on the Contao environment
private getSessionBagKey ( ) : string
리턴 string
    private function getSessionBagKey()
    {
        switch (TL_MODE) {
            case 'BE':
                return 'contao_backend';
            case 'FE':
                return 'contao_frontend';
            default:
                return 'attributes';
        }
    }