Merge branch '5.3'
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / IGroupedUserListAction.class.php
1 <?php
2
3 namespace wcf\data;
4
5 /**
6 * Default interface for action classes providing grouped user lists.
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 * @package WoltLabSuite\Core\Data
12 */
13 interface IGroupedUserListAction
14 {
15 /**
16 * Validates parameters to return a parsed list of users.
17 */
18 public function validateGetGroupedUserList();
19
20 /**
21 * Returns a parsed list of users.
22 *
23 * @return array
24 */
25 public function getGroupedUserList();
26 }