Added detailed list of received/given likes in user profiles
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / IExtendedMessageQuickReplyAction.class.php
CommitLineData
d45eaff6
MW
1<?php
2namespace wcf\data;
3
4/**
5 * Default interface for actions implementing quick reply with extended mode.
6 *
7 * @author Alexander Ebert
ca4ba303 8 * @copyright 2001-2014 WoltLab GmbH
d45eaff6 9 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
f4f05aa5 10 * @package com.woltlab.wcf
d45eaff6
MW
11 * @subpackage data
12 * @category Community Framework
13 */
14interface IExtendedMessageQuickReplyAction extends IMessageQuickReplyAction {
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}