function PathAlias::baseFieldDefinitions

Same name and namespace in other branches
  1. 9 core/modules/path_alias/src/Entity/PathAlias.php \Drupal\path_alias\Entity\PathAlias::baseFieldDefinitions()
  2. 8.9.x core/modules/path_alias/src/Entity/PathAlias.php \Drupal\path_alias\Entity\PathAlias::baseFieldDefinitions()
  3. 10 core/modules/path_alias/src/Entity/PathAlias.php \Drupal\path_alias\Entity\PathAlias::baseFieldDefinitions()

Overrides ContentEntityBase::baseFieldDefinitions

File

core/modules/path_alias/src/Entity/PathAlias.php, line 54

Class

PathAlias
Defines the path_alias entity class.

Namespace

Drupal\path_alias\Entity

Code

public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
    $fields = parent::baseFieldDefinitions($entity_type);
    $fields['path'] = BaseFieldDefinition::create('string')->setLabel(new TranslatableMarkup('System path'))
        ->setDescription(new TranslatableMarkup('The path that this alias belongs to.'))
        ->setRequired(TRUE)
        ->setRevisionable(TRUE)
        ->addPropertyConstraints('value', [
        'Regex' => [
            'pattern' => '/^\\//i',
            'message' => new TranslatableMarkup('The source path has to start with a slash.'),
        ],
    ])
        ->addPropertyConstraints('value', [
        'ValidPath' => [],
    ]);
    $fields['alias'] = BaseFieldDefinition::create('string')->setLabel(new TranslatableMarkup('URL alias'))
        ->setDescription(new TranslatableMarkup('An alias used with this path.'))
        ->setRequired(TRUE)
        ->setRevisionable(TRUE)
        ->addPropertyConstraints('value', [
        'Regex' => [
            'pattern' => '/^\\//i',
            'message' => new TranslatableMarkup('The alias path has to start with a slash.'),
        ],
    ]);
    $fields['langcode']->setDefaultValue(LanguageInterface::LANGCODE_NOT_SPECIFIED);
    // Add the published field.
    $fields += static::publishedBaseFieldDefinitions($entity_type);
    $fields['status']->setTranslatable(FALSE);
    return $fields;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.