Merge branch 'master' of github.com:WoltLab/WCF
[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-2012 WoltLab GmbH
9 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
10 * @package com.woltlab.wcf.user
11 * @subpackage data
12 * @category Community Framework
13 */
14 interface IGroupedUserListAction {
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 }