From: Matthias Schmidt Date: Wed, 6 Apr 2016 07:26:51 +0000 (+0200) Subject: Copy User's property-read to UserProfile X-Git-Tag: 3.0.0_Beta_1~1974 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=28f5eb3ca0ea61ec7b16a75beb459638dd4f10a6;p=GitHub%2FWoltLab%2FWCF.git Copy User's property-read to UserProfile … as UserProfile is one of the frequently used classes. --- diff --git a/wcfsetup/install/files/lib/data/user/UserProfile.class.php b/wcfsetup/install/files/lib/data/user/UserProfile.class.php index e576a6eec3..6c303c5b14 100644 --- a/wcfsetup/install/files/lib/data/user/UserProfile.class.php +++ b/wcfsetup/install/files/lib/data/user/UserProfile.class.php @@ -29,6 +29,50 @@ use wcf\util\StringUtil; * @package com.woltlab.wcf * @subpackage data.user * @category Community Framework + * + * @property-read integer $userID + * @property-read string $username + * @property-read string $email + * @property-read string $password + * @property-read string $accessToken + * @property-read integer $languageID + * @property-read string $registrationDate + * @property-read integer $styleID + * @property-read integer $banned + * @property-read string $banReason + * @property-read integer $banExpires + * @property-read integer $activationCode + * @property-read integer $lastLostPasswordRequestTime + * @property-read string $lostPasswordKey + * @property-read integer $lastUsernameChange + * @property-read string $newEmail + * @property-read string $oldUsername + * @property-read integer $quitStarted + * @property-read integer $reactivationCode + * @property-read string $registrationIpAddress + * @property-read integer|null $avatarID + * @property-read integer $disableAvatar + * @property-read string $disableAvatarReason + * @property-read integer $disableAvatarExpires + * @property-read integer $enableGravatar + * @property-read string $gravatarFileExtension + * @property-read string $signature + * @property-read integer $signatureEnableBBCodes + * @property-read integer $signatureEnableHtml + * @property-read integer $signatureEnableSmilies + * @property-read integer $disableSignature + * @property-read string $disableSignatureReason + * @property-read integer $disableSignatureExpires + * @property-read integer $lastActivityTime + * @property-read integer $profileHits + * @property-read integer|null $rankID + * @property-read string $userTitle + * @property-read integer|null $userOnlineGroupID + * @property-read integer $activityPoints + * @property-read string $notificationMailToken + * @property-read string $authData + * @property-read integer $likesReceived + * @property-read string $socialNetworkPrivacySettings */ class UserProfile extends DatabaseObjectDecorator implements IBreadcrumbProvider { /**