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

Breadcrumb

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

function BaseFieldDefinition::setDeleted

Sets whether the field storage is deleted.

Parameters

bool $deleted: Whether the field storage is deleted.

Return value

$this

File

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

Class

BaseFieldDefinition
A class for defining entity fields.

Namespace

Drupal\Core\Field

Code

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