b87d4d3c29a4f57ffd31f72db296d3326e29582f
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / label / LabelList.class.php
1 <?php
2
3 namespace wcf\data\label;
4
5 use wcf\data\DatabaseObjectList;
6
7 /**
8 * Represents a list of labels.
9 *
10 * @author Alexander Ebert
11 * @copyright 2001-2019 WoltLab GmbH
12 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
13 * @package WoltLabSuite\Core\Data\Label
14 *
15 * @method Label current()
16 * @method Label[] getObjects()
17 * @method Label|null search($objectID)
18 * @property Label[] $objects
19 */
20 class LabelList extends DatabaseObjectList
21 {
22 /**
23 * @inheritDoc
24 */
25 public $className = Label::class;
26
27 /**
28 * @inheritDoc
29 */
30 public $sqlOrderBy = 'label.showOrder ASC, label.labelID ASC';
31 }