From 7d68f98c89ab93cb616d76a3f905304084c8d48a Mon Sep 17 00:00:00 2001 From: Matthias Schmidt Date: Wed, 20 Jul 2011 13:45:44 +0200 Subject: [PATCH] Updated documentation of com.woltlab.wcf.notification I mainly added namespaces, fixed the class which defines $baseClass in E ditors (DatabaseObjectDecorator instead of DatabaseObjectEditor like Mar cel Werk did in commit '54c3136aec39da95e1913276ed4548e5d0f28aed') and c orrected the class which defines $tableName in PIPs (AbstractPackageInst allationPlugin instead of AbstractXMLPackageInstallationPlugin, see comm it 'b5be6fb094b1ea2fb5cd741f758720f010f0eada') for the com.woltlab.wcf.n otification package. --- .../lib/data/user/notification/UserNotification.class.php | 4 ++-- .../data/user/notification/UserNotificationAction.class.php | 2 +- .../data/user/notification/UserNotificationEditor.class.php | 2 +- .../data/user/notification/UserNotificationList.class.php | 2 +- .../user/notification/event/UserNotificationEvent.class.php | 4 ++-- .../event/UserNotificationEventAction.class.php | 2 +- .../event/UserNotificationEventEditor.class.php | 2 +- .../notification/event/UserNotificationEventList.class.php | 2 +- .../object/type/UserNotificationObjectType.class.php | 4 ++-- .../object/type/UserNotificationObjectTypeAction.class.php | 2 +- .../object/type/UserNotificationObjectTypeEditor.class.php | 2 +- .../object/type/UserNotificationObjectTypeList.class.php | 2 +- .../user/notification/type/UserNotificationType.class.php | 4 ++-- .../notification/type/UserNotificationTypeAction.class.php | 2 +- .../notification/type/UserNotificationTypeEditor.class.php | 2 +- .../notification/type/UserNotificationTypeList.class.php | 2 +- ...UserNotificationEventPackageInstallationPlugin.class.php | 6 +++--- ...otificationObjectTypePackageInstallationPlugin.class.php | 6 +++--- .../UserNotificationTypePackageInstallationPlugin.class.php | 6 +++--- 19 files changed, 29 insertions(+), 29 deletions(-) diff --git a/com.woltlab.wcf.notification/files/lib/data/user/notification/UserNotification.class.php b/com.woltlab.wcf.notification/files/lib/data/user/notification/UserNotification.class.php index 5d656a06a1..0b4fcc0488 100644 --- a/com.woltlab.wcf.notification/files/lib/data/user/notification/UserNotification.class.php +++ b/com.woltlab.wcf.notification/files/lib/data/user/notification/UserNotification.class.php @@ -14,12 +14,12 @@ use wcf\data\DatabaseObject; */ class UserNotification extends DatabaseObject { /** - * @see DatabaseObject::$databaseTableName + * @see wcf\data\DatabaseObject::$databaseTableName */ protected static $databaseTableName = 'user_notification'; /** - * @see DatabaseObject::$databaseTableIndexName + * @see wcf\data\DatabaseObject::$databaseTableIndexName */ protected static $databaseTableIndexName = 'notificationID'; } diff --git a/com.woltlab.wcf.notification/files/lib/data/user/notification/UserNotificationAction.class.php b/com.woltlab.wcf.notification/files/lib/data/user/notification/UserNotificationAction.class.php index 6ff75579a9..e335d70212 100644 --- a/com.woltlab.wcf.notification/files/lib/data/user/notification/UserNotificationAction.class.php +++ b/com.woltlab.wcf.notification/files/lib/data/user/notification/UserNotificationAction.class.php @@ -14,7 +14,7 @@ use wcf\data\AbstractDatabaseObjectAction; */ class UserNotificationAction extends AbstractDatabaseObjectAction { /** - * @see AbstractDatabaseObjectAction::$className + * @see wcf\data\AbstractDatabaseObjectAction::$className */ protected $className = 'wcf\data\user\notification\UserNotificationEditor'; } diff --git a/com.woltlab.wcf.notification/files/lib/data/user/notification/UserNotificationEditor.class.php b/com.woltlab.wcf.notification/files/lib/data/user/notification/UserNotificationEditor.class.php index 56aa391ade..a83c59659d 100644 --- a/com.woltlab.wcf.notification/files/lib/data/user/notification/UserNotificationEditor.class.php +++ b/com.woltlab.wcf.notification/files/lib/data/user/notification/UserNotificationEditor.class.php @@ -14,7 +14,7 @@ use wcf\data\DatabaseObjectEditor; */ class UserNotificationEditor extends DatabaseObjectEditor { /** - * @see DatabaseObjectEditor::$baseClass + * @see wcf\data\DatabaseObjectDecorator::$baseClass */ protected static $baseClass = 'wcf\data\user\notification\UserNotification'; } diff --git a/com.woltlab.wcf.notification/files/lib/data/user/notification/UserNotificationList.class.php b/com.woltlab.wcf.notification/files/lib/data/user/notification/UserNotificationList.class.php index 51ad287680..8a60cf1458 100644 --- a/com.woltlab.wcf.notification/files/lib/data/user/notification/UserNotificationList.class.php +++ b/com.woltlab.wcf.notification/files/lib/data/user/notification/UserNotificationList.class.php @@ -14,7 +14,7 @@ use wcf\data\DatabaseObjectList; */ class UserNotificationList extends DatabaseObjectList { /** - * @see DatabaseObjectList::$className + * @see wcf\data\DatabaseObjectList::$className */ public $className = 'wcf\data\user\notification\UserNotification'; } diff --git a/com.woltlab.wcf.notification/files/lib/data/user/notification/event/UserNotificationEvent.class.php b/com.woltlab.wcf.notification/files/lib/data/user/notification/event/UserNotificationEvent.class.php index 1def755af5..a7db3c2ca0 100644 --- a/com.woltlab.wcf.notification/files/lib/data/user/notification/event/UserNotificationEvent.class.php +++ b/com.woltlab.wcf.notification/files/lib/data/user/notification/event/UserNotificationEvent.class.php @@ -14,12 +14,12 @@ use wcf\data\DatabaseObject; */ class UserNotificationEvent extends DatabaseObject { /** - * @see DatabaseObject::$databaseTableName + * @see wcf\data\DatabaseObject::$databaseTableName */ protected static $databaseTableName = 'user_notification_event'; /** - * @see DatabaseObject::$databaseTableIndexName + * @see wcf\data\DatabaseObject::$databaseTableIndexName */ protected static $databaseTableIndexName = 'eventID'; } diff --git a/com.woltlab.wcf.notification/files/lib/data/user/notification/event/UserNotificationEventAction.class.php b/com.woltlab.wcf.notification/files/lib/data/user/notification/event/UserNotificationEventAction.class.php index 3f82a7c69b..9321c2c3dd 100644 --- a/com.woltlab.wcf.notification/files/lib/data/user/notification/event/UserNotificationEventAction.class.php +++ b/com.woltlab.wcf.notification/files/lib/data/user/notification/event/UserNotificationEventAction.class.php @@ -14,7 +14,7 @@ use wcf\data\AbstractDatabaseObjectAction; */ class UserNotificationEventAction extends AbstractDatabaseObjectAction { /** - * @see AbstractDatabaseObjectAction::$className + * @see wcf\data\AbstractDatabaseObjectAction::$className */ protected $className = 'wcf\data\user\notification\event\UserNotificationEventEditor'; } diff --git a/com.woltlab.wcf.notification/files/lib/data/user/notification/event/UserNotificationEventEditor.class.php b/com.woltlab.wcf.notification/files/lib/data/user/notification/event/UserNotificationEventEditor.class.php index 071e0d16a1..8f51549a34 100644 --- a/com.woltlab.wcf.notification/files/lib/data/user/notification/event/UserNotificationEventEditor.class.php +++ b/com.woltlab.wcf.notification/files/lib/data/user/notification/event/UserNotificationEventEditor.class.php @@ -14,7 +14,7 @@ use wcf\data\DatabaseObjectEditor; */ class UserNotificationEventEditor extends DatabaseObjectEditor { /** - * @see DatabaseObjectEditor::$baseClass + * @see wcf\data\DatabaseObjectDecorator::$baseClass */ protected static $baseClass = 'wcf\data\user\notification\event\UserNotificationEvent'; } diff --git a/com.woltlab.wcf.notification/files/lib/data/user/notification/event/UserNotificationEventList.class.php b/com.woltlab.wcf.notification/files/lib/data/user/notification/event/UserNotificationEventList.class.php index 121b1f2366..f55a438d9b 100644 --- a/com.woltlab.wcf.notification/files/lib/data/user/notification/event/UserNotificationEventList.class.php +++ b/com.woltlab.wcf.notification/files/lib/data/user/notification/event/UserNotificationEventList.class.php @@ -14,7 +14,7 @@ use wcf\data\DatabaseObjectList; */ class UserNotificationEventList extends DatabaseObjectList { /** - * @see DatabaseObjectList::$className + * @see wcf\data\DatabaseObjectList::$className */ public $className = 'wcf\data\user\notification\event\UserNotificationEvent'; } diff --git a/com.woltlab.wcf.notification/files/lib/data/user/notification/object/type/UserNotificationObjectType.class.php b/com.woltlab.wcf.notification/files/lib/data/user/notification/object/type/UserNotificationObjectType.class.php index 53285f64fd..24e5ccd7c5 100644 --- a/com.woltlab.wcf.notification/files/lib/data/user/notification/object/type/UserNotificationObjectType.class.php +++ b/com.woltlab.wcf.notification/files/lib/data/user/notification/object/type/UserNotificationObjectType.class.php @@ -14,12 +14,12 @@ use wcf\data\DatabaseObject; */ class UserNotificationObjectType extends DatabaseObject { /** - * @see DatabaseObject::$databaseTableName + * @see wcf\data\DatabaseObject::$databaseTableName */ protected static $databaseTableName = 'user_notification_object_type'; /** - * @see DatabaseObject::$databaseTableIndexName + * @see wcf\data\DatabaseObject::$databaseTableIndexName */ protected static $databaseTableIndexName = 'objectTypeID'; } diff --git a/com.woltlab.wcf.notification/files/lib/data/user/notification/object/type/UserNotificationObjectTypeAction.class.php b/com.woltlab.wcf.notification/files/lib/data/user/notification/object/type/UserNotificationObjectTypeAction.class.php index e093d09ef4..0e7eea0282 100644 --- a/com.woltlab.wcf.notification/files/lib/data/user/notification/object/type/UserNotificationObjectTypeAction.class.php +++ b/com.woltlab.wcf.notification/files/lib/data/user/notification/object/type/UserNotificationObjectTypeAction.class.php @@ -14,7 +14,7 @@ use wcf\data\AbstractDatabaseObjectAction; */ class UserNotificationObjectTypeAction extends AbstractDatabaseObjectAction { /** - * @see AbstractDatabaseObjectAction::$className + * @see wcf\data\AbstractDatabaseObjectAction::$className */ protected $className = 'wcf\data\user\notification\object\type\UserNotificationObjectTypeEditor'; } diff --git a/com.woltlab.wcf.notification/files/lib/data/user/notification/object/type/UserNotificationObjectTypeEditor.class.php b/com.woltlab.wcf.notification/files/lib/data/user/notification/object/type/UserNotificationObjectTypeEditor.class.php index aef0718da2..8247834740 100644 --- a/com.woltlab.wcf.notification/files/lib/data/user/notification/object/type/UserNotificationObjectTypeEditor.class.php +++ b/com.woltlab.wcf.notification/files/lib/data/user/notification/object/type/UserNotificationObjectTypeEditor.class.php @@ -14,7 +14,7 @@ use wcf\data\DatabaseObjectEditor; */ class UserNotificationObjectTypeEditor extends DatabaseObjectEditor { /** - * @see DatabaseObjectEditor::$baseClass + * @see wcf\data\DatabaseObjectDecorator::$baseClass */ protected static $baseClass = 'wcf\data\user\notification\object\type\UserNotificationObjectType'; } diff --git a/com.woltlab.wcf.notification/files/lib/data/user/notification/object/type/UserNotificationObjectTypeList.class.php b/com.woltlab.wcf.notification/files/lib/data/user/notification/object/type/UserNotificationObjectTypeList.class.php index 938a19efae..0bd0b484e1 100644 --- a/com.woltlab.wcf.notification/files/lib/data/user/notification/object/type/UserNotificationObjectTypeList.class.php +++ b/com.woltlab.wcf.notification/files/lib/data/user/notification/object/type/UserNotificationObjectTypeList.class.php @@ -14,7 +14,7 @@ use wcf\data\DatabaseObjectList; */ class UserNotificationObjectTypeList extends DatabaseObjectList { /** - * @see DatabaseObjectList::$className + * @see wcf\data\DatabaseObjectList::$className */ public $className = 'wcf\data\user\notification\object\type\UserNotificationObjectType'; } diff --git a/com.woltlab.wcf.notification/files/lib/data/user/notification/type/UserNotificationType.class.php b/com.woltlab.wcf.notification/files/lib/data/user/notification/type/UserNotificationType.class.php index 44ee455823..6a26aaf63c 100644 --- a/com.woltlab.wcf.notification/files/lib/data/user/notification/type/UserNotificationType.class.php +++ b/com.woltlab.wcf.notification/files/lib/data/user/notification/type/UserNotificationType.class.php @@ -14,12 +14,12 @@ use wcf\data\DatabaseObject; */ class UserNotificationType extends DatabaseObject { /** - * @see DatabaseObject::$databaseTableName + * @see wcf\data\DatabaseObject::$databaseTableName */ protected static $databaseTableName = 'user_notification_type'; /** - * @see DatabaseObject::$databaseTableIndexName + * @see wcf\data\DatabaseObject::$databaseTableIndexName */ protected static $databaseTableIndexName = 'notificationTypeID'; } diff --git a/com.woltlab.wcf.notification/files/lib/data/user/notification/type/UserNotificationTypeAction.class.php b/com.woltlab.wcf.notification/files/lib/data/user/notification/type/UserNotificationTypeAction.class.php index e115b3c857..69ef7bae63 100644 --- a/com.woltlab.wcf.notification/files/lib/data/user/notification/type/UserNotificationTypeAction.class.php +++ b/com.woltlab.wcf.notification/files/lib/data/user/notification/type/UserNotificationTypeAction.class.php @@ -14,7 +14,7 @@ use wcf\data\AbstractDatabaseObjectAction; */ class UserNotificationTypeAction extends AbstractDatabaseObjectAction { /** - * @see AbstractDatabaseObjectAction::$className + * @see wcf\data\AbstractDatabaseObjectAction::$className */ protected $className = 'wcf\data\user\notification\type\UserNotificationTypeEditor'; } diff --git a/com.woltlab.wcf.notification/files/lib/data/user/notification/type/UserNotificationTypeEditor.class.php b/com.woltlab.wcf.notification/files/lib/data/user/notification/type/UserNotificationTypeEditor.class.php index da9f8e43ea..1794dec311 100644 --- a/com.woltlab.wcf.notification/files/lib/data/user/notification/type/UserNotificationTypeEditor.class.php +++ b/com.woltlab.wcf.notification/files/lib/data/user/notification/type/UserNotificationTypeEditor.class.php @@ -14,7 +14,7 @@ use wcf\data\DatabaseObjectEditor; */ class UserNotificationTypeEditor extends DatabaseObjectEditor { /** - * @see DatabaseObjectEditor::$baseClass + * @see wcf\data\DatabaseObjectDecorator::$baseClass */ protected static $baseClass = 'wcf\data\user\notification\type\UserNotificationType'; } diff --git a/com.woltlab.wcf.notification/files/lib/data/user/notification/type/UserNotificationTypeList.class.php b/com.woltlab.wcf.notification/files/lib/data/user/notification/type/UserNotificationTypeList.class.php index c181f35164..8e83df0ef2 100644 --- a/com.woltlab.wcf.notification/files/lib/data/user/notification/type/UserNotificationTypeList.class.php +++ b/com.woltlab.wcf.notification/files/lib/data/user/notification/type/UserNotificationTypeList.class.php @@ -14,7 +14,7 @@ use wcf\data\DatabaseObjectList; */ class UserNotificationTypeList extends DatabaseObjectList { /** - * @see DatabaseObjectList::$className + * @see wcf\data\DatabaseObjectList::$className */ public $className = 'wcf\data\user\notification\type\UserNotificationType'; } diff --git a/com.woltlab.wcf.notification/files/lib/system/package/plugin/UserNotificationEventPackageInstallationPlugin.class.php b/com.woltlab.wcf.notification/files/lib/system/package/plugin/UserNotificationEventPackageInstallationPlugin.class.php index 1e1eb18d85..9b403e23d3 100644 --- a/com.woltlab.wcf.notification/files/lib/system/package/plugin/UserNotificationEventPackageInstallationPlugin.class.php +++ b/com.woltlab.wcf.notification/files/lib/system/package/plugin/UserNotificationEventPackageInstallationPlugin.class.php @@ -14,17 +14,17 @@ use wcf\system\WCF; */ class UserNotificationEventPackageInstallationPlugin extends AbstractXMLPackageInstallationPlugin { /** - * @see AbstractXMLPackageInstallationPlugin::$className + * @see wcf\system\package\plugin\AbstractXMLPackageInstallationPlugin::$className */ public $className = 'wcf\data\user\notification\event\UserNotificationEventEditor'; /** - * @see AbstractXMLPackageInstallationPlugin::$tableName + * @see wcf\system\package\plugin\AbstractPackageInstallationPlugin::$tableName */ public $tableName = 'user_notification_event'; /** - * @see AbstractXMLPackageInstallationPlugin::$tagName + * @see wcf\system\package\plugin\AbstractXMLPackageInstallationPlugin::$tagName */ public $tagName = 'event'; diff --git a/com.woltlab.wcf.notification/files/lib/system/package/plugin/UserNotificationObjectTypePackageInstallationPlugin.class.php b/com.woltlab.wcf.notification/files/lib/system/package/plugin/UserNotificationObjectTypePackageInstallationPlugin.class.php index 9a0e3d69b9..b6d1dc6238 100644 --- a/com.woltlab.wcf.notification/files/lib/system/package/plugin/UserNotificationObjectTypePackageInstallationPlugin.class.php +++ b/com.woltlab.wcf.notification/files/lib/system/package/plugin/UserNotificationObjectTypePackageInstallationPlugin.class.php @@ -14,17 +14,17 @@ use wcf\system\WCF; */ class UserNotificationObjectTypePackageInstallationPlugin extends AbstractXMLPackageInstallationPlugin { /** - * @see AbstractXMLPackageInstallationPlugin::$className + * @see wcf\system\package\plugin\AbstractXMLPackageInstallationPlugin::$className */ public $className = 'wcf\data\user\notification\object\type\UserNotificationObjectTypeEditor'; /** - * @see AbstractXMLPackageInstallationPlugin::$tableName + * @see wcf\system\package\plugin\AbstractPackageInstallationPlugin::$tableName */ public $tableName = 'user_notification_object_type'; /** - * @see AbstractXMLPackageInstallationPlugin::$tagName + * @see wcf\system\package\plugin\AbstractXMLPackageInstallationPlugin::$tagName */ public $tagName = 'objecttype'; diff --git a/com.woltlab.wcf.notification/files/lib/system/package/plugin/UserNotificationTypePackageInstallationPlugin.class.php b/com.woltlab.wcf.notification/files/lib/system/package/plugin/UserNotificationTypePackageInstallationPlugin.class.php index a9d32f1114..d875f30957 100644 --- a/com.woltlab.wcf.notification/files/lib/system/package/plugin/UserNotificationTypePackageInstallationPlugin.class.php +++ b/com.woltlab.wcf.notification/files/lib/system/package/plugin/UserNotificationTypePackageInstallationPlugin.class.php @@ -14,17 +14,17 @@ use wcf\system\WCF; */ class UserNotificationTypePackageInstallationPlugin extends AbstractXMLPackageInstallationPlugin { /** - * @see AbstractXMLPackageInstallationPlugin::$className + * @see wcf\system\package\plugin\AbstractXMLPackageInstallationPlugin::$className */ public $className = 'wcf\data\user\notification\type\UserNotificationTypeEditor'; /** - * @see AbstractXMLPackageInstallationPlugin::$tableName + * @see wcf\system\package\plugin\AbstractPackageInstallationPlugin::$tableName */ public $tableName = 'user_notification_type'; /** - * @see AbstractXMLPackageInstallationPlugin::$tagName + * @see wcf\system\package\plugin\AbstractXMLPackageInstallationPlugin::$tagName */ public $tagName = 'notificationtype'; -- 2.20.1