Add EmailLogListPage
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / IAttachmentMessageQuickReplyAction.class.php
CommitLineData
67837071 1<?php
a9229942 2
67837071
AE
3namespace wcf\data;
4
5/**
6 * Default interface for actions implementing quick reply with attachment support.
a9229942
TD
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
67837071 12 */
a9229942
TD
13interface IAttachmentMessageQuickReplyAction extends IExtendedMessageQuickReplyAction
14{
15 /**
16 * Returns an attachment handler object.
17 *
18 * @param DatabaseObject $container
19 */
20 public function getAttachmentHandler(DatabaseObject $container);
67837071 21}