Backend\Modules\Users\Widgets\Statistics::parse PHP Method

parse() private method

Parse into template
private parse ( )
    private function parse()
    {
        // get the logged in user
        $authenticatedUser = BackendAuthentication::getUser();
        // check if we need to show the password strength and parse the label
        $this->tpl->assign('showPasswordStrength', $authenticatedUser->getSetting('password_strength') !== 'strong');
        $this->tpl->assign('passwordStrengthLabel', BL::lbl($authenticatedUser->getSetting('password_strength')));
    }