public function MiconLinkFormatter::__construct in Micon 8
Same name and namespace in other branches
- 2.x micon_link/src/Plugin/Field/FieldFormatter/MiconLinkFormatter.php \Drupal\micon_link\Plugin\Field\FieldFormatter\MiconLinkFormatter::__construct()
Constructs a new LinkFormatter.
Parameters
string $plugin_id: The plugin_id for the formatter.
mixed $plugin_definition: The plugin implementation definition.
\Drupal\Core\Field\FieldDefinitionInterface $field_definition: The definition of the field to which the formatter is associated.
array $settings: The formatter settings.
string $label: The formatter label display setting.
string $view_mode: The view mode.
array $third_party_settings: Third party settings.
\Drupal\Core\Path\PathValidatorInterface $path_validator: The path validator service.
Overrides LinkFormatter::__construct
File
- micon_link/
src/ Plugin/ Field/ FieldFormatter/ MiconLinkFormatter.php, line 38
Class
- MiconLinkFormatter
- Plugin implementation of the 'micon_link' formatter.
Namespace
Drupal\micon_link\Plugin\Field\FieldFormatterCode
public function __construct($plugin_id, $plugin_definition, FieldDefinitionInterface $field_definition, array $settings, $label, $view_mode, array $third_party_settings, PathValidatorInterface $path_validator, Token $token) {
parent::__construct($plugin_id, $plugin_definition, $field_definition, $settings, $label, $view_mode, $third_party_settings, $path_validator);
$this->token = $token;
}