From c032049ef971efe93e2404f120b600913d1732b4 Mon Sep 17 00:00:00 2001 From: Marcel Werk Date: Wed, 15 Jun 2016 11:21:37 +0200 Subject: [PATCH] Renamed WCF to WSC / Removed obsolete phpdoc tags --- .gitignore | 2 +- CHANGELOG.md | 4 ++-- constants.php | 3 +-- files/lib/data/conversation/Conversation.class.php | 4 +--- files/lib/data/conversation/ConversationAction.class.php | 4 +--- files/lib/data/conversation/ConversationEditor.class.php | 4 +--- files/lib/data/conversation/ConversationList.class.php | 4 +--- .../data/conversation/ConversationParticipantList.class.php | 4 +--- files/lib/data/conversation/FeedConversation.class.php | 4 +--- files/lib/data/conversation/FeedConversationList.class.php | 4 +--- files/lib/data/conversation/UserConversationList.class.php | 4 +--- files/lib/data/conversation/ViewableConversation.class.php | 4 +--- .../lib/data/conversation/label/ConversationLabel.class.php | 4 +--- .../conversation/label/ConversationLabelAction.class.php | 4 +--- .../conversation/label/ConversationLabelEditor.class.php | 4 +--- .../data/conversation/label/ConversationLabelList.class.php | 4 +--- .../data/conversation/message/ConversationMessage.class.php | 4 +--- .../message/ConversationMessageAction.class.php | 4 +--- .../message/ConversationMessageEditor.class.php | 4 +--- .../conversation/message/ConversationMessageList.class.php | 4 +--- .../message/SearchResultConversationMessage.class.php | 4 +--- .../message/SearchResultConversationMessageList.class.php | 4 +--- .../SimplifiedViewableConversationMessageList.class.php | 4 +--- .../message/ViewableConversationMessage.class.php | 4 +--- .../message/ViewableConversationMessageList.class.php | 4 +--- .../log/ConversationLogModificationLogList.class.php | 4 +--- .../log/ViewableConversationModificationLog.class.php | 4 +--- files/lib/form/ConversationAddForm.class.php | 4 +--- files/lib/page/ConversationFeedPage.class.php | 4 +--- files/lib/page/ConversationListPage.class.php | 4 +--- files/lib/page/ConversationPage.class.php | 4 +--- .../ConversationMessageAttachmentObjectType.class.php | 4 +--- .../system/cache/runtime/ConversationRuntimeCache.class.php | 6 ++---- .../cache/runtime/UserConversationRuntimeCache.class.php | 6 ++---- .../clipboard/action/ConversationClipboardAction.class.php | 4 +--- files/lib/system/conversation/ConversationHandler.class.php | 4 +--- .../listener/ConversationUserActionRenameListener.class.php | 4 +--- .../event/listener/ConversationUserMergeListener.class.php | 4 +--- .../importer/ConversationAttachmentImporter.class.php | 4 +--- files/lib/system/importer/ConversationImporter.class.php | 4 +--- .../lib/system/importer/ConversationLabelImporter.class.php | 4 +--- .../system/importer/ConversationMessageImporter.class.php | 4 +--- .../lib/system/importer/ConversationUserImporter.class.php | 4 +--- .../ConversationModificationLogHandler.class.php | 6 ++---- .../message/quote/ConversationMessageQuoteHandler.class.php | 4 +--- ...onversationMessageModerationQueueReportHandler.class.php | 4 +--- .../page/handler/ConversationListPageHandler.class.php | 6 ++---- .../handler/DefaultConversationRelatedPageHandler.class.php | 6 ++---- .../TConversationOnlineLocationPageHandler.class.php | 6 ++---- files/lib/system/search/ConversationMessageSearch.class.php | 4 +--- .../stat/ConversationMessageStatDailyHandler.class.php | 4 +--- .../lib/system/stat/ConversationStatDailyHandler.class.php | 4 +--- .../ConversationMessageUserNotificationEvent.class.php | 4 +--- .../event/ConversationUserNotificationEvent.class.php | 4 +--- .../ConversationMessageUserNotificationObject.class.php | 4 +--- .../object/ConversationUserNotificationObject.class.php | 4 +--- .../ConversationMessageNotificationObjectType.class.php | 4 +--- .../type/ConversationNotificationObjectType.class.php | 4 +--- .../worker/ConversationMessageRebuildDataWorker.class.php | 4 +--- .../system/worker/ConversationRebuildDataWorker.class.php | 4 +--- 60 files changed, 67 insertions(+), 182 deletions(-) diff --git a/.gitignore b/.gitignore index d9b96dd..78788ea 100644 --- a/.gitignore +++ b/.gitignore @@ -44,7 +44,7 @@ nbactions.xml *.imlworkspace .xml -# Community Framework +# WoltLab Suite # Ignore packages build directly in the workspace. They can however be added manually via git add, if wanted. *.tar *.tar.gz \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 5bdd369..ebeae33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ # Changelog -## 2.2 +## 3.0 -### 2.2.0 Alpha 1 (XXXX-YY-ZZ) +### 3.0.0 Alpha 1 (XXXX-YY-ZZ) * Only search active conversation when using search bar in a conversation. * Filter option for conversation participants on conversation list page. diff --git a/constants.php b/constants.php index b20d422..dd1e0fd 100644 --- a/constants.php +++ b/constants.php @@ -5,8 +5,7 @@ * @author Matthias Schmidt * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @category Community Framework + * @package WoltLabSuite\Core */ // option constants diff --git a/files/lib/data/conversation/Conversation.class.php b/files/lib/data/conversation/Conversation.class.php index 6b2dc13..05756ab 100644 --- a/files/lib/data/conversation/Conversation.class.php +++ b/files/lib/data/conversation/Conversation.class.php @@ -19,9 +19,7 @@ use wcf\util\ArrayUtil; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage data.conversation - * @category Community Framework + * @package WoltLabSuite\Core\Data\Conversation * * @property-read integer $conversationID * @property-read string $subject diff --git a/files/lib/data/conversation/ConversationAction.class.php b/files/lib/data/conversation/ConversationAction.class.php index 487e316..150f268 100644 --- a/files/lib/data/conversation/ConversationAction.class.php +++ b/files/lib/data/conversation/ConversationAction.class.php @@ -25,9 +25,7 @@ use wcf\system\WCF; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage data.conversation - * @category Community Framework + * @package WoltLabSuite\Core\Data\Conversation * * @method ConversationEditor[] getObjects() * @method ConversationEditor getSingleObject() diff --git a/files/lib/data/conversation/ConversationEditor.class.php b/files/lib/data/conversation/ConversationEditor.class.php index 97d26c3..c95c035 100644 --- a/files/lib/data/conversation/ConversationEditor.class.php +++ b/files/lib/data/conversation/ConversationEditor.class.php @@ -11,9 +11,7 @@ use wcf\system\WCF; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage data.conversation - * @category Community Framework + * @package WoltLabSuite\Core\Data\Conversation * * @method Conversation getDecoratedObject() * @mixin Conversation diff --git a/files/lib/data/conversation/ConversationList.class.php b/files/lib/data/conversation/ConversationList.class.php index 3ade625..88c70de 100644 --- a/files/lib/data/conversation/ConversationList.class.php +++ b/files/lib/data/conversation/ConversationList.class.php @@ -8,9 +8,7 @@ use wcf\data\DatabaseObjectList; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage data.conversation - * @category Community Framework + * @package WoltLabSuite\Core\Data\Conversation * * @method Conversation current() * @method Conversation[] getObjects() diff --git a/files/lib/data/conversation/ConversationParticipantList.class.php b/files/lib/data/conversation/ConversationParticipantList.class.php index 6c200d7..31689a1 100644 --- a/files/lib/data/conversation/ConversationParticipantList.class.php +++ b/files/lib/data/conversation/ConversationParticipantList.class.php @@ -10,9 +10,7 @@ use wcf\system\WCF; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage data.conversation - * @category Community Framework + * @package WoltLabSuite\Core\Data\Conversation */ class ConversationParticipantList extends UserProfileList { /** diff --git a/files/lib/data/conversation/FeedConversation.class.php b/files/lib/data/conversation/FeedConversation.class.php index 042fe93..16c2808 100644 --- a/files/lib/data/conversation/FeedConversation.class.php +++ b/files/lib/data/conversation/FeedConversation.class.php @@ -10,9 +10,7 @@ use wcf\system\request\LinkHandler; * @author Alexander Ebert * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage data.conversation - * @category Community Framework + * @package WoltLabSuite\Core\Data\Conversation * * @method Conversation getDecoratedObject() * @mixin Conversation diff --git a/files/lib/data/conversation/FeedConversationList.class.php b/files/lib/data/conversation/FeedConversationList.class.php index bcbbdcc..90a209b 100644 --- a/files/lib/data/conversation/FeedConversationList.class.php +++ b/files/lib/data/conversation/FeedConversationList.class.php @@ -8,9 +8,7 @@ use wcf\system\WCF; * @author Alexander Ebert * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage data.conversation - * @category Community Framework + * @package WoltLabSuite\Core\Data\Conversation * * @method FeedConversation current() * @method FeedConversation[] getObjects() diff --git a/files/lib/data/conversation/UserConversationList.class.php b/files/lib/data/conversation/UserConversationList.class.php index 6fbe76f..3251253 100644 --- a/files/lib/data/conversation/UserConversationList.class.php +++ b/files/lib/data/conversation/UserConversationList.class.php @@ -12,9 +12,7 @@ use wcf\system\WCF; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage data.conversation - * @category Community Framework + * @package WoltLabSuite\Core\Data\Conversation * * @method ViewableConversation current() * @method ViewableConversation[] getObjects() diff --git a/files/lib/data/conversation/ViewableConversation.class.php b/files/lib/data/conversation/ViewableConversation.class.php index 51559de..5bbecca 100644 --- a/files/lib/data/conversation/ViewableConversation.class.php +++ b/files/lib/data/conversation/ViewableConversation.class.php @@ -16,9 +16,7 @@ use wcf\system\WCF; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage data.conversation - * @category Community Framework + * @package WoltLabSuite\Core\Data\Conversation * * @method Conversation getDecoratedObject() * @mixin Conversation diff --git a/files/lib/data/conversation/label/ConversationLabel.class.php b/files/lib/data/conversation/label/ConversationLabel.class.php index 7c6ba80..e2ea6fb 100644 --- a/files/lib/data/conversation/label/ConversationLabel.class.php +++ b/files/lib/data/conversation/label/ConversationLabel.class.php @@ -9,9 +9,7 @@ use wcf\system\WCF; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage data.conversation.label - * @category Community Framework + * @package WoltLabSuite\Core\Data\Conversation\Label * * @property-read integer $labelID * @property-read integer $userID diff --git a/files/lib/data/conversation/label/ConversationLabelAction.class.php b/files/lib/data/conversation/label/ConversationLabelAction.class.php index d792819..97edc65 100644 --- a/files/lib/data/conversation/label/ConversationLabelAction.class.php +++ b/files/lib/data/conversation/label/ConversationLabelAction.class.php @@ -17,9 +17,7 @@ use wcf\util\StringUtil; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage data.conversation.label - * @category Community Framework + * @package WoltLabSuite\Core\Data\Conversation\Label * * @method ConversationLabel create() * @method ConversationLabelEditor[] getObjects() diff --git a/files/lib/data/conversation/label/ConversationLabelEditor.class.php b/files/lib/data/conversation/label/ConversationLabelEditor.class.php index 547b507..c6ddf4c 100644 --- a/files/lib/data/conversation/label/ConversationLabelEditor.class.php +++ b/files/lib/data/conversation/label/ConversationLabelEditor.class.php @@ -8,9 +8,7 @@ use wcf\data\DatabaseObjectEditor; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage data.conversation.label - * @category Community Framework + * @package WoltLabSuite\Core\Data\Conversation\Label * * @method ConversationLabel getDecoratedObject() * @mixin ConversationLabel diff --git a/files/lib/data/conversation/label/ConversationLabelList.class.php b/files/lib/data/conversation/label/ConversationLabelList.class.php index 9c0dd39..1a45b2b 100644 --- a/files/lib/data/conversation/label/ConversationLabelList.class.php +++ b/files/lib/data/conversation/label/ConversationLabelList.class.php @@ -8,9 +8,7 @@ use wcf\data\DatabaseObjectList; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage data.conversation.label - * @category Community Framework + * @package WoltLabSuite\Core\Data\Conversation\Label * * @method ConversationLabel current() * @method ConversationLabel[] getObjects() diff --git a/files/lib/data/conversation/message/ConversationMessage.class.php b/files/lib/data/conversation/message/ConversationMessage.class.php index 6d230c3..b38799c 100644 --- a/files/lib/data/conversation/message/ConversationMessage.class.php +++ b/files/lib/data/conversation/message/ConversationMessage.class.php @@ -18,9 +18,7 @@ use wcf\util\StringUtil; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage data.conversation.message - * @category Community Framework + * @package WoltLabSuite\Core\Data\Conversation\Message * * @property-read integer $messageID * @property-read integer $conversationID diff --git a/files/lib/data/conversation/message/ConversationMessageAction.class.php b/files/lib/data/conversation/message/ConversationMessageAction.class.php index dc5d825..15ac7c3 100644 --- a/files/lib/data/conversation/message/ConversationMessageAction.class.php +++ b/files/lib/data/conversation/message/ConversationMessageAction.class.php @@ -36,9 +36,7 @@ use wcf\util\StringUtil; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage data.conversation.message - * @category Community Framework + * @package WoltLabSuite\Core\Data\Conversation\Message * * @method ConversationMessageEditor[] getObjects() * @method ConversationMessageEditor getSingleObject() diff --git a/files/lib/data/conversation/message/ConversationMessageEditor.class.php b/files/lib/data/conversation/message/ConversationMessageEditor.class.php index 8f541b7..6901175 100644 --- a/files/lib/data/conversation/message/ConversationMessageEditor.class.php +++ b/files/lib/data/conversation/message/ConversationMessageEditor.class.php @@ -8,9 +8,7 @@ use wcf\data\DatabaseObjectEditor; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage data.conversation.message - * @category Community Framework + * @package WoltLabSuite\Core\Data\Conversation\Message * * @method ConversationMessage getDecoratedObject() * @mixin ConversationMessage diff --git a/files/lib/data/conversation/message/ConversationMessageList.class.php b/files/lib/data/conversation/message/ConversationMessageList.class.php index 09a517e..5a4b25b 100644 --- a/files/lib/data/conversation/message/ConversationMessageList.class.php +++ b/files/lib/data/conversation/message/ConversationMessageList.class.php @@ -8,9 +8,7 @@ use wcf\data\DatabaseObjectList; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage data.conversation.message - * @category Community Framework + * @package WoltLabSuite\Core\Data\Conversation\Message * * @method ConversationMessage current() * @method ConversationMessage[] getObjects() diff --git a/files/lib/data/conversation/message/SearchResultConversationMessage.class.php b/files/lib/data/conversation/message/SearchResultConversationMessage.class.php index 49faf3f..e50d34f 100644 --- a/files/lib/data/conversation/message/SearchResultConversationMessage.class.php +++ b/files/lib/data/conversation/message/SearchResultConversationMessage.class.php @@ -11,9 +11,7 @@ use wcf\system\search\SearchResultTextParser; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage data.conversation.message - * @category Community Framework + * @package WoltLabSuite\Core\Data\Conversation\Message * * @property-read string|null $subject */ diff --git a/files/lib/data/conversation/message/SearchResultConversationMessageList.class.php b/files/lib/data/conversation/message/SearchResultConversationMessageList.class.php index 3c7cb1e..cadc5aa 100644 --- a/files/lib/data/conversation/message/SearchResultConversationMessageList.class.php +++ b/files/lib/data/conversation/message/SearchResultConversationMessageList.class.php @@ -7,9 +7,7 @@ namespace wcf\data\conversation\message; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage data.conversation.message - * @category Community Framework + * @package WoltLabSuite\Core\Data\Conversation\Message * * @method SearchResultConversationMessage current() * @method SearchResultConversationMessage[] getObjects() diff --git a/files/lib/data/conversation/message/SimplifiedViewableConversationMessageList.class.php b/files/lib/data/conversation/message/SimplifiedViewableConversationMessageList.class.php index ab52590..a5fe51c 100644 --- a/files/lib/data/conversation/message/SimplifiedViewableConversationMessageList.class.php +++ b/files/lib/data/conversation/message/SimplifiedViewableConversationMessageList.class.php @@ -8,9 +8,7 @@ namespace wcf\data\conversation\message; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage data.conversation.message - * @category Community Framework + * @package WoltLabSuite\Core\Data\Conversation\Message */ class SimplifiedViewableConversationMessageList extends ViewableConversationMessageList { /** diff --git a/files/lib/data/conversation/message/ViewableConversationMessage.class.php b/files/lib/data/conversation/message/ViewableConversationMessage.class.php index a41bce0..52c980f 100644 --- a/files/lib/data/conversation/message/ViewableConversationMessage.class.php +++ b/files/lib/data/conversation/message/ViewableConversationMessage.class.php @@ -11,9 +11,7 @@ use wcf\system\cache\runtime\UserProfileRuntimeCache; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage data.conversation.message - * @category Community Framework + * @package WoltLabSuite\Core\Data\Conversation\Message * * @method ConversationMessage getDecoratedObject() * @mixin ConversationMessage diff --git a/files/lib/data/conversation/message/ViewableConversationMessageList.class.php b/files/lib/data/conversation/message/ViewableConversationMessageList.class.php index d8742c4..a70d63d 100644 --- a/files/lib/data/conversation/message/ViewableConversationMessageList.class.php +++ b/files/lib/data/conversation/message/ViewableConversationMessageList.class.php @@ -12,9 +12,7 @@ use wcf\system\message\embedded\object\MessageEmbeddedObjectManager; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage data.conversation.message - * @category Community Framework + * @package WoltLabSuite\Core\Data\Conversation\Message * * @method ViewableConversationMessage current() * @method ViewableConversationMessage[] getObjects() diff --git a/files/lib/data/modification/log/ConversationLogModificationLogList.class.php b/files/lib/data/modification/log/ConversationLogModificationLogList.class.php index f32fbb9..72c6568 100644 --- a/files/lib/data/modification/log/ConversationLogModificationLogList.class.php +++ b/files/lib/data/modification/log/ConversationLogModificationLogList.class.php @@ -10,9 +10,7 @@ use wcf\system\WCF; * @author Alexander Ebert * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage data.modification.log - * @category Community Framework + * @package WoltLabSuite\Core\Data\Modification\Log * * @method ViewableConversationModificationLog current() * @method ViewableConversationModificationLog[] getObjects() diff --git a/files/lib/data/modification/log/ViewableConversationModificationLog.class.php b/files/lib/data/modification/log/ViewableConversationModificationLog.class.php index 457ac8a..3611c5e 100644 --- a/files/lib/data/modification/log/ViewableConversationModificationLog.class.php +++ b/files/lib/data/modification/log/ViewableConversationModificationLog.class.php @@ -12,9 +12,7 @@ use wcf\system\WCF; * @author Alexander Ebert * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage data.modification.log - * @category Community Framework + * @package WoltLabSuite\Core\Data\Modification\Log * * @method ModificationLog getDecoratedObject() * @mixin ModificationLog diff --git a/files/lib/form/ConversationAddForm.class.php b/files/lib/form/ConversationAddForm.class.php index 6521dd2..2afc164 100644 --- a/files/lib/form/ConversationAddForm.class.php +++ b/files/lib/form/ConversationAddForm.class.php @@ -20,9 +20,7 @@ use wcf\util\StringUtil; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage form - * @category Community Framework + * @package WoltLabSuite\Core\Form */ class ConversationAddForm extends MessageForm { /** diff --git a/files/lib/page/ConversationFeedPage.class.php b/files/lib/page/ConversationFeedPage.class.php index ef62a93..46bf7f1 100644 --- a/files/lib/page/ConversationFeedPage.class.php +++ b/files/lib/page/ConversationFeedPage.class.php @@ -9,9 +9,7 @@ use wcf\system\WCF; * @author Alexander Ebert * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage page - * @category Community Framework + * @package WoltLabSuite\Core\Page */ class ConversationFeedPage extends AbstractFeedPage { /** diff --git a/files/lib/page/ConversationListPage.class.php b/files/lib/page/ConversationListPage.class.php index 38e54c8..cf81299 100644 --- a/files/lib/page/ConversationListPage.class.php +++ b/files/lib/page/ConversationListPage.class.php @@ -15,9 +15,7 @@ use wcf\util\ArrayUtil; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage page - * @category Community Framework + * @package WoltLabSuite\Core\Page * * @property UserConversationList $objectList */ diff --git a/files/lib/page/ConversationPage.class.php b/files/lib/page/ConversationPage.class.php index c95c6e7..25abb67 100644 --- a/files/lib/page/ConversationPage.class.php +++ b/files/lib/page/ConversationPage.class.php @@ -27,9 +27,7 @@ use wcf\util\StringUtil; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage page - * @category Community Framework + * @package WoltLabSuite\Core\Page * * @property ViewableConversationMessageList $objectList */ diff --git a/files/lib/system/attachment/ConversationMessageAttachmentObjectType.class.php b/files/lib/system/attachment/ConversationMessageAttachmentObjectType.class.php index 4c463ec..a9a44c9 100644 --- a/files/lib/system/attachment/ConversationMessageAttachmentObjectType.class.php +++ b/files/lib/system/attachment/ConversationMessageAttachmentObjectType.class.php @@ -12,9 +12,7 @@ use wcf\util\ArrayUtil; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage system.attachment - * @category Community Framework + * @package WoltLabSuite\Core\System\Attachment * * @method ConversationMessage getObject($objectID) */ diff --git a/files/lib/system/cache/runtime/ConversationRuntimeCache.class.php b/files/lib/system/cache/runtime/ConversationRuntimeCache.class.php index 8947fd9..f49dc30 100644 --- a/files/lib/system/cache/runtime/ConversationRuntimeCache.class.php +++ b/files/lib/system/cache/runtime/ConversationRuntimeCache.class.php @@ -9,10 +9,8 @@ use wcf\data\conversation\ConversationList; * @author Matthias Schmidt * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage system.cache.runtime - * @category Community Framework - * @since 2.2 + * @package WoltLabSuite\Core\System\Cache\Runtime + * @since 3.0 * * @method Conversation[] getCachedObjects() * @method Conversation getObject($objectID) diff --git a/files/lib/system/cache/runtime/UserConversationRuntimeCache.class.php b/files/lib/system/cache/runtime/UserConversationRuntimeCache.class.php index 8af48c0..fa6d1b4 100644 --- a/files/lib/system/cache/runtime/UserConversationRuntimeCache.class.php +++ b/files/lib/system/cache/runtime/UserConversationRuntimeCache.class.php @@ -10,10 +10,8 @@ use wcf\system\WCF; * @author Matthias Schmidt * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage system.cache.runtime - * @category Community Framework - * @since 2.2 + * @package WoltLabSuite\Core\System\Cache\Runtime + * @since 3.0 * * @method Conversation[] getCachedObjects() * @method Conversation getObject($objectID) diff --git a/files/lib/system/clipboard/action/ConversationClipboardAction.class.php b/files/lib/system/clipboard/action/ConversationClipboardAction.class.php index 0cbb082..0382530 100644 --- a/files/lib/system/clipboard/action/ConversationClipboardAction.class.php +++ b/files/lib/system/clipboard/action/ConversationClipboardAction.class.php @@ -12,9 +12,7 @@ use wcf\system\WCF; * @author Alexander Ebert * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage system.clipboard.action - * @category Community Framework + * @package WoltLabSuite\Core\System\Clipboard\Action */ class ConversationClipboardAction extends AbstractClipboardAction { /** diff --git a/files/lib/system/conversation/ConversationHandler.class.php b/files/lib/system/conversation/ConversationHandler.class.php index c7c2ee1..31b08ac 100644 --- a/files/lib/system/conversation/ConversationHandler.class.php +++ b/files/lib/system/conversation/ConversationHandler.class.php @@ -11,9 +11,7 @@ use wcf\system\WCF; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage system.conversation - * @category Community Framework + * @package WoltLabSuite\Core\System\Conversation */ class ConversationHandler extends SingletonFactory { /** diff --git a/files/lib/system/event/listener/ConversationUserActionRenameListener.class.php b/files/lib/system/event/listener/ConversationUserActionRenameListener.class.php index 97f8b1e..14a630a 100644 --- a/files/lib/system/event/listener/ConversationUserActionRenameListener.class.php +++ b/files/lib/system/event/listener/ConversationUserActionRenameListener.class.php @@ -7,9 +7,7 @@ namespace wcf\system\event\listener; * @author Alexander Ebert * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage system.event.listener - * @category Community Framework + * @package WoltLabSuite\Core\System\Event\Listener */ class ConversationUserActionRenameListener extends AbstractUserActionRenameListener { /** diff --git a/files/lib/system/event/listener/ConversationUserMergeListener.class.php b/files/lib/system/event/listener/ConversationUserMergeListener.class.php index 0a300d3..234ccfc 100644 --- a/files/lib/system/event/listener/ConversationUserMergeListener.class.php +++ b/files/lib/system/event/listener/ConversationUserMergeListener.class.php @@ -7,9 +7,7 @@ namespace wcf\system\event\listener; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage system.event.listener - * @category Community Framework + * @package WoltLabSuite\Core\System\Event\Listener */ class ConversationUserMergeListener extends AbstractUserMergeListener { /** diff --git a/files/lib/system/importer/ConversationAttachmentImporter.class.php b/files/lib/system/importer/ConversationAttachmentImporter.class.php index 1f79112..13da950 100644 --- a/files/lib/system/importer/ConversationAttachmentImporter.class.php +++ b/files/lib/system/importer/ConversationAttachmentImporter.class.php @@ -10,9 +10,7 @@ use wcf\data\object\type\ObjectTypeCache; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage system.importer - * @category Community Framework + * @package WoltLabSuite\Core\System\Importer */ class ConversationAttachmentImporter extends AbstractAttachmentImporter { /** diff --git a/files/lib/system/importer/ConversationImporter.class.php b/files/lib/system/importer/ConversationImporter.class.php index 70eb66f..432662d 100644 --- a/files/lib/system/importer/ConversationImporter.class.php +++ b/files/lib/system/importer/ConversationImporter.class.php @@ -9,9 +9,7 @@ use wcf\data\conversation\ConversationEditor; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage system.importer - * @category Community Framework + * @package WoltLabSuite\Core\System\Importer */ class ConversationImporter extends AbstractImporter { /** diff --git a/files/lib/system/importer/ConversationLabelImporter.class.php b/files/lib/system/importer/ConversationLabelImporter.class.php index bcf5826..4310e2f 100644 --- a/files/lib/system/importer/ConversationLabelImporter.class.php +++ b/files/lib/system/importer/ConversationLabelImporter.class.php @@ -9,9 +9,7 @@ use wcf\data\conversation\label\ConversationLabelAction; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage system.importer - * @category Community Framework + * @package WoltLabSuite\Core\System\Importer */ class ConversationLabelImporter extends AbstractImporter { /** diff --git a/files/lib/system/importer/ConversationMessageImporter.class.php b/files/lib/system/importer/ConversationMessageImporter.class.php index 21d3273..e1ace45 100644 --- a/files/lib/system/importer/ConversationMessageImporter.class.php +++ b/files/lib/system/importer/ConversationMessageImporter.class.php @@ -9,9 +9,7 @@ use wcf\data\conversation\message\ConversationMessageEditor; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage system.importer - * @category Community Framework + * @package WoltLabSuite\Core\System\Importer */ class ConversationMessageImporter extends AbstractImporter { /** diff --git a/files/lib/system/importer/ConversationUserImporter.class.php b/files/lib/system/importer/ConversationUserImporter.class.php index e9df068..8f3daae 100644 --- a/files/lib/system/importer/ConversationUserImporter.class.php +++ b/files/lib/system/importer/ConversationUserImporter.class.php @@ -8,9 +8,7 @@ use wcf\system\WCF; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage system.importer - * @category Community Framework + * @package WoltLabSuite\Core\System\Importer */ class ConversationUserImporter extends AbstractImporter { /** diff --git a/files/lib/system/log/modification/ConversationModificationLogHandler.class.php b/files/lib/system/log/modification/ConversationModificationLogHandler.class.php index 35fa89b..0e9de62 100644 --- a/files/lib/system/log/modification/ConversationModificationLogHandler.class.php +++ b/files/lib/system/log/modification/ConversationModificationLogHandler.class.php @@ -10,9 +10,7 @@ use wcf\data\user\UserList; * @author Alexander Ebert * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage system.log.modification - * @category Community Framework + * @package WoltLabSuite\Core\System\Log\Modification */ class ConversationModificationLogHandler extends AbstractModificationLogHandler { /** @@ -100,7 +98,7 @@ class ConversationModificationLogHandler extends AbstractModificationLogHandler * ids. * * @param integer[] $objectIDs - * @deprecated since 2.2, use deleteLogs() + * @deprecated 3.0, use deleteLogs() */ public function remove(array $objectIDs) { $this->deleteLogs($objectIDs); diff --git a/files/lib/system/message/quote/ConversationMessageQuoteHandler.class.php b/files/lib/system/message/quote/ConversationMessageQuoteHandler.class.php index 41d8e56..df7360d 100644 --- a/files/lib/system/message/quote/ConversationMessageQuoteHandler.class.php +++ b/files/lib/system/message/quote/ConversationMessageQuoteHandler.class.php @@ -9,9 +9,7 @@ use wcf\data\conversation\ConversationList; * @author Alexander Ebert * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage system.message.quote - * @category Community Framework + * @package WoltLabSuite\Core\System\Message\Quote */ class ConversationMessageQuoteHandler extends AbstractMessageQuoteHandler { /** diff --git a/files/lib/system/moderation/queue/report/ConversationMessageModerationQueueReportHandler.class.php b/files/lib/system/moderation/queue/report/ConversationMessageModerationQueueReportHandler.class.php index 1b3c57e..021383b 100644 --- a/files/lib/system/moderation/queue/report/ConversationMessageModerationQueueReportHandler.class.php +++ b/files/lib/system/moderation/queue/report/ConversationMessageModerationQueueReportHandler.class.php @@ -18,9 +18,7 @@ use wcf\system\WCF; * @author Alexander Ebert * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage system.moderation.queue - * @category Community Framework + * @package WoltLabSuite\Core\System\Moderation\Queue */ class ConversationMessageModerationQueueReportHandler extends AbstractModerationQueueHandler implements IModerationQueueReportHandler { /** diff --git a/files/lib/system/page/handler/ConversationListPageHandler.class.php b/files/lib/system/page/handler/ConversationListPageHandler.class.php index 867946a..1b4fb77 100644 --- a/files/lib/system/page/handler/ConversationListPageHandler.class.php +++ b/files/lib/system/page/handler/ConversationListPageHandler.class.php @@ -9,10 +9,8 @@ use wcf\system\WCF; * @author Matthias Schmidt * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage system.page.handler - * @category Community Framework - * @since 2.2 + * @package WoltLabSuite\Core\System\Page\Handler + * @since 3.0 */ class ConversationListPageHandler extends AbstractMenuPageHandler { /** @noinspection PhpMissingParentCallCommonInspection */ diff --git a/files/lib/system/page/handler/DefaultConversationRelatedPageHandler.class.php b/files/lib/system/page/handler/DefaultConversationRelatedPageHandler.class.php index d7144b8..e12843e 100644 --- a/files/lib/system/page/handler/DefaultConversationRelatedPageHandler.class.php +++ b/files/lib/system/page/handler/DefaultConversationRelatedPageHandler.class.php @@ -9,10 +9,8 @@ namespace wcf\system\page\handler; * @author Matthias Schmidt * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage system.page.handler - * @category Community Framework - * @since 2.2 + * @package WoltLabSuite\Core\System\Page\Handler + * @since 3.0 */ class DefaultConversationRelatedPageHandler extends AbstractMenuPageHandler implements IOnlineLocationPageHandler { use TConversationOnlineLocationPageHandler; diff --git a/files/lib/system/page/handler/TConversationOnlineLocationPageHandler.class.php b/files/lib/system/page/handler/TConversationOnlineLocationPageHandler.class.php index 70fc029..1d0eafc 100644 --- a/files/lib/system/page/handler/TConversationOnlineLocationPageHandler.class.php +++ b/files/lib/system/page/handler/TConversationOnlineLocationPageHandler.class.php @@ -11,10 +11,8 @@ use wcf\system\WCF; * @author Matthias Schmidt * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage system.page.handler - * @category Community Framework - * @since 2.2 + * @package WoltLabSuite\Core\System\Page\Handler + * @since 3.0 */ trait TConversationOnlineLocationPageHandler { use TOnlineLocationPageHandler; diff --git a/files/lib/system/search/ConversationMessageSearch.class.php b/files/lib/system/search/ConversationMessageSearch.class.php index e76d7b9..c50ac29 100644 --- a/files/lib/system/search/ConversationMessageSearch.class.php +++ b/files/lib/system/search/ConversationMessageSearch.class.php @@ -14,9 +14,7 @@ use wcf\system\WCF; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage system.search - * @category Community Framework + * @package WoltLabSuite\Core\System\Search */ class ConversationMessageSearch extends AbstractSearchableObjectType { /** diff --git a/files/lib/system/stat/ConversationMessageStatDailyHandler.class.php b/files/lib/system/stat/ConversationMessageStatDailyHandler.class.php index 8f2052b..957a85d 100644 --- a/files/lib/system/stat/ConversationMessageStatDailyHandler.class.php +++ b/files/lib/system/stat/ConversationMessageStatDailyHandler.class.php @@ -7,9 +7,7 @@ namespace wcf\system\stat; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage system.stat - * @category Community Framework + * @package WoltLabSuite\Core\System\Stat */ class ConversationMessageStatDailyHandler extends AbstractStatDailyHandler { /** diff --git a/files/lib/system/stat/ConversationStatDailyHandler.class.php b/files/lib/system/stat/ConversationStatDailyHandler.class.php index 29fcdc6..e2f695e 100644 --- a/files/lib/system/stat/ConversationStatDailyHandler.class.php +++ b/files/lib/system/stat/ConversationStatDailyHandler.class.php @@ -7,9 +7,7 @@ namespace wcf\system\stat; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage system.stat - * @category Community Framework + * @package WoltLabSuite\Core\System\Stat */ class ConversationStatDailyHandler extends AbstractStatDailyHandler { /** diff --git a/files/lib/system/user/notification/event/ConversationMessageUserNotificationEvent.class.php b/files/lib/system/user/notification/event/ConversationMessageUserNotificationEvent.class.php index 4f369dd..ac1e48b 100644 --- a/files/lib/system/user/notification/event/ConversationMessageUserNotificationEvent.class.php +++ b/files/lib/system/user/notification/event/ConversationMessageUserNotificationEvent.class.php @@ -9,9 +9,7 @@ use wcf\system\user\notification\object\ConversationMessageUserNotificationObjec * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage system.user.notification.event - * @category Community Framework + * @package WoltLabSuite\Core\System\User\Notification\Event * * @method ConversationMessageUserNotificationObject getUserNotificationObject() */ diff --git a/files/lib/system/user/notification/event/ConversationUserNotificationEvent.class.php b/files/lib/system/user/notification/event/ConversationUserNotificationEvent.class.php index e17bddb..df2f733 100644 --- a/files/lib/system/user/notification/event/ConversationUserNotificationEvent.class.php +++ b/files/lib/system/user/notification/event/ConversationUserNotificationEvent.class.php @@ -9,9 +9,7 @@ use wcf\system\user\notification\object\ConversationUserNotificationObject; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage system.user.notification.event - * @category Community Framework + * @package WoltLabSuite\Core\System\User\Notification\Event * * @method ConversationUserNotificationObject getUserNotificationObject() */ diff --git a/files/lib/system/user/notification/object/ConversationMessageUserNotificationObject.class.php b/files/lib/system/user/notification/object/ConversationMessageUserNotificationObject.class.php index 9411341..14afdb1 100644 --- a/files/lib/system/user/notification/object/ConversationMessageUserNotificationObject.class.php +++ b/files/lib/system/user/notification/object/ConversationMessageUserNotificationObject.class.php @@ -10,9 +10,7 @@ use wcf\system\request\LinkHandler; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage system.user.notification.object - * @category Community Framework + * @package WoltLabSuite\Core\System\User\Notification\Object * * @method ConversationMessage getDecoratedObject() * @mixin ConversationMessage diff --git a/files/lib/system/user/notification/object/ConversationUserNotificationObject.class.php b/files/lib/system/user/notification/object/ConversationUserNotificationObject.class.php index 6b8d7a5..f9986b4 100644 --- a/files/lib/system/user/notification/object/ConversationUserNotificationObject.class.php +++ b/files/lib/system/user/notification/object/ConversationUserNotificationObject.class.php @@ -10,9 +10,7 @@ use wcf\system\request\LinkHandler; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage system.user.notification.object - * @category Community Framework + * @package WoltLabSuite\Core\System\User\Notification\Object * * @method Conversation getDecoratedObject() * @mixin Conversation diff --git a/files/lib/system/user/notification/object/type/ConversationMessageNotificationObjectType.class.php b/files/lib/system/user/notification/object/type/ConversationMessageNotificationObjectType.class.php index 0e3808c..c5d388e 100644 --- a/files/lib/system/user/notification/object/type/ConversationMessageNotificationObjectType.class.php +++ b/files/lib/system/user/notification/object/type/ConversationMessageNotificationObjectType.class.php @@ -10,9 +10,7 @@ use wcf\system\user\notification\object\ConversationMessageUserNotificationObjec * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage system.user.notification.object.type - * @category Community Framework + * @package WoltLabSuite\Core\System\User\Notification\Object\Type */ class ConversationMessageNotificationObjectType extends AbstractUserNotificationObjectType { /** diff --git a/files/lib/system/user/notification/object/type/ConversationNotificationObjectType.class.php b/files/lib/system/user/notification/object/type/ConversationNotificationObjectType.class.php index 3ec96a3..605c9ad 100644 --- a/files/lib/system/user/notification/object/type/ConversationNotificationObjectType.class.php +++ b/files/lib/system/user/notification/object/type/ConversationNotificationObjectType.class.php @@ -11,9 +11,7 @@ use wcf\system\WCF; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf.conversation - * @subpackage system.user.notification.object.type - * @category Community Framework + * @package WoltLabSuite\Core\System\User\Notification\Object\Type */ class ConversationNotificationObjectType extends AbstractUserNotificationObjectType { /** diff --git a/files/lib/system/worker/ConversationMessageRebuildDataWorker.class.php b/files/lib/system/worker/ConversationMessageRebuildDataWorker.class.php index 62dea32..70dead5 100644 --- a/files/lib/system/worker/ConversationMessageRebuildDataWorker.class.php +++ b/files/lib/system/worker/ConversationMessageRebuildDataWorker.class.php @@ -13,9 +13,7 @@ use wcf\system\WCF; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf - * @subpackage system.worker - * @category Community Framework + * @package WoltLabSuite\Core\System\Worker */ class ConversationMessageRebuildDataWorker extends AbstractRebuildDataWorker { /** diff --git a/files/lib/system/worker/ConversationRebuildDataWorker.class.php b/files/lib/system/worker/ConversationRebuildDataWorker.class.php index 31916ba..852f06f 100644 --- a/files/lib/system/worker/ConversationRebuildDataWorker.class.php +++ b/files/lib/system/worker/ConversationRebuildDataWorker.class.php @@ -12,9 +12,7 @@ use wcf\system\WCF; * @author Marcel Werk * @copyright 2001-2016 WoltLab GmbH * @license GNU Lesser General Public License - * @package com.woltlab.wcf - * @subpackage system.worker - * @category Community Framework + * @package WoltLabSuite\Core\System\Worker */ class ConversationRebuildDataWorker extends AbstractRebuildDataWorker { /** -- 2.20.1