Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. BaseFieldDefinition.php

function BaseFieldDefinition::setProvider

Sets the name of the provider of this field.

Parameters

string $provider: The provider name to set.

Return value

$this

File

core/lib/Drupal/Core/Field/BaseFieldDefinition.php, line 206

Class

BaseFieldDefinition
A class for defining entity fields.

Namespace

Drupal\Core\Field

Code

public function setProvider($provider) {
    $this->definition['provider'] = $provider;
    return $this;
}
RSS feed
Powered by Drupal