function BaseFieldDefinition::getCardinality
Returns the maximum number of items allowed for the field.
Possible values are positive integers or FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED.
Return value
int The field cardinality.
Overrides FieldStorageDefinitionInterface::getCardinality
1 call to BaseFieldDefinition::getCardinality()
- BaseFieldDefinition::isMultiple in core/lib/ Drupal/ Core/ Field/ BaseFieldDefinition.php 
- Returns whether the field can contain multiple items.
File
- 
              core/lib/ Drupal/ Core/ Field/ BaseFieldDefinition.php, line 258 
Class
- BaseFieldDefinition
- A class for defining entity fields.
Namespace
Drupal\Core\FieldCode
public function getCardinality() {
  // @todo: Allow to control this.
  return $this->definition['cardinality'] ?? 1;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
