--- /dev/null
+<?php
+namespace wcf\data\edit\history\entry;
+use wcf\data\DatabaseObject;
+
+/**
+ * Represents an edit history entry
+ *
+ * @author Tim Duesterhus
+ * @copyright 2001-2014 WoltLab GmbH
+ * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+ * @package com.woltlab.wcf
+ * @subpackage data.edit.history.entry
+ * @category Community Framework
+ */
+class EditHistoryEntry extends DatabaseObject {
+ /**
+ * @see \wcf\data\DatabaseObject::$databaseTableName
+ */
+ protected static $databaseTableName = 'edit_history_entry';
+
+ /**
+ * @see \wcf\data\DatabaseObject::$databaseTableIndexName
+ */
+ protected static $databaseTableIndexName = 'entryID';
+
+ /**
+ * Returns the message text of the history entry.
+ *
+ * @return string
+ */
+ public function getMessage() {
+ return $this->message;
+ }
+}
--- /dev/null
+<?php
+namespace wcf\data\edit\history\entry;
+use wcf\data\AbstractDatabaseObjectAction;
+
+/**
+* Executes edit history entry-related actions.
+*
+* @author Tim Duesterhus
+* @copyright 2001-2014 WoltLab GmbH
+* @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+* @package com.woltlab.wcf
+* @subpackage data.edit.history.entry
+* @category Community Framework
+*/
+class EditHistoryEntryAction extends AbstractDatabaseObjectAction {
+ /**
+ * @see \wcf\data\AbstractDatabaseObjectAction::$className
+ */
+ protected $className = 'wcf\data\edit\history\entry\EditHistoryEntryEditor';
+}
--- /dev/null
+<?php
+namespace wcf\data\edit\history\entry;
+use wcf\data\DatabaseObjectEditor;
+
+/**
+* Extends the edit history entry object with functions to create, update and delete history entries.
+*
+* @author Tim Duesterhus
+* @copyright 2001-2014 WoltLab GmbH
+* @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+* @package com.woltlab.wcf
+* @subpackage data.edit.history.entry
+* @category Community Framework
+*/
+class EditHistoryEntryEditor extends DatabaseObjectEditor {
+ /**
+ * @see \wcf\data\DatabaseObjectEditor::$baseClass
+ */
+ protected static $baseClass = 'wcf\data\edit\history\entry\EditHistoryEntry';
+}
--- /dev/null
+<?php
+namespace wcf\data\edit\history\entry;
+use wcf\data\DatabaseObjectList;
+
+/**
+* Represents a list of edit history entries.
+*
+* @author Tim Duesterhus
+* @copyright 2001-2014 WoltLab GmbH
+* @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+* @package com.woltlab.wcf
+* @subpackage data.edit.history.entry
+* @category Community Framework
+*/
+class EditHistoryEntryList extends DatabaseObjectList {
+ /**
+ * @see \wcf\data\DatabaseObjectList::$className
+ */
+ public $className = 'wcf\data\edit\history\entry\EditHistoryEntry';
+}