You are here

ExampleAllNodes.php in Extra Field 8

File

modules/extra_field_example/src/Plugin/ExtraField/Display/ExampleAllNodes.php
View source
<?php

namespace Drupal\extra_field_example\Plugin\ExtraField\Display;

use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\extra_field\Plugin\ExtraFieldDisplayBase;

/**
 * Example Extra field Display.
 *
 * @ExtraFieldDisplay(
 *   id = "all_nodes",
 *   label = @Translation("For all nodes"),
 *   bundles = {
 *     "node.*"
 *   },
 *   weight = -30,
 *   visible = true
 * )
 */
class ExampleAllNodes extends ExtraFieldDisplayBase {

  /**
   * {@inheritdoc}
   */
  public function view(ContentEntityInterface $entity) {
    $elements = [
      '#markup' => 'This is output from ExampleAllNodes',
    ];
    return $elements;
  }

}

Classes

Namesort descending Description
ExampleAllNodes Example Extra field Display.