Added detailed list of received/given likes in user profiles
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / IClipboardAction.class.php
CommitLineData
7918ddba
MS
1<?php
2namespace wcf\data;
3
4/**
4139483c
MS
5 * Every database object action class, which belongs to database objects supporting
6 * clipboard actions, has to implement this interface.
7918ddba
MS
7 *
8 * @author Matthias Schmidt
ca4ba303 9 * @copyright 2001-2014 WoltLab GmbH
7918ddba
MS
10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
11 * @package com.woltlab.wcf
12 * @subpackage data
13 * @category Community Framework
14 */
15interface IClipboardAction {
16 /**
17 * Unmarks all marked objects.
18 */
19 public function unmarkAll();
20
21 /**
22 * Validates the 'unmarkAll' action.
23 */
24 public function validateUnmarkAll();
25}