RowTest.php

Same filename in this branch
  1. 10 core/modules/migrate/tests/src/Unit/RowTest.php
Same filename and directory in other branches
  1. 9 core/modules/views/tests/modules/views_test_data/src/Plugin/views/row/RowTest.php
  2. 9 core/modules/migrate/tests/src/Unit/RowTest.php
  3. 8.9.x core/modules/views/tests/modules/views_test_data/src/Plugin/views/row/RowTest.php
  4. 8.9.x core/modules/migrate/tests/src/Unit/RowTest.php
  5. 11.x core/modules/views/tests/modules/views_test_data/src/Plugin/views/row/RowTest.php
  6. 11.x core/modules/migrate/tests/src/Unit/RowTest.php

Namespace

Drupal\views_test_data\Plugin\views\row

File

core/modules/views/tests/modules/views_test_data/src/Plugin/views/row/RowTest.php

View source
<?php

namespace Drupal\views_test_data\Plugin\views\row;

use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\views\Attribute\ViewsRow;
use Drupal\views\Plugin\views\row\RowPluginBase;

/**
 * Provides a general test row plugin.
 *
 * @ingroup views_row_plugins
 */
class RowTest extends RowPluginBase {
  
  /**
   * A string which will be output when the view is rendered.
   *
   * @var string
   */
  public $output;
  
  /**
   * {@inheritdoc}
   */
  protected function defineOptions() {
    $options = parent::defineOptions();
    $options['test_option'] = [
      'default' => '',
    ];
    return $options;
  }
  
  /**
   * {@inheritdoc}
   */
  public function buildOptionsForm(&$form, FormStateInterface $form_state) {
    parent::buildOptionsForm($form, $form_state);
    $form['test_option'] = [
      '#title' => $this->t('Test option'),
      '#type' => 'textfield',
      '#description' => $this->t('This is a textfield for test_option.'),
      '#default_value' => $this->options['test_option'],
    ];
  }
  
  /**
   * Sets the output property.
   *
   * @param string $output
   *   The string to output by this plugin.
   */
  public function setOutput($output) {
    $this->output = $output;
  }
  
  /**
   * Returns the output property.
   *
   * @return string
   */
  public function getOutput() {
    return $this->output;
  }
  
  /**
   * {@inheritdoc}
   */
  public function render($row) {
    return $this->getOutput();
  }
  
  /**
   * {@inheritdoc}
   */
  public function calculateDependencies() {
    return [
      'content' => [
        'RowTest',
      ],
    ];
  }

}

Classes

Title Deprecated Summary
RowTest Provides a general test row plugin.

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