Merge pull request #3462 from SoftCreatR/patch-14
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / IGroupedUserListAction.class.php
1 <?php
2 namespace wcf\data;
3
4 /**
5 * Default interface for action classes providing grouped user lists.
6 *
7 * @author Alexander Ebert
8 * @copyright 2001-2018 WoltLab GmbH
9 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
10 * @package WoltLabSuite\Core\Data
11 */
12 interface IGroupedUserListAction {
13 /**
14 * Validates parameters to return a parsed list of users.
15 */
16 public function validateGetGroupedUserList();
17
18 /**
19 * Returns a parsed list of users.
20 *
21 * @return array
22 */
23 public function getGroupedUserList();
24 }