uawdijnntqw1x1x1
IP : 216.73.216.15
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
craft4-newsite-space
/
public
/
..
/
vendor
/
craftcms
/
cms
/
src
/
base
/
FieldTrait.php
/
/
<?php /** * @link https://craftcms.com/ * @copyright Copyright (c) Pixel & Tonic, Inc. * @license https://craftcms.github.io/license/ */ namespace craft\base; /** * FieldTrait implements the common methods and properties for field classes. * * @author Pixel & Tonic, Inc. <support@pixelandtonic.com> * @since 3.0.0 */ trait FieldTrait { /** * @var int|null The field’s group’s ID */ public ?int $groupId = null; /** * @var string|null The field’s name */ public ?string $name = null; /** * @var string|null The field’s handle */ public ?string $handle = null; /** * @var string|null The field’s context */ public ?string $context = null; /** * @var string|null The field’s instructions */ public ?string $instructions = null; /** * @var bool Whether the field's values should be registered as search keywords on the elements. */ public bool $searchable = false; /** * @var string|null The `aria-describedby` attribute value that should be set on the focusable input(s). * @see FieldInterface::getInputHtml() * @since 3.7.24 */ public ?string $describedBy = null; /** * @var string The field’s translation method */ public string $translationMethod = Field::TRANSLATION_METHOD_NONE; /** * @var string|null The field’s translation key format, if [[translationMethod]] is "custom" */ public ?string $translationKeyFormat = null; /** * @var string|null The field’s previous handle */ public ?string $oldHandle = null; /** * @var array|null The field’s previous settings * @since 3.1.2 */ public ?array $oldSettings = null; /** * @var string|null The field’s content column prefix */ public ?string $columnPrefix = null; /** * @var string|null The field’s content column suffix * @since 3.7.0 */ public ?string $columnSuffix = null; /** * @var string|null The field's UID */ public ?string $uid = null; // These properties are only populated if the field was fetched via a Field Layout // ------------------------------------------------------------------------- /** * @var int|null The ID of the field layout that the field was fetched from */ public ?int $layoutId = null; /** * @var int|null The tab ID of the field layout that the field was fetched from */ public ?int $tabId = null; /** * @var bool|null Whether the field is required in the field layout it was fetched from * @deprecated in 4.1.4. [[\craft\fieldlayoutelements\BaseField::$required]] should be used instead */ public ?bool $required = null; /** * @var int|null The field’s sort position in the field layout it was fetched from */ public ?int $sortOrder = null; }
/srv/users/craft4/apps/craft4-newsite-space/public/../vendor/craftcms/cms/src/base/FieldTrait.php