Skip to content

Field

Type
Abstract Class
Namespace
craft\base
Inherits
craft\base\Field » craft\base\SavableComponent » craft\base\ConfigurableComponent » craft\base\Component » craft\base\Model » yii\base\Model » yii\base\Component » yii\base\BaseObject
Implements
ArrayAccess, IteratorAggregate, craft\base\ComponentInterface, craft\base\ConfigurableComponentInterface, craft\base\FieldInterface, craft\base\ModelInterface, craft\base\SavableComponentInterface, yii\base\Arrayable, yii\base\Configurable, yii\base\StaticInstanceInterface
Uses traits
craft\base\ClonefixTrait, craft\base\FieldTrait, craft\base\SavableComponentTrait, yii\base\ArrayableTrait, yii\base\StaticInstanceTrait
Extended by
craft\fields\Assets, craft\fields\BaseOptionsField, craft\fields\BaseRelationField, craft\fields\Categories, craft\fields\Checkboxes, craft\fields\Color, craft\fields\Country, craft\fields\Date, craft\fields\Dropdown, craft\fields\Email, craft\fields\Entries, craft\fields\Lightswitch, craft\fields\Matrix, craft\fields\MissingField, craft\fields\Money, craft\fields\MultiSelect, craft\fields\Number, craft\fields\PlainText, craft\fields\RadioButtons, craft\fields\Table, craft\fields\Tags, craft\fields\Time, craft\fields\Url, craft\fields\Users
Since
3.0.0

Field is the base class for classes representing fields in terms of objects.

View source

Public Properties

PropertyDescription
activeValidatorsyii\validators\Validator – The validators applicable to the current scenario.
attributesarray – Attribute values (name => value).
behaviorsyii\base\Behavior – List of behaviors attached to this component.
columnPrefixstring, null – The field’s content column prefix
columnSuffixstring, null – The field’s content column suffix
contentColumnTypestring, string[] – The column type(s).
contentGqlMutationArgumentType\GraphQL\Type\Definition\Type, array
contentGqlQueryArgumentType\GraphQL\Type\Definition\Type, array
contentGqlType\GraphQL\Type\Definition\Type, array
contextstring, null – The field’s context
dateCreatedDateTime, null – The date that the component was created
dateUpdatedDateTime, null – The date that the component was last updated
describedBystring, null – The aria-describedby attribute value that should be set on the focusable input(s).
eagerLoadingGqlConditionsarray, null
elementConditionRuleTypestring, array, null
elementValidationRulesarray
errorsarray – Errors for all attributes or the specified attribute.
firstErrorsarray – The first errors.
groupcraft\models\FieldGroup, null
groupIdinteger, null – The field’s group’s ID
handlestring, null – The field’s handle
idinteger, string, null – The component’s ID (could be a temporary one: "new:X")
inputIdstring
instructionsstring, null – The field’s instructions
isNewboolean – Whether the component is new (unsaved)
isTranslatableboolean
iteratorArrayIterator – An iterator for traversing the items in the list.
labelIdstring
layoutIdinteger, null – The ID of the field layout that the field was fetched from
namestring, null – The field’s name
oldHandlestring, null – The field’s previous handle
oldSettingsarray, null – The field’s previous settings
requiredboolean, null – Whether the field is required in the field layout it was fetched from
scenariostring – The scenario that this model is in.
searchableboolean – Whether the field's values should be registered as search keywords on the elements.
settingsarray – The component’s settings
settingsHtmlstring, null
sortOptionarray
sortOrderinteger, null – The field’s sort position in the field layout it was fetched from
tabIdinteger, null – The tab ID of the field layout that the field was fetched from
translationDescriptionstring, null
translationKeyFormatstring, null – The field’s translation key format, if translationMethod is "custom"
translationMethodstring – The field’s translation method
uidstring, null – The field's UID
validatorsArrayObject, yii\validators\Validator – All the validators declared in the model.

contentColumnType

Type
string, string[]
Default value
null
Access
Read-only

The column type(s). yii\db\QueryBuilder::getColumnType() will be called to convert the give column type to the physical one. For example, string will be converted as varchar(255) and string(100) becomes varchar(100). not null will automatically be appended as well.

View source

contentGqlMutationArgumentType

Type
\GraphQL\Type\Definition\Type, array
Default value
null
Access
Read-only
Since
3.5.0

View source

contentGqlQueryArgumentType

Type
\GraphQL\Type\Definition\Type, array
Default value
null
Access
Read-only
Since
3.5.0

View source

contentGqlType

Type
\GraphQL\Type\Definition\Type, array
Default value
null
Access
Read-only
Since
3.3.0

View source

eagerLoadingGqlConditions

Type
array, null
Default value
null
Access
Read-only
Since
3.3.0

View source

elementConditionRuleType

Type
string, array, null
Default value
null
Access
Read-only

View source

elementValidationRules

Type
array
Default value
null
Access
Read-only

View source

group

Type
craft\models\FieldGroup, null
Default value
null
Access
Read-only

View source

inputId

Type
string
Default value
null
Access
Read-only
Since
3.7.32

View source

isTranslatable

Type
boolean
Default value
null
Access
Read-only

View source

labelId

Type
string
Default value
null
Access
Read-only
Since
4.1.0

View source

sortOption

Type
array
Default value
null
Access
Read-only
Since
3.2.0

View source

translationDescription

Type
string, null
Default value
null
Access
Read-only
Since
3.4.0

View source

Public Methods

MethodDescription
__call()Calls the named method which is not a class method.
__clone()
__construct()
__get()Returns the value of a component property.
__isset()Checks if a property is set, i.e. defined and not null.
__set()Sets the value of a component property.
__toString()Use the translated field name as the string representation.
__unset()Sets a component property to be null.
activeAttributes()Returns the attribute names that are subject to validation in the current scenario.
addError()Adds a new error to the specified attribute.
addErrors()Adds a list of errors.
addModelErrors()Adds errors from another model, with a given attribute name prefix.
afterDelete()Performs actions after a component is deleted.
afterElementDelete()Performs actions after the element has been deleted.
afterElementDeleteForSite()Performs actions after the element has been deleted.
afterElementPropagate()Performs actions after the element has been fully saved and propagated to other sites.
afterElementRestore()Performs actions after the element has been restored.
afterElementSave()Performs actions after the element has been saved.
afterSave()Performs actions after a component is saved.
afterValidate()This method is invoked after validation ends.
attachBehavior()Attaches a behavior to this component.
attachBehaviors()Attaches a list of behaviors to the component.
attributeHints()Returns the attribute hints.
attributeLabels()Returns the attribute labels.
attributes()Returns the list of attribute names.
beforeApplyDelete()Performs actions before a component delete is applied to the database.
beforeDelete()Performs actions before a component is deleted.
beforeElementDelete()Performs actions before an element is deleted.
beforeElementDeleteForSite()Performs actions before an element is deleted for a site.
beforeElementRestore()Performs actions before an element is restored.
beforeElementSave()Performs actions before an element is saved.
beforeSave()Performs actions before a component is saved.
beforeValidate()This method is invoked before validation starts.
behaviors()Returns a list of behaviors that this component should behave as.
canGetProperty()Returns a value indicating whether a property can be read.
canSetProperty()Returns a value indicating whether a property can be set.
className()Returns the fully qualified name of this class.
clearErrors()Removes errors for all attributes or a single attribute.
copyValue()Copies the field’s value from one element to another.
createValidators()Creates validator objects based on the validation rules specified in rules().
datetimeAttributes()Returns the names of any attributes that should hold DateTime values.
detachBehavior()Detaches a behavior from the component.
detachBehaviors()Detaches all behaviors from the component.
displayName()Returns the display name of this class.
ensureBehaviors()Makes sure that the behaviors declared in behaviors() are attached to this component.
extraFields()Returns the list of fields that can be expanded further and returned by toArray().
fields()Returns the list of fields that should be returned by default by toArray() when no specific fields are specified.
formName()Returns the form name that this model class should use.
generateAttributeLabel()Generates a user friendly attribute label based on the give attribute name.
getActiveValidators()Returns the validators applicable to the current scenario.
getAttributeHint()Returns the text hint for the specified attribute.
getAttributeLabel()Returns the text label for the specified attribute.
getAttributes()Returns attribute values.
getBehavior()Returns the named behavior object.
getBehaviors()Returns all behaviors attached to this component.
getContentColumnType()Returns the column type(s) that this field should get within the content table.
getContentGqlMutationArgumentType()Returns the GraphQL type to be used as an argument in mutations for this field type.
getContentGqlQueryArgumentType()Returns the GraphQL type to be used as an argument in queries for this field type.
getContentGqlType()Returns the GraphQL type to be used for this field type.
getEagerLoadingGqlConditions()Returns an array that lists the scopes this custom field allows when eager-loading or false if eager-loading should not be allowed in the GraphQL context.
getElementConditionRuleType()Returns the element condition rule class that should be used for this field.
getElementValidationRules()Returns the validation rules for an element with this field.
getErrorSummary()Returns the errors for all attributes as a one-dimensional array.
getErrors()Returns the errors for all attributes or a single attribute.
getFirstError()Returns the first error of the specified attribute.
getFirstErrors()Returns the first error of every attribute in the model.
getGroup()Returns the field’s group.
getInputHtml()Returns the field’s input HTML.
getInputId()Returns the input’s ID, which the <label>’s for attribute should reference.
getIsNew()Returns whether the component is new (unsaved).
getIsTranslatable()Returns whether the field should be shown as translatable in the UI.
getIterator()Returns an iterator for traversing the attributes in the model.
getLabelId()Returns the input’s label ID.
getOrientation()Returns the orientation the field should use (ltr or rtl).
getScenario()Returns the scenario that this model is used in.
getSearchKeywords()Returns the search keywords that should be associated with this field.
getSettings()Returns an array of the component’s settings.
getSettingsHtml()Returns the component’s settings HTML.
getSortOption()Returns the sort option array that should be included in the element’s sortOptions() response.
getStaticHtml()Returns a static (non-editable) version of the field’s input HTML.
getStatus()Returns the status of the field for a given element.
getTableAttributeHtml()Returns the HTML that should be shown for this field in Table View.
getTranslationDescription()Returns the description of this field’s translation support.
getTranslationKey()Returns the field’s translation key, based on a given element.
getValidators()Returns all the validators declared in rules().
hasContentColumn()Returns whether this field has a column in the content table.
hasErrors()Returns a value indicating whether there is any validation error.
hasEventHandlers()Returns a value indicating whether there is any handler attached to the named event.
hasMethod()Returns a value indicating whether a method is defined.
hasProperty()Returns a value indicating whether a property is defined for this component.
includeInGqlSchema()Returns whether the field should be included in the given GraphQL schema.
init()Initializes the object.
instance()Returns static class instance, which can be used to obtain meta information.
isAttributeActive()Returns a value indicating whether the attribute is active in the current scenario.
isAttributeRequired()Returns a value indicating whether the attribute is required.
isAttributeSafe()Returns a value indicating whether the attribute is safe for massive assignments.
isRequirable()Returns whether the field can be marked as required.
isSelectable()Returns whether the component should be selectable in component Type selects.
isValueEmpty()Returns whether the given value should be considered “empty” to a validator.
load()Populates the model with input data.
loadMultiple()Populates a set of models with the data from end user.
modifyElementIndexQuery()Modifies an element index query.
modifyElementsQuery()Modifies an element query.
normalizeValue()Normalizes the field’s value for use.
normalizeValueFromRequest()Normalizes a posted field value for use.
off()Detaches an existing event handler from this component.
offsetExists()Returns whether there is an element at the specified offset.
offsetGet()Returns the element at the specified offset.
offsetSet()Sets the element at the specified offset.
offsetUnset()Sets the element value at the specified offset to null.
on()Attaches an event handler to an event.
onUnsafeAttribute()This method is invoked when an unsafe attribute is being massively assigned.
rules()Returns the validation rules for attributes.
safeAttributes()Returns the attribute names that are safe to be massively assigned in the current scenario.
scenarios()Returns a list of scenarios and the corresponding active attributes.
serializeValue()Prepares the field’s value to be stored somewhere, like the content table.
setAttributes()Sets the attribute values in a massive way.
setIsFresh()Sets whether the field is fresh.
setScenario()Sets the scenario for the model.
settingsAttributes()Returns the list of settings attribute names.
supportedTranslationMethods()Returns which translation methods the field supports.
toArray()Converts the model into an array.
trigger()Triggers an event.
useFieldset()Returns whether the field should use a <fieldset> + <legend> instead of a <div> + <label>.
validate()Performs the data validation.
validateMultiple()Validates multiple models.
valueType()Returns the PHPDoc type this field’s values will have.

__toString()

Use the translated field name as the string representation.

View source

Returns

string

afterElementDelete()

Performs actions after the element has been deleted.

View source

Arguments

afterElementDeleteForSite()

Since
4.7.0

Performs actions after the element has been deleted.

View source

Arguments

afterElementPropagate()

Since
3.2.0

Performs actions after the element has been fully saved and propagated to other sites.

View source

Arguments

afterElementRestore()

Since
3.1.0

Performs actions after the element has been restored.

View source

Arguments

afterElementSave()

Performs actions after the element has been saved.

View source

Arguments

attributeLabels()

Returns the attribute labels.

Attribute labels are mainly used for display purpose. For example, given an attribute firstName, we can declare a label First Name which is more user-friendly and can be displayed to end users.

By default an attribute label is generated using generateAttributeLabel(). This method allows you to explicitly specify attribute labels.

Note, in order to inherit labels defined in the parent class, a child class needs to merge the parent labels with child labels using functions such as array_merge().

View source

Returns

array – Attribute labels (name => label)

beforeElementDelete()

Performs actions before an element is deleted.

View source

Arguments

Returns

boolean – Whether the element should be deleted

beforeElementDeleteForSite()

Since
4.7.0

Performs actions before an element is deleted for a site.

View source

Arguments

Returns

boolean – Whether the element should be deleted for a site

beforeElementRestore()

Since
3.1.0

Performs actions before an element is restored.

View source

Arguments

Returns

boolean – Whether the element should be restored

beforeElementSave()

Performs actions before an element is saved.

View source

Arguments

Returns

boolean – Whether the element should be saved

beforeSave()

Performs actions before a component is saved.

View source

Arguments

  • $isNew (boolean) – Whether the component is brand new

Returns

boolean – Whether the component should be saved

copyValue()

Since
3.7.0

Copies the field’s value from one element to another.

View source

Arguments

getContentColumnType()

Returns the column type(s) that this field should get within the content table.

This method will only be called if hasContentColumn() returns true.

If the field type requires multiple columns, an array should be returned:

php
return [
    'date' => 'datetime',
    'tz' => 'string',
];

When this is the case, all columns’ values will be passed to normalizeValue() as an associative array, whose keys match the keys returned by this method. The field type should also override serializeValue() to ensure values are being returned as associative arrays using the same keys.

WARNING

JSON columns do not work with MariaDB, so they should not be used by plugins which will be shared publicly.

View source

Returns

string, string[] – The column type(s). yii\db\QueryBuilder::getColumnType() will be called to convert the give column type to the physical one. For example, string will be converted as varchar(255) and string(100) becomes varchar(100). not null will automatically be appended as well.

getContentGqlMutationArgumentType()

Since
3.5.0

Returns the GraphQL type to be used as an argument in mutations for this field type.

View source

Returns

\GraphQL\Type\Definition\Type, array

getContentGqlQueryArgumentType()

Since
3.5.0

Returns the GraphQL type to be used as an argument in queries for this field type.

View source

Returns

\GraphQL\Type\Definition\Type, array

getContentGqlType()

Since
3.3.0

Returns the GraphQL type to be used for this field type.

View source

Returns

\GraphQL\Type\Definition\Type, array

getEagerLoadingGqlConditions()

Since
3.3.0

Returns an array that lists the scopes this custom field allows when eager-loading or false if eager-loading should not be allowed in the GraphQL context.

View source

Returns

array, null

getElementConditionRuleType()

Returns the element condition rule class that should be used for this field.

The rule class must be an instance of craft\fields\conditions\FieldConditionRuleInterface.

View source

Returns

string, array, null

getElementValidationRules()

Returns the validation rules for an element with this field.

Rules should be defined in the array syntax required by yii\base\Model::rules(), with one difference: you can skip the first argument (the attribute list).

php
[
    // explicitly specify the field attribute
    [$this->handle, 'string', 'min' => 3, 'max' => 12],
    // skip the field attribute
    ['string', 'min' => 3, 'max' => 12],
    // you can only pass the validator class name/handle if not setting any params
    'bool',
]

To register validation rules that should only be enforced for live elements, set the rule scenario to live:

php
[
    ['string', 'min' => 3, 'max' => 12, 'on' => \craft\base\Element::SCENARIO_LIVE],
]

View source

Returns

array

getGroup()

Returns the field’s group.

View source

Returns

craft\models\FieldGroup, null

getInputHtml()

Returns the field’s input HTML.

An extremely simple implementation would be to directly return some HTML:

php
return '<textarea name="'.$name.'">'.$value.'</textarea>';

For more complex inputs, you might prefer to create a template, and render it via craft\web\View::renderTemplate(). For example, the following code would render a template located at path/to/myplugin/templates/_fieldinput.html, passing the $name and $value variables to it:

php
return Craft::$app->view->renderTemplate('myplugin/_fieldinput', [
    'name'  => $name,
    'value' => $value
]);

If you need to tie any JavaScript code to your input, it’s important to know that any name and id attributes within the returned HTML will probably get namespaced, however your JavaScript code will be left untouched. For example, if getInputHtml() returns the following HTML:

html
<textarea id="foo" name="foo"></textarea>
<script type="text/javascript">
  var textarea = document.getElementById('foo');
</script>

…then it might actually look like this before getting output to the browser:

html
<textarea id="namespace-foo" name="namespace[foo]"></textarea>
<script type="text/javascript">
  var textarea = document.getElementById('foo');
</script>

As you can see, that JavaScript code will not be able to find the textarea, because the textarea’s id attribute was changed from foo to namespace-foo. Before you start adding namespace- to the beginning of your element ID selectors, keep in mind that the actual namespace is going to change depending on the context. Often they are randomly generated. So it’s not quite that simple.

Thankfully, Craft provides a couple handy methods that can help you deal with this:

So here’s what a getInputHtml() method that includes field-targeting JavaScript code might look like:

php
public function getInputHtml($value, $element): string
{
    // Generate a valid ID based on the input name
    $id = craft\helpers\Html::id($name);
    // Figure out what that ID is going to be namespaced into
    $namespacedId = Craft::$app->view->namespaceInputId($id);
    // Render and return the input template
    return Craft::$app->view->renderTemplate('myplugin/_fieldinput', [
        'name' => $name,
        'id' => $id,
        'namespacedId' => $namespacedId,
        'value' => $value,
    ]);
}

And the _fieldinput.html template might look like this:

twig
<textarea id="{{ id }}" name="{{ name }}">{{ value }}</textarea>
<script type="text/javascript">
  var textarea = document.getElementById('{{ namespacedId }}');
</script>

The same principles also apply if you’re including your JavaScript code with craft\web\View::registerJs().

View source

Arguments

  • $value (mixed) – The field’s value. This will either be the normalized value, raw POST data (i.e. if there was a validation error), or null
  • $element (craft\base\ElementInterface, null) – The element the field is associated with, if there is one

Returns

string – The input HTML.

getInputId()

Since
3.7.32

Returns the input’s ID, which the <label>’s for attribute should reference.

View source

Returns

string

getIsTranslatable()

Returns whether the field should be shown as translatable in the UI.

Note this method has no effect on whether the field’s value will get copied over to other sites when the element is actually getting saved. That is determined by getTranslationKey().

View source

Arguments

Returns

boolean

getLabelId()

Since
4.1.0

Returns the input’s label ID.

View source

Returns

string

getOrientation()

Since
3.7.5

Returns the orientation the field should use (ltr or rtl).

View source

Arguments

Returns

string

getSearchKeywords()

Returns the search keywords that should be associated with this field.

The keywords can be separated by commas and/or whitespace; it doesn’t really matter. craft\services\Search will be able to find the individual keywords in whatever string is returned, and normalize them for you.

View source

Arguments

  • $value (mixed) – The field’s value
  • $element (craft\base\ElementInterface) – The element the field is associated with, if there is one

Returns

string – A string of search keywords.

getSortOption()

Since
3.2.0

Returns the sort option array that should be included in the element’s sortOptions() response.

See also craft\base\SortableFieldInterface::getSortOption()View source

Returns

array

getStaticHtml()

Returns a static (non-editable) version of the field’s input HTML.

This function is called to output field values when viewing element drafts.

View source

Arguments

Returns

string – The static version of the field’s input HTML

getStatus()

Since
3.7.0

Returns the status of the field for a given element.

If the field has a known status, an array should be returned with two elements:

  • The status class (modified, outdated, or conflicted)
  • The status label

For example:

php
return ['modified', 'The field has been modified.');

View source

Arguments

Returns

array, null

getTableAttributeHtml()

Returns the HTML that should be shown for this field in Table View.

View source

Arguments

Returns

string – The HTML that should be shown for this field in Table View

getTranslationDescription()

Since
3.4.0

Returns the description of this field’s translation support.

View source

Arguments

Returns

string, null

getTranslationKey()

Returns the field’s translation key, based on a given element.

When saving an element on a multi-site Craft install, if $propagate is true for craft\services\Elements::saveElement(), then getTranslationKey() will be called for each custom field and for each site the element should be propagated to. If the method returns the same value as it did for the initial site, then the initial site’s value will be copied over to the target site.

View source

Arguments

Returns

string – The translation key

hasContentColumn()

Returns whether this field has a column in the content table.

WARNING

If you set this to false, you will be on your own in terms of saving and retrieving your field values.

View source

Returns

boolean

includeInGqlSchema()

Since
3.6.0

Returns whether the field should be included in the given GraphQL schema.

View source

Arguments

Returns

boolean

init()

Initializes the object.

This method is invoked at the end of the constructor after the object is initialized with the given configuration.

View source

isRequirable()

Since
4.0.0

Returns whether the field can be marked as required.

View source

Returns

boolean

isValueEmpty()

Returns whether the given value should be considered “empty” to a validator.

View source

Arguments

  • $value (mixed) – The field’s value
  • $element (craft\base\ElementInterface) – The element the field is associated with, if there is one

Returns

boolean – Whether the value should be considered “empty”

modifyElementIndexQuery()

Since
3.0.9

Modifies an element index query.

This method will be called whenever an element index is being loaded, which contains a column for this field.

View source

Arguments

modifyElementsQuery()

Modifies an element query.

This method will be called whenever elements are being searched for that may have this field assigned to them. If the method returns false, the query will be stopped before it ever gets a chance to execute.

View source

Arguments

Throws

normalizeValue()

Normalizes the field’s value for use.

This method is called when the field’s value is first accessed from the element. For example, the first time element.myFieldHandle is called from a template, or right before getInputHtml() is called. Whatever this method returns is what element.myFieldHandle will likewise return, and what getInputHtml()’s and serializeValue()’s $value arguments will be set to.

The value passed into this method will vary depending on the context.

  • If a new, unsaved element is being edited for the first time (such as an entry within a Quick Post widget on the Dashboard), the value will be null.
  • If an element is currently being saved, the value will be the field’s POST data.
  • If an existing element was retrieved from the database, the value will be whatever is stored in the field’s content table column. (Or if the field doesn’t have a content table column per hasContentColumn(), the value will be null.)
  • If the field is being cleared out (e.g. via the resave/entries command with --to :empty:), the value will be an empty string ('').

There are cases where a pre-normalized value could be passed in as well, so be sure to account for that.

View source

Arguments

Returns

mixed – The prepared field value

normalizeValueFromRequest()

Since
4.5.0

Normalizes a posted field value for use.

This should call normalizeValue() by default, unless there are any special considerations that need to be made for posted values.

View source

Arguments

Returns

mixed – The prepared field value

serializeValue()

Prepares the field’s value to be stored somewhere, like the content table.

Data types that are JSON-encodable are safe (arrays, integers, strings, booleans, etc). Whatever this returns should be something normalizeValue() can handle.

View source

Arguments

Returns

mixed – The serialized field value

setIsFresh()

Sets whether the field is fresh.

View source

Arguments

  • $isFresh (boolean, null) – Whether the field is fresh.

supportedTranslationMethods()

Returns which translation methods the field supports.

This method should return an array with at least one of the following values:

  • 'none' (values will always be copied to other sites)
  • 'language' (values will be copied to other sites with the same language)
  • 'site' (values will never be copied to other sites)
  • 'custom' (values will be copied/not copied depending on a custom translation key)

View source

Returns

string[]

useFieldset()

Since
3.6.0

Returns whether the field should use a <fieldset> + <legend> instead of a <div> + <label>.

View source

Returns

boolean

valueType()

Since
3.2.0

Returns the PHPDoc type this field’s values will have.

It will be used by the generated CustomFieldBehavior class.

If the values can be of more than one type, return multiple types separated by |s.

php
public static function valueType(): string
{
     return 'int|string';
}

View source

Returns

string

Protected Methods

MethodDescription
defineBehaviors()Returns the behaviors to attach to this class.
defineRules()Returns the validation rules for attributes.
extractFieldsFor()Extract nested fields from a fields collection for a given root field Nested fields are separated with dots (.). e.g: "item.id" The previous example would extract "id".
extractRootFields()Extracts the root field names from nested fields.
inputHtml()Returns the field’s input HTML.
isFresh()Returns whether this is the first time the element’s content has been edited.
requestParamName()Returns the field’s param name on the request.
resolveFields()Determines which fields can be returned by toArray().
searchKeywords()Returns the search keywords that should be associated with this field.

defineRules()

Since
3.4.0

Returns the validation rules for attributes.

See rules() for details about what should be returned.

Models should override this method instead of rules() so EVENT_DEFINE_RULES handlers can modify the class-defined rules.

View source

Returns

array

inputHtml()

Since
3.5.0

Returns the field’s input HTML.

See also getInputHtml()View source

Arguments

  • $value (mixed) – The field’s value. This will either be the normalized value, raw POST data (i.e. if there was a validation error), or null
  • $element (craft\base\ElementInterface, null) – The element the field is associated with, if there is one

Returns

string – The input HTML.

isFresh()

Returns whether this is the first time the element’s content has been edited.

View source

Arguments

Returns

boolean

requestParamName()

Returns the field’s param name on the request.

View source

Arguments

Returns

string, null – The field’s param name on the request

searchKeywords()

Since
3.5.0

Returns the search keywords that should be associated with this field.

The keywords can be separated by commas and/or whitespace; it doesn’t really matter. craft\services\Search will be able to find the individual keywords in whatever string is returned, and normalize them for you.

View source

Arguments

  • $value (mixed) – The field’s value
  • $element (craft\base\ElementInterface) – The element the field is associated with, if there is one

Returns

string – A string of search keywords.

Constants

ConstantDescription
SCENARIO_DEFAULTThe name of the default scenario.
TRANSLATION_METHOD_CUSTOM
TRANSLATION_METHOD_LANGUAGE
TRANSLATION_METHOD_NONE
TRANSLATION_METHOD_SITE
TRANSLATION_METHOD_SITE_GROUP

Events

EVENT_AFTER_ELEMENT_DELETE

Type
craft\events\FieldElementEvent

The event that is triggered after the element is deleted.


EVENT_AFTER_ELEMENT_PROPAGATE

Type
craft\events\FieldElementEvent
Since
3.2.0

The event that is triggered after the element is fully saved and propagated to other sites.


EVENT_AFTER_ELEMENT_RESTORE

Type
craft\events\FieldElementEvent
Since
3.1.0

The event that is triggered after the element is restored.


EVENT_AFTER_ELEMENT_SAVE

Type
craft\events\FieldElementEvent

The event that is triggered after the element is saved.


EVENT_BEFORE_ELEMENT_DELETE

Type
craft\events\FieldElementEvent

The event that is triggered before the element is deleted.

You may set yii\base\ModelEvent::$isValid to false to prevent the element from getting deleted.


EVENT_BEFORE_ELEMENT_RESTORE

Type
craft\events\FieldElementEvent
Since
3.1.0

The event that is triggered before the element is restored.

You may set yii\base\ModelEvent::$isValid to false to prevent the element from getting restored.


EVENT_BEFORE_ELEMENT_SAVE

Type
craft\events\FieldElementEvent

The event that is triggered before the element is saved.

You may set yii\base\ModelEvent::$isValid to false to prevent the element from getting saved.


EVENT_DEFINE_INPUT_HTML

Type
craft\events\DefineFieldHtmlEvent
Since
3.5.0

The event that is triggered when defining the field’s input HTML.


EVENT_DEFINE_KEYWORDS

Type
craft\events\DefineFieldKeywordsEvent
Since
3.5.0

The event that is triggered when defining the field’s search keywords for an element.

Note that you must set craft\base\Event::$handled to true if you want the field to accept your custom $keywords value.

php
Event::on(
    craft\fields\Lightswitch::class,
    craft\base\Field::EVENT_DEFINE_KEYWORDS,
    function(craft\events\DefineFieldKeywordsEvent $e
) {
    // @var craft\fields\Lightswitch $field
    $field = $e->sender;

    if ($field->handle === 'fooOrBar') {
        // Override the keywords depending on whether the lightswitch is enabled or not
        $e->keywords = $e->value ? 'foo' : 'bar';
        $e->handled = true;
    }
});