Merge branch 'refs/heads/master' into cli
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / ISearchAction.class.php
1 <?php
2 namespace wcf\data;
3
4 /**
5 * Every database object action whose objects can be searched via AJAX has to
6 * implement this interface.
7 *
8 * @author Matthias Schmidt
9 * @copyright 2001-2013 WoltLab GmbH
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 */
15 interface ISearchAction {
16 /**
17 * Returns a list with data of objects that match the given search criteria.
18 *
19 * @return array<array>
20 */
21 public function getSearchResultList();
22
23 /**
24 * Validates the "getSearchResultList" action.
25 */
26 public function validateGetSearchResultList();
27 }