public function HookEntityTypeView::__construct in Drupal 7 to 8/9 Module Upgrader 8
Constructs a \Drupal\Component\Plugin\PluginBase 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.
Overrides PluginBase::__construct
File
- src/
Plugin/ DMU/ Converter/ HookEntityTypeView.php, line 32
Class
- HookEntityTypeView
- Plugin annotation @Converter( id = "hook_ENTITY_TYPE_view", description = @Translation("Converts implementations of hook_ENTITY_TYPE_view()."), hook = { "hook_comment_view", "hook_node_view", "hook_taxonomy_term_view", …
Namespace
Drupal\drupalmoduleupgrader\Plugin\DMU\ConverterCode
public function __construct(array $configuration, $plugin_id, $plugin_definition, TranslationInterface $translator, LoggerInterface $log, PluginManagerInterface $rewriters) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $translator, $log);
$this->rewriters = $rewriters;
}