public static function AccessToken::baseFieldDefinitions in Simple OAuth (OAuth2) & OpenID Connect 8
Provides base field definitions for an entity type.
Implementations typically use the class \Drupal\Core\Field\BaseFieldDefinition for creating the field definitions; for example a 'name' field could be defined as the following:
$fields['name'] = BaseFieldDefinition::create('string')
->setLabel(t('Name'));
By definition, base fields are fields that exist for every bundle. To provide definitions for fields that should only exist on some bundles, use \Drupal\Core\Entity\FieldableEntityInterface::bundleFieldDefinitions().
The definitions returned by this function can be overridden for all bundles by hook_entity_base_field_info_alter() or overridden on a per-bundle basis via 'base_field_override' configuration entities.
Parameters
\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition. Useful when a single class is used for multiple, possibly dynamic entity types.
Return value
\Drupal\Core\Field\FieldDefinitionInterface[] An array of base field definitions for the entity type, keyed by field name.
Overrides ContentEntityBase::baseFieldDefinitions
See also
\Drupal\Core\Entity\EntityFieldManagerInterface::getFieldDefinitions()
\Drupal\Core\Entity\FieldableEntityInterface::bundleFieldDefinitions()
File
- src/
Entity/ AccessToken.php, line 80
Class
- AccessToken
- Defines the Access Token entity.
Namespace
Drupal\simple_oauth\EntityCode
public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
$fields['id'] = BaseFieldDefinition::create('integer')
->setLabel(t('ID'))
->setDescription(t('The ID of the Access Token entity.'))
->setReadOnly(TRUE);
$fields['uuid'] = BaseFieldDefinition::create('uuid')
->setLabel(t('UUID'))
->setDescription(t('The UUID of the Access Token entity.'))
->setReadOnly(TRUE);
$fields['user_id'] = BaseFieldDefinition::create('entity_reference')
->setLabel(t('Creator'))
->setDescription(t('The user ID of author of the Access Token entity.'))
->setRevisionable(TRUE)
->setSetting('target_type', 'user')
->setSetting('handler', 'default')
->setDefaultValueCallback('Drupal\\node\\Entity\\Node::getCurrentUserId')
->setTranslatable(TRUE)
->setDisplayOptions('view', array(
'label' => 'inline',
'type' => 'author',
'weight' => 0,
))
->setDisplayOptions('form', array(
'type' => 'hidden',
))
->setDisplayConfigurable('form', TRUE)
->setDisplayConfigurable('view', TRUE);
$fields['auth_user_id'] = BaseFieldDefinition::create('entity_reference')
->setLabel(t('User'))
->setDescription(t('The user ID of the user this access token is authenticating.'))
->setRevisionable(TRUE)
->setSetting('target_type', 'user')
->setSetting('handler', 'default')
->setDefaultValueCallback('Drupal\\node\\Entity\\Node::getCurrentUserId')
->setTranslatable(FALSE)
->setDisplayOptions('view', array(
'label' => 'inline',
'type' => 'author',
'weight' => 0,
))
->setCardinality(1)
->setDisplayOptions('form', array(
'type' => 'entity_reference_autocomplete',
'weight' => 0,
'settings' => array(
'match_operator' => 'CONTAINS',
'size' => '60',
'autocomplete_type' => 'tags',
'placeholder' => '',
),
))
->setDisplayConfigurable('form', TRUE)
->setDisplayConfigurable('view', TRUE)
->setPropertyConstraints('target_id', [
'OwnOrAdmin' => [
'permission' => 'administer access token entities',
],
]);
$fields['resource'] = BaseFieldDefinition::create('entity_reference')
->setLabel(t('Resource'))
->setDescription(t('The resource for this Access Token.'))
->setRevisionable(TRUE)
->setSetting('target_type', 'access_token_resource')
->setSetting('handler', 'default')
->setDefaultValue('global')
->setTranslatable(FALSE)
->setDisplayOptions('view', array(
'label' => 'inline',
'type' => 'entity_reference_label',
'weight' => 4,
))
->setDisplayOptions('form', array(
'type' => 'entity_reference_autocomplete',
'weight' => 4,
'settings' => array(
'match_operator' => 'CONTAINS',
'size' => '60',
'autocomplete_type' => 'tags',
'placeholder' => '',
),
))
->setDisplayConfigurable('form', TRUE)
->setDisplayConfigurable('view', TRUE);
$fields['access_token_id'] = BaseFieldDefinition::create('entity_reference')
->setLabel(t('Refresh Token'))
->setDescription(t('The Refresh Token to re-create an Access Token.'))
->setRevisionable(TRUE)
->setSetting('target_type', 'access_token')
->setSetting('handler', 'default')
->setTranslatable(FALSE)
->setDisplayOptions('form', array(
'type' => 'hidden',
))
->setDisplayConfigurable('form', TRUE)
->setDisplayConfigurable('view', TRUE);
$fields['value'] = BaseFieldDefinition::create('string')
->setLabel(t('Token'))
->setDescription(t('The token value.'))
->setSettings(array(
'max_length' => 128,
'text_processing' => 0,
))
->setRequired(TRUE)
->setDefaultValue('')
->setDisplayOptions('view', array(
'label' => 'inline',
'type' => 'string',
'weight' => -4,
))
->setDisplayOptions('form', array(
'type' => 'hidden',
))
->setDisplayConfigurable('form', FALSE)
->setDisplayConfigurable('view', TRUE);
$fields['created'] = BaseFieldDefinition::create('created')
->setLabel(t('Created'))
->setDescription(t('The time that the entity was created.'))
->setDisplayOptions('view', array(
'label' => 'inline',
'type' => 'timestamp',
'weight' => 1,
))
->setDisplayConfigurable('view', TRUE);
$fields['changed'] = BaseFieldDefinition::create('changed')
->setLabel(t('Changed'))
->setDescription(t('The time that the entity was last edited.'));
$fields['expire'] = BaseFieldDefinition::create('timestamp')
->setLabel(t('Expire'))
->setDefaultValueCallback(__CLASS__ . '::defaultExpiration')
->setDescription(t('The time when the token expires.'))
->setDisplayOptions('form', array(
'type' => 'datetime_timestamp',
'weight' => 1,
))
->setDisplayOptions('view', array(
'label' => 'inline',
'type' => 'timestamp',
'weight' => 1,
))
->setRequired(TRUE)
->setDisplayConfigurable('form', TRUE)
->setDisplayConfigurable('view', TRUE);
return $fields;
}