FieldTest.php in Drupal 10
Same filename in this branch
- 10 core/modules/quickedit/tests/src/FunctionalJavascript/FieldTest.php
- 10 core/modules/views/tests/src/Unit/Plugin/field/FieldTest.php
- 10 core/modules/views/tests/src/FunctionalJavascript/Plugin/views/Handler/FieldTest.php
- 10 core/modules/views/tests/modules/views_test_data/src/Plugin/views/field/FieldTest.php
- 10 core/modules/field/tests/src/Kernel/Plugin/migrate/source/d6/FieldTest.php
- 10 core/modules/field/tests/src/Kernel/Plugin/migrate/source/d7/FieldTest.php
Same filename and directory in other branches
File
core/modules/views/tests/modules/views_test_data/src/Plugin/views/field/FieldTest.phpView source
<?php
namespace Drupal\views_test_data\Plugin\views\field;
use Drupal\views\Plugin\views\field\FieldPluginBase;
use Drupal\views\ResultRow;
/**
* @ViewsField("test_field")
*/
class FieldTest extends FieldPluginBase {
/**
* A temporary stored test value for the test.
*
* @var string
*/
protected $testValue;
/**
* Sets the testValue property.
*
* @param string $value
* The test value to set.
*/
public function setTestValue($value) {
$this->testValue = $value;
}
/**
* Returns the testValue property.
*
* @return string
*/
public function getTestValue() {
return $this->testValue;
}
/**
* {@inheritdoc}
*/
protected function addSelfTokens(&$tokens, $item) {
$tokens['{{ test_token }}'] = $this
->getTestValue();
}
/**
* {@inheritdoc}
*/
public function render(ResultRow $values) {
return $this
->sanitizeValue($this
->getTestValue());
}
/**
* A mock function which allows to call placeholder from public.
*
* @return string
* The result of the placeholder method.
*/
public function getPlaceholder() {
return $this
->placeholder();
}
}