function FieldTestBase::setUpFieldStorages

File

core/modules/field/src/Tests/Views/FieldTestBase.php, line 64

Class

FieldTestBase
Provides some helper methods for testing fieldapi integration into views.

Namespace

Drupal\field\Tests\Views

Code

public function setUpFieldStorages($amount = 3, $type = 'string') {
  // Create three fields.
  $field_names = [];
  for ($i = 0; $i < $amount; $i++) {
    $field_names[$i] = 'field_name_' . $i;
    $this->fieldStorages[$i] = FieldStorageConfig::create([
      'field_name' => $field_names[$i],
      'entity_type' => 'node',
      'type' => $type,
    ]);
    $this->fieldStorages[$i]
      ->save();
  }
  return $field_names;
}

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