421530065d07eb7182129daf1f027910f075258e
[GitHub/WoltLab/WCF.git] /
1 <?php
2 namespace wcf\data\user\notification\object\type;
3 use wcf\data\ProcessibleDatabaseObject;
4
5 /**
6 * Represents a user notification object type.
7 *
8 * @author Marcel Werk
9 * @copyright 2001-2011 WoltLab GmbH
10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
11 * @package com.woltlab.wcf.notification
12 * @subpackage data.user.notification.object.type
13 * @category Community Framework
14 */
15 class UserNotificationObjectType extends ProcessibleDatabaseObject {
16 /**
17 * @see wcf\data\DatabaseObject::$databaseTableName
18 */
19 protected static $databaseTableName = 'user_notification_object_type';
20
21 /**
22 * @see wcf\data\DatabaseObject::$databaseTableIndexName
23 */
24 protected static $databaseTableIndexName = 'objectTypeID';
25
26 /**
27 * @see wcf\data\ProcessibleDatabaseObject::$processorInterface
28 */
29 protected static $processorInterface = 'wcf\system\user\notification\object\type\IUserNotificationObjectType';
30 }