You are here

public function FieldTest::setTestValue in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/tests/modules/views_test_data/src/Plugin/views/field/FieldTest.php \Drupal\views_test_data\Plugin\views\field\FieldTest::setTestValue()

Sets the testValue property.

Parameters

string $value: The test value to set.

File

core/modules/views/tests/modules/views_test_data/src/Plugin/views/field/FieldTest.php, line 27

Class

FieldTest
Plugin annotation @ViewsField("test_field");

Namespace

Drupal\views_test_data\Plugin\views\field

Code

public function setTestValue($value) {
  $this->testValue = $value;
}