Enhanced parameter validation for quick reply actions
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / IMessageQuickReplyParametersAction.class.php
CommitLineData
f7ca0182
AE
1<?php
2namespace wcf\data;
3
4/**
5 * Default interface for actions implementing quick reply with parameter validation.
6 *
7 * @author Alexander Ebert
8 * @copyright 2001-2018 WoltLab GmbH
9 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
10 * @package com.woltlab.wcf
11 * @subpackage data
12 * @category Community Framework
13 */
14interface IMessageQuickReplyParametersAction extends IMessageQuickReplyAction {
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}