You are here

public static function FieldStorageConfig::loadByName in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/field/src/Entity/FieldStorageConfig.php \Drupal\field\Entity\FieldStorageConfig::loadByName()

Loads a field config entity based on the entity type and field name.

Parameters

string $entity_type_id: ID of the entity type.

string $field_name: Name of the field.

Return value

static The field config entity if one exists for the provided field name, otherwise NULL.

49 calls to FieldStorageConfig::loadByName()
BlockContentFieldFilterTest::setUp in core/modules/block_content/tests/src/Functional/Views/BlockContentFieldFilterTest.php
block_content_add_body_field in core/modules/block_content/block_content.module
Adds the default body field to a custom block type.
CKEditorIntegrationTest::setUp in core/modules/ckeditor/tests/src/FunctionalJavascript/CKEditorIntegrationTest.php
CommentFieldsTest::testCommentDefaultFields in core/modules/comment/tests/src/Functional/CommentFieldsTest.php
Tests that the default 'comment_body' field is correctly added.
CommentFieldsTest::testCommentInstallAfterContentModule in core/modules/comment/tests/src/Functional/CommentFieldsTest.php
Tests that comment module works when installed after a content module.

... See full list

File

core/modules/field/src/Entity/FieldStorageConfig.php, line 810

Class

FieldStorageConfig
Defines the Field storage configuration entity.

Namespace

Drupal\field\Entity

Code

public static function loadByName($entity_type_id, $field_name) {
  return \Drupal::entityTypeManager()
    ->getStorage('field_storage_config')
    ->load($entity_type_id . '.' . $field_name);
}