9cc6a47dc1cb4847d6ae74ef2461364cfb6b4500
[GitHub/WoltLab/WCF.git] /
1 <?php
2 namespace wcf\system\message\embedded\object;
3 use wcf\data\object\type\ObjectType;
4 use wcf\data\DatabaseObjectDecorator;
5 use wcf\system\html\input\HtmlInputProcessor;
6
7 /**
8 * Provides default implementations for message embedded object handlers.
9 *
10 * @author Marcel Werk
11 * @copyright 2001-2016 WoltLab GmbH
12 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
13 * @package WoltLabSuite\Core\System\Message\Embedded\Object
14 *
15 * @method ObjectType getDecoratedObject()
16 * @mixin ObjectType
17 */
18 abstract class AbstractMessageEmbeddedObjectHandler extends DatabaseObjectDecorator implements IMessageEmbeddedObjectHandler {
19 /**
20 * @inheritDoc
21 */
22 protected static $baseClass = ObjectType::class;
23
24 /**
25 * @inheritDoc
26 */
27 public function parse(HtmlInputProcessor $htmlInputProcessor, array $embeddedData) {
28 // TODO: DEBUG ONLY, remove this method!
29 return [];
30 }
31
32 }