DummyAjaxFormatter.php

Same filename and directory in other branches
  1. 8.9.x core/modules/image/tests/modules/image_module_test/src/Plugin/Field/FieldFormatter/DummyAjaxFormatter.php
  2. 10 core/modules/image/tests/modules/image_module_test/src/Plugin/Field/FieldFormatter/DummyAjaxFormatter.php
  3. 11.x core/modules/image/tests/modules/image_module_test/src/Plugin/Field/FieldFormatter/DummyAjaxFormatter.php

Namespace

Drupal\image_module_test\Plugin\Field\FieldFormatter

File

core/modules/image/tests/modules/image_module_test/src/Plugin/Field/FieldFormatter/DummyAjaxFormatter.php

View source
<?php

namespace Drupal\image_module_test\Plugin\Field\FieldFormatter;

use Drupal\Core\Field\FieldItemListInterface;
use Drupal\Core\Field\FormatterBase;

/**
 * Empty renderer for a dummy field with an AJAX handler.
 *
 * @FieldFormatter(
 *   id = "image_module_test_dummy_ajax_formatter",
 *   module = "image_module_test",
 *   label = @Translation("Dummy AJAX"),
 *   field_types= {
 *     "image_module_test_dummy_ajax"
 *   }
 * )
 */
class DummyAjaxFormatter extends FormatterBase {
    
    /**
     * {@inheritdoc}
     */
    public function settingsSummary() {
        $summary = [];
        $summary[] = $this->t('Renders nothing');
        return $summary;
    }
    
    /**
     * {@inheritdoc}
     */
    public function viewElements(FieldItemListInterface $items, $langcode) {
        $element = [];
        return $element;
    }

}

Classes

Title Deprecated Summary
DummyAjaxFormatter Empty renderer for a dummy field with an AJAX handler.

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