FieldTest.php

Definition of Drupal\views_test_data\Plugin\views\field\FieldTest.

Namespace

Drupal\views_test_data\Plugin\views\field

File

drupal/core/modules/views/tests/views_test_data/lib/Drupal/views_test_data/Plugin/views/field/FieldTest.php
View source
<?php

/**
 * @file
 * Definition of Drupal\views_test_data\Plugin\views\field\FieldTest.
 */
namespace Drupal\views_test_data\Plugin\views\field;

use Drupal\Component\Annotation\PluginID;
use Drupal\views\Plugin\views\field\FieldPluginBase;

/**
 * @PluginID("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;
  }

  /**
   * Overrides Drupal\views\Plugin\views\field\FieldPluginBase::addSelfTokens().
   */
  protected function addSelfTokens(&$tokens, $item) {
    $tokens['[test-token]'] = $this
      ->getTestValue();
  }

  /**
   * Overrides Drupal\views\Plugin\views\field\FieldPluginBase::render().
   */
  function render($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();
  }

}

Classes

Namesort descending Description
FieldTest Plugin annotation @PluginID("test_field");