Add EmailLogListPage
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / IMessageQuickReplyParametersAction.class.php
... / ...
CommitLineData
1<?php
2
3namespace wcf\data;
4
5/**
6 * Default interface for actions implementing quick reply with parameter validation.
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 */
13interface IMessageQuickReplyParametersAction extends IMessageQuickReplyAction
14{
15 /**
16 * Returns the list of allowed data parameters for the 'quickReply' action. The
17 * 'message' key is permitted by default.
18 *
19 * @return string[]
20 */
21 public function getAllowedQuickReplyParameters();
22}