3 namespace wcf\system\condition\person;
5 use wcf\data\person\Person;
6 use wcf\system\condition\AbstractObjectTextPropertyCondition;
9 * Condition implementation for the first name of a person.
11 * @author Matthias Schmidt
12 * @copyright 2001-2021 WoltLab GmbH
13 * @license WoltLab License <http://www.woltlab.com/license-agreement.html>
14 * @package WoltLabSuite\Core\System\Condition
16 class PersonFirstNameTextPropertyCondition extends AbstractObjectTextPropertyCondition
21 protected $className = Person::class;
26 protected $description = 'wcf.person.condition.firstName.description';
31 protected $fieldName = 'personFirstName';
36 protected $label = 'wcf.person.firstName';
41 protected $propertyName = 'firstName';
46 protected $supportsMultipleValues = true;