Add EmailLogListPage
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / IMessageQuickReplyParametersAction.class.php
CommitLineData
f7ca0182 1<?php
a9229942 2
f7ca0182
AE
3namespace wcf\data;
4
5/**
6 * Default interface for actions implementing quick reply with parameter validation.
a9229942 7 *
f7ca0182 8 * @author Alexander Ebert
a9229942 9 * @copyright 2001-2019 WoltLab GmbH
f7ca0182 10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
4bb4e522 11 * @package WoltLabSuite\Core\Data
f7ca0182 12 */
a9229942
TD
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();
f7ca0182 22}