Add the new variable `FileProcessorFormField::$bigPreview` with getter and setter.
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / IClipboardAction.class.php
1 <?php
2
3 namespace wcf\data;
4
5 /**
6 * Every database object action class, which belongs to database objects supporting
7 * clipboard actions, has to implement this interface.
8 *
9 * @author Matthias Schmidt
10 * @copyright 2001-2019 WoltLab GmbH
11 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
12 */
13 interface IClipboardAction
14 {
15 /**
16 * Unmarks all marked objects.
17 */
18 public function unmarkAll();
19
20 /**
21 * Validates the 'unmarkAll' action.
22 */
23 public function validateUnmarkAll();
24 }