ExampleArticle.php in Extra Field 8.2
Same filename and directory in other branches
File
modules/extra_field_example/src/Plugin/ExtraField/Display/ExampleArticle.phpView 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 = "article_only",
* label = @Translation("Only for articles"),
* description = @Translation("An extra field to display static text."),
* bundles = {
* "node.article",
* }
* )
*/
class ExampleArticle extends ExtraFieldDisplayBase {
/**
* {@inheritdoc}
*/
public function view(ContentEntityInterface $entity) {
return [
'#markup' => 'This is output from ExampleArticle',
];
}
}
Classes
Name | Description |
---|---|
ExampleArticle | Example Extra field Display. |