Issue #1985344 by tim.plunkett, swentel: Add a dedicated @FieldFormatter annotation.

8.0.x
Alex Pott 2013-06-14 01:03:32 +02:00
parent 95368fcaab
commit 984940b8f2
40 changed files with 181 additions and 105 deletions

View File

@ -7,7 +7,7 @@
namespace Drupal\datetime\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
use Drupal\Core\Entity\EntityInterface;
@ -17,7 +17,7 @@ use Drupal\Core\Template\Attribute;
/**
* Plugin implementation of the 'datetime_default' formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "datetime_default",
* module = "datetime",
* label = @Translation("Default"),

View File

@ -7,7 +7,7 @@
namespace Drupal\datetime\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
use Drupal\Core\Entity\EntityInterface;
@ -16,7 +16,7 @@ use Drupal\Core\Datetime\DrupalDateTime;
/**
* Plugin implementation of the 'datetime_plain' formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "datetime_plain",
* module = "datetime",
* label = @Translation("Plain"),

View File

@ -133,6 +133,23 @@ function edit_library_info() {
return $libraries;
}
/**
* Implements hook_field_formatter_info_alter().
*
* Edit extends the @FieldFormatter annotation with the following keys:
* - edit: currently only contains one subkey 'editor' which indicates which
* in-place editor should be used. Possible values are 'form', 'direct' or
* 'disabled'.
*/
function edit_field_formatter_info_alter(&$info) {
foreach ($info as $key => $settings) {
// Set in-place editor to form if none is supplied.
if (empty($settings['edit'])) {
$info[$key]['edit'] = array('editor' => 'form');
}
}
}
/**
* Implements hook_preprocess_HOOK() for field.tpl.php.
*/

View File

@ -63,7 +63,7 @@ class EditorSelector implements EditorSelectorInterface {
// 'form' editor, since that can work for any field. Formatter definitions
// can use 'disabled' to explicitly opt out of in-place editing.
$formatter_info = field_info_formatter_types($formatter_type);
$editor_id = isset($formatter_info['edit']['editor']) ? $formatter_info['edit']['editor'] : 'form';
$editor_id = $formatter_info['edit']['editor'];
if ($editor_id === 'disabled') {
return;
}

View File

@ -7,7 +7,7 @@
namespace Drupal\email\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
use Drupal\Core\Entity\EntityInterface;
@ -15,7 +15,7 @@ use Drupal\Core\Entity\EntityInterface;
/**
* Plugin implementation of the 'email_mailto' formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "email_mailto",
* module = "email",
* label = @Translation("Email"),

View File

@ -7,7 +7,7 @@
namespace Drupal\entity_reference\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\Core\Entity\EntityInterface;
use Drupal\entity_reference\RecursiveRenderingException;
@ -16,7 +16,7 @@ use Drupal\entity_reference\Plugin\field\formatter\EntityReferenceFormatterBase;
/**
* Plugin implementation of the 'entity reference rendered entity' formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "entity_reference_entity_view",
* module = "entity_reference",
* label = @Translation("Rendered entity"),

View File

@ -7,7 +7,7 @@
namespace Drupal\entity_reference\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\Core\Entity\EntityInterface;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;

View File

@ -7,7 +7,7 @@
namespace Drupal\entity_reference\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\Core\Entity\EntityInterface;
use Drupal\entity_reference\Plugin\field\formatter\EntityReferenceFormatterBase;
@ -15,7 +15,7 @@ use Drupal\entity_reference\Plugin\field\formatter\EntityReferenceFormatterBase;
/**
* Plugin implementation of the 'entity reference ID' formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "entity_reference_entity_id",
* module = "entity_reference",
* label = @Translation("Entity ID"),

View File

@ -7,7 +7,7 @@
namespace Drupal\entity_reference\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\Core\Entity\EntityInterface;
use Drupal\entity_reference\Plugin\field\formatter\EntityReferenceFormatterBase;
@ -15,7 +15,7 @@ use Drupal\entity_reference\Plugin\field\formatter\EntityReferenceFormatterBase;
/**
* Plugin implementation of the 'entity reference label' formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "entity_reference_label",
* module = "entity_reference",
* label = @Translation("Label"),

View File

@ -0,0 +1,85 @@
<?php
/**
* @file
* Contains \Drupal\field\Annotation\FieldFormatter.
*/
namespace Drupal\field\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines a FieldFormatter annotation object.
*
* Formatters handle the display of field values. Formatter hooks are typically
* called by the Field Attach API field_attach_prepare_view() and
* field_attach_view() functions.
*
* Additional annotation keys for formatters can be defined in
* hook_field_formatter_info_alter().
*
* @Annotation
*
* @see \Drupal\field\Plugin\Type\Formatter\FormatterPluginManager
* @see \Drupal\field\Plugin\Type\Formatter\FormatterInterface
*/
class FieldFormatter extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The human-readable name of the formatter type.
*
* @ingroup plugin_translatable
*
* @var \Drupal\Core\Annotation\Translation
*/
public $label;
/**
* A short description of the formatter type.
*
* @ingroup plugin_translatable
*
* @var \Drupal\Core\Annotation\Translation
*/
public $description;
/**
* The name of the module providing the formatter.
*
* @var string
*/
public $module;
/**
* The name of the field formatter class.
*
* This is not provided manually, it will be added by the discovery mechanism.
*
* @var string
*/
public $class;
/**
* An array of field types the formatter supports.
*
* @var array
*/
public $field_types = array();
/**
* An array whose keys are the names of the settings available to the
* formatter type, and whose values are the default values for those settings.
*
* @var array
*/
public $settings = array();
}

View File

@ -1,25 +0,0 @@
<?php
/**
* @file
* Definition of Drupal\field\Plugin\Type\Formatter\FormatterFactory.
*/
namespace Drupal\field\Plugin\Type\Formatter;
use Drupal\Component\Plugin\Factory\DefaultFactory;
/**
* Factory class for the Formatter plugin type.
*/
class FormatterFactory extends DefaultFactory {
/**
* Overrides Drupal\Component\Plugin\Factory\DefaultFactory::createInstance().
*/
public function createInstance($plugin_id, array $configuration) {
$plugin_definition = $this->discovery->getDefinition($plugin_id);
$plugin_class = static::getPluginClass($plugin_id, $plugin_definition);
return new $plugin_class($plugin_id, $plugin_definition, $configuration['instance'], $configuration['settings'], $configuration['label'], $configuration['view_mode']);
}
}

View File

@ -8,7 +8,7 @@
namespace Drupal\field\Plugin\Type\Formatter;
use Drupal\Component\Plugin\PluginManagerBase;
use Drupal\Component\Plugin\Discovery\ProcessDecorator;
use Drupal\Component\Plugin\Factory\DefaultFactory;
use Drupal\Core\Plugin\Discovery\CacheDecorator;
use Drupal\Core\Plugin\Discovery\AnnotatedClassDiscovery;
use Drupal\Core\Plugin\Discovery\AlterDecorator;
@ -26,14 +26,6 @@ class FormatterPluginManager extends PluginManagerBase {
*/
protected $formatterOptions;
/**
* Overrides Drupal\Component\Plugin\PluginManagerBase:$defaults.
*/
protected $defaults = array(
'field_types' => array(),
'settings' => array(),
);
/**
* Constructs a FormatterPluginManager object.
*
@ -42,12 +34,19 @@ class FormatterPluginManager extends PluginManagerBase {
* keyed by the corresponding namespace to look for plugin implementations,
*/
public function __construct(\Traversable $namespaces) {
$this->discovery = new AnnotatedClassDiscovery('field/formatter', $namespaces);
$this->discovery = new ProcessDecorator($this->discovery, array($this, 'processDefinition'));
$annotation_namespaces = array('Drupal\field\Annotation' => $namespaces['Drupal\field']);
$this->discovery = new AnnotatedClassDiscovery('field/formatter', $namespaces, $annotation_namespaces, 'Drupal\field\Annotation\FieldFormatter');
$this->discovery = new AlterDecorator($this->discovery, 'field_formatter_info');
$this->discovery = new CacheDecorator($this->discovery, 'field_formatter_types', 'field');
}
$this->factory = new FormatterFactory($this->discovery);
/**
* {@inheritdoc}
*/
public function createInstance($plugin_id, array $configuration) {
$plugin_definition = $this->discovery->getDefinition($plugin_id);
$plugin_class = DefaultFactory::getPluginClass($plugin_id, $plugin_definition);
return new $plugin_class($plugin_id, $plugin_definition, $configuration['instance'], $configuration['settings'], $configuration['label'], $configuration['view_mode']);
}
/**

View File

@ -7,7 +7,7 @@
namespace Drupal\field_test\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
use Drupal\Core\Entity\EntityInterface;
@ -15,7 +15,7 @@ use Drupal\Core\Entity\EntityInterface;
/**
* Plugin implementation of the 'field_test_default' formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "field_test_default",
* module = "field_test",
* label = @Translation("Default"),

View File

@ -7,7 +7,7 @@
*/
namespace Drupal\field_test\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\Core\Entity\EntityInterface;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
@ -15,7 +15,7 @@ use Drupal\field\Plugin\Type\Formatter\FormatterBase;
/**
* Plugin implementation of the 'field_empty_test' formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "field_empty_test",
* module = "field_test",
* label = @Translation("Field empty test"),

View File

@ -7,7 +7,7 @@
namespace Drupal\field_test\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
use Drupal\Core\Entity\EntityInterface;
@ -15,7 +15,7 @@ use Drupal\Core\Entity\EntityInterface;
/**
* Plugin implementation of the 'field_test_multiple' formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "field_test_multiple",
* module = "field_test",
* label = @Translation("Multiple"),

View File

@ -7,7 +7,7 @@
namespace Drupal\field_test\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
use Drupal\Core\Entity\EntityInterface;
@ -15,7 +15,7 @@ use Drupal\Core\Entity\EntityInterface;
/**
* Plugin implementation of the 'field_test_with_prepare_view' formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "field_test_with_prepare_view",
* module = "field_test",
* label = @Translation("With prepare step"),

View File

@ -7,7 +7,7 @@
namespace Drupal\file\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
use Drupal\Core\Entity\EntityInterface;
@ -15,7 +15,7 @@ use Drupal\Core\Entity\EntityInterface;
/**
* Plugin implementation of the 'file_default' formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "file_default",
* module = "file",
* label = @Translation("Generic file"),

View File

@ -7,7 +7,7 @@
namespace Drupal\file\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
use Drupal\Core\Entity\EntityInterface;
@ -15,7 +15,7 @@ use Drupal\Core\Entity\EntityInterface;
/**
* Plugin implementation of the 'file_rss_enclosure' formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "file_rss_enclosure",
* module = "file",
* label = @Translation("RSS enclosure"),

View File

@ -7,7 +7,7 @@
namespace Drupal\file\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
use Drupal\Core\Entity\EntityInterface;
@ -15,7 +15,7 @@ use Drupal\Core\Entity\EntityInterface;
/**
* Plugin implementation of the 'file_table' formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "file_table",
* module = "file",
* label = @Translation("Table of files"),

View File

@ -7,7 +7,7 @@
namespace Drupal\file\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
use Drupal\Core\Entity\EntityInterface;
@ -15,7 +15,7 @@ use Drupal\Core\Entity\EntityInterface;
/**
* Plugin implementation of the 'file_url_plain' formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "file_url_plain",
* module = "file",
* label = @Translation("URL to file"),

View File

@ -7,7 +7,7 @@
namespace Drupal\image\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
use Drupal\Core\Entity\EntityInterface;
@ -15,7 +15,7 @@ use Drupal\Core\Entity\EntityInterface;
/**
* Plugin implementation of the 'image' formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "image",
* module = "image",
* label = @Translation("Image"),

View File

@ -7,7 +7,7 @@
namespace Drupal\link\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\Core\Entity\EntityInterface;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
@ -15,7 +15,7 @@ use Drupal\field\Plugin\Type\Formatter\FormatterBase;
/**
* Plugin implementation of the 'link' formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "link",
* module = "link",
* label = @Translation("Link"),

View File

@ -12,7 +12,7 @@
namespace Drupal\link\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\Core\Entity\EntityInterface;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
@ -20,7 +20,7 @@ use Drupal\field\Plugin\Type\Formatter\FormatterBase;
/**
* Plugin implementation of the 'link_separate' formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "link_separate",
* module = "link",
* label = @Translation("Separate link text and URL"),

View File

@ -7,7 +7,7 @@
namespace Drupal\number\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
use Drupal\Core\Entity\EntityInterface;

View File

@ -7,7 +7,7 @@
namespace Drupal\number\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
use Drupal\number\Plugin\field\formatter\DefaultNumberFormatter;
@ -20,7 +20,7 @@ use Drupal\Core\Entity\EntityInterface;
* for decimal and float fields on the other hand, in order to be able to use
* different settings.
*
* @Plugin(
* @FieldFormatter(
* id = "number_decimal",
* module = "number",
* label = @Translation("Default"),

View File

@ -7,7 +7,7 @@
namespace Drupal\number\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
use Drupal\number\Plugin\field\formatter\DefaultNumberFormatter;
@ -20,7 +20,7 @@ use Drupal\Core\Entity\EntityInterface;
* for decimal and float fields on the other hand, in order to be able to use
* different settings.
*
* @Plugin(
* @FieldFormatter(
* id = "number_integer",
* module = "number",
* label = @Translation("Default"),

View File

@ -7,7 +7,7 @@
namespace Drupal\number\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
use Drupal\Core\Entity\EntityInterface;
@ -15,7 +15,7 @@ use Drupal\Core\Entity\EntityInterface;
/**
* Plugin implementation of the 'number_unformatted' formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "number_unformatted",
* module = "number",
* label = @Translation("Unformatted"),

View File

@ -7,7 +7,7 @@
namespace Drupal\options\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
use Drupal\Core\Entity\EntityInterface;
@ -15,7 +15,7 @@ use Drupal\Core\Entity\EntityInterface;
/**
* Plugin implementation of the 'list_default' formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "list_default",
* module = "options",
* label = @Translation("Default"),

View File

@ -7,7 +7,7 @@
namespace Drupal\options\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
use Drupal\Core\Entity\EntityInterface;
@ -15,7 +15,7 @@ use Drupal\Core\Entity\EntityInterface;
/**
* Plugin implementation of the 'list_key' formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "list_key",
* module = "options",
* label = @Translation("Key"),

View File

@ -7,7 +7,7 @@
namespace Drupal\picture\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
use Drupal\Core\Entity\EntityInterface;
@ -15,7 +15,7 @@ use Drupal\Core\Entity\EntityInterface;
/**
* Plugin for picture formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "picture",
* module = "picture",
* label = @Translation("Picture"),

View File

@ -7,7 +7,7 @@
namespace Drupal\taxonomy\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\Core\Entity\EntityInterface;
use Drupal\entity_reference\Plugin\field\formatter\EntityReferenceFormatterBase;
@ -17,7 +17,7 @@ use Drupal\entity_reference\Plugin\field\formatter\EntityReferenceFormatterBase;
*
* @todo: Have a way to indicate this formatter applies only to taxonomy terms.
*
* @Plugin(
* @FieldFormatter(
* id = "entity_reference_rss_category",
* module = "taxonomy",
* label = @Translation("RSS category"),

View File

@ -7,7 +7,7 @@
namespace Drupal\taxonomy\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\Core\Entity\EntityInterface;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
@ -16,7 +16,7 @@ use Drupal\taxonomy\Plugin\field\formatter\TaxonomyFormatterBase;
/**
* Plugin implementation of the 'taxonomy_term_reference_link' formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "taxonomy_term_reference_link",
* module = "taxonomy",
* label = @Translation("Link"),

View File

@ -7,7 +7,7 @@
namespace Drupal\taxonomy\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\Core\Entity\EntityInterface;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
@ -16,7 +16,7 @@ use Drupal\taxonomy\Plugin\field\formatter\TaxonomyFormatterBase;
/**
* Plugin implementation of the 'taxonomy_term_reference_plain' formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "taxonomy_term_reference_plain",
* module = "taxonomy",
* label = @Translation("Plain text"),

View File

@ -7,7 +7,7 @@
namespace Drupal\taxonomy\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\Core\Entity\EntityInterface;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
@ -16,7 +16,7 @@ use Drupal\taxonomy\Plugin\field\formatter\TaxonomyFormatterBase;
/**
* Plugin implementation of the 'taxonomy_term_reference_rss_category' formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "taxonomy_term_reference_rss_category",
* module = "taxonomy",
* label = @Translation("RSS category"),

View File

@ -7,7 +7,7 @@
namespace Drupal\taxonomy\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\Core\Entity\EntityInterface;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;

View File

@ -7,7 +7,7 @@
namespace Drupal\telephone\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
use Drupal\Core\Entity\EntityInterface;
@ -15,7 +15,7 @@ use Drupal\Core\Entity\EntityInterface;
/**
* Plugin implementation of the 'telephone_link' formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "telephone_link",
* module = "telephone",
* label = @Translation("Telephone link"),

View File

@ -7,7 +7,7 @@
namespace Drupal\text\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
use Drupal\Core\Entity\EntityInterface;
@ -15,7 +15,7 @@ use Drupal\Core\Entity\EntityInterface;
/**
* Plugin implementation of the 'text_default' formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "text_default",
* module = "text",
* label = @Translation("Default"),

View File

@ -7,7 +7,7 @@
namespace Drupal\text\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
use Drupal\Core\Entity\EntityInterface;
@ -15,7 +15,7 @@ use Drupal\Core\Entity\EntityInterface;
/**
* Plugin implementation of the 'text_plain' formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "text_plain",
* module = "text",
* label = @Translation("Plain text"),

View File

@ -7,13 +7,13 @@
*/
namespace Drupal\text\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
/**
* Plugin implementation of the 'text_summary_or_trimmed' formatter.
*
* @Plugin(
* @FieldFormatter(
* id = "text_summary_or_trimmed",
* module = "text",
* label = @Translation("Summary or trimmed"),

View File

@ -7,7 +7,7 @@
*/
namespace Drupal\text\Plugin\field\formatter;
use Drupal\Component\Annotation\Plugin;
use Drupal\field\Annotation\FieldFormatter;
use Drupal\Core\Annotation\Translation;
use Drupal\field\Plugin\Type\Formatter\FormatterBase;
use Drupal\Core\Entity\EntityInterface;
@ -20,7 +20,7 @@ use Drupal\Core\Entity\EntityInterface;
*
* @see Drupal\text\Field\Formatter\TextSummaryOrTrimmedFormatter
*
* @Plugin(
* @FieldFormatter(
* id = "text_trimmed",
* module = "text",
* label = @Translation("Trimmed"),