Add the new variable `FileProcessorFormField::$bigPreview` with getter and setter.
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / IVisitableObjectAction.class.php
1 <?php
2
3 namespace wcf\data;
4
5 /**
6 * Default interface for objects supporting visit tracking.
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 */
12 interface IVisitableObjectAction
13 {
14 /**
15 * Marks objects as read.
16 */
17 public function markAsRead();
18
19 /**
20 * Validates parameters to mark objects as read.
21 */
22 public function validateMarkAsRead();
23 }