Add the new variable `FileProcessorFormField::$bigPreview` with getter and setter.
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / ISearchAction.class.php
CommitLineData
a427a8c8 1<?php
a9229942 2
a427a8c8
MS
3namespace wcf\data;
4
5/**
6 * Every database object action whose objects can be searched via AJAX has to
7 * implement this interface.
a9229942
TD
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>
a427a8c8 12 */
a9229942
TD
13interface ISearchAction
14{
15 /**
16 * Returns a list with data of objects that match the given search criteria.
17 *
18 * @return array<array>
19 */
20 public function getSearchResultList();
21
22 /**
23 * Validates the "getSearchResultList" action.
24 */
25 public function validateGetSearchResultList();
58e1d71f 26}