Text.php

Same filename and directory in other branches
  1. 9 core/modules/views/src/Plugin/views/area/Text.php
  2. 8.9.x core/modules/views/src/Plugin/views/area/Text.php
  3. 10 core/modules/views/src/Plugin/views/area/Text.php

Namespace

Drupal\views\Plugin\views\area

File

core/modules/views/src/Plugin/views/area/Text.php

View source
<?php

namespace Drupal\views\Plugin\views\area;

use Drupal\Core\Form\FormStateInterface;
use Drupal\views\Attribute\ViewsArea;

/**
 * Views area text handler.
 *
 * @ingroup views_area_handlers
 */
class Text extends TokenizeAreaPluginBase {
    
    /**
     * {@inheritdoc}
     */
    protected function defineOptions() {
        $options = parent::defineOptions();
        $options['content'] = [
            'contains' => [
                'value' => [
                    'default' => '',
                ],
                'format' => [
                    'default' => NULL,
                ],
            ],
        ];
        return $options;
    }
    
    /**
     * {@inheritdoc}
     */
    public function buildOptionsForm(&$form, FormStateInterface $form_state) {
        parent::buildOptionsForm($form, $form_state);
        $form['content'] = [
            '#title' => $this->t('Content'),
            '#type' => 'text_format',
            '#default_value' => $this->options['content']['value'],
            '#rows' => 6,
            '#format' => $this->options['content']['format'] ?? filter_default_format(),
            '#editor' => FALSE,
        ];
    }
    
    /**
     * {@inheritdoc}
     */
    public function preQuery() {
        $content = $this->options['content']['value'];
        // Check for tokens that require a total row count.
        if (str_contains($content, '[view:page-count]') || str_contains($content, '[view:total-rows]')) {
            $this->view->get_total_rows = TRUE;
        }
    }
    
    /**
     * {@inheritdoc}
     */
    public function render($empty = FALSE) {
        $format = $this->options['content']['format'] ?? filter_default_format();
        if (!$empty || !empty($this->options['empty'])) {
            return [
                '#type' => 'processed_text',
                '#text' => $this->tokenizeValue($this->options['content']['value']),
                '#format' => $format,
            ];
        }
        return [];
    }

}

Classes

Title Deprecated Summary
Text Views area text handler.

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