Merge branch '6.0'
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / IExtendedMessageQuickReplyAction.class.php
1 <?php
2
3 namespace wcf\data;
4
5 /**
6 * @deprecated 5.5 The concept of starting a message in a simple editor and then migrating to an extended editor no longer exists.
7 */
8 interface 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();
21 }