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