You are here

public function TipPluginImageLegacy::__construct in Drupal 10

Same name and namespace in other branches
  1. 9 core/modules/tour/tests/tour_test/src/Plugin/tour/tip/TipPluginImageLegacy.php \Drupal\tour_test\Plugin\tour\tip\TipPluginImageLegacy::__construct()

Constructs a TipPluginImageLegacy object.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin_id for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

\Drupal\Core\Utility\Token $token: The token service.

Overrides PluginBase::__construct

File

core/modules/tour/tests/tour_test/src/Plugin/tour/tip/TipPluginImageLegacy.php, line 56

Class

TipPluginImageLegacy
Displays an image as a tip.

Namespace

Drupal\tour_test\Plugin\tour\tip

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, Token $token) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->token = $token;
}