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