3b6e249ced1c15fadabf3923e9faa8d92300992a
[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 getSingleObject()
18 * @method Label|null seach($objectID)
19 * @property Label[] $objects
20 */
21 class LabelList extends DatabaseObjectList
22 {
23 /**
24 * @inheritDoc
25 */
26 public $className = Label::class;
27
28 /**
29 * @inheritDoc
30 */
31 public $sqlOrderBy = 'label.showOrder ASC, label.labelID ASC';
32 }