function path_entity_base_field_info in Drupal 9
Same name and namespace in other branches
- 8 core/modules/path/path.module \path_entity_base_field_info()
Implements hook_entity_base_field_info().
File
- core/
modules/ path/ path.module, line 100 - Enables users to rename URLs.
Code
function path_entity_base_field_info(EntityTypeInterface $entity_type) {
if (in_array($entity_type
->id(), [
'taxonomy_term',
'node',
'media',
], TRUE)) {
$fields['path'] = BaseFieldDefinition::create('path')
->setLabel(t('URL alias'))
->setTranslatable(TRUE)
->setDisplayOptions('form', [
'type' => 'path',
'weight' => 30,
])
->setDisplayConfigurable('form', TRUE)
->setComputed(TRUE);
return $fields;
}
}