Add EmailLogListPage
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / IExtendedMessageQuickReplyAction.class.php
1 <?php
2
3 namespace wcf\data;
4
5 /**
6 * Default interface for actions implementing quick reply with extended mode.
7 *
8 * @author Alexander Ebert
9 * @copyright 2001-2019 WoltLab GmbH
10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
11 * @package WoltLabSuite\Core\Data
12 */
13 interface IExtendedMessageQuickReplyAction extends IMessageQuickReplyAction
14 {
15 /**
16 * Saves message and jumps to extended mode.
17 *
18 * @return array
19 */
20 public function jumpToExtended();
21
22 /**
23 * Validates parameters to jump to extended mode.
24 */
25 public function validateJumpToExtended();
26 }