Merge branch '6.0'
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / IExtendedMessageQuickReplyAction.class.php
CommitLineData
d45eaff6 1<?php
a9229942 2
d45eaff6
MW
3namespace wcf\data;
4
5/**
344e02fc 6 * @deprecated 5.5 The concept of starting a message in a simple editor and then migrating to an extended editor no longer exists.
d45eaff6 7 */
a9229942
TD
8interface IExtendedMessageQuickReplyAction extends IMessageQuickReplyAction
9{
10 /**
11 * Saves message and jumps to extended mode.
12 *
13 * @return array
14 */
15 public function jumpToExtended();
16
17 /**
18 * Validates parameters to jump to extended mode.
19 */
20 public function validateJumpToExtended();
d45eaff6 21}