public function Grep::__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/ Grep.php, line 25
Class
- Grep
- Plugin annotation @Converter( id = "grep", description = @Translation("Searches for and replaces commonly-used code that has changed in Drupal 8.") )
Namespace
Drupal\drupalmoduleupgrader\Plugin\DMU\ConverterCode
public function __construct(array $configuration, $plugin_id, $plugin_definition, TranslationInterface $translator, LoggerInterface $log) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $translator, $log);
foreach ($configuration['globals'] as $variable => $replacement) {
$this->targets['global $' . $variable . ';'] = '$' . $variable . ' = ' . $replacement . ';';
$this->targets['$GLOBALS[\'' . $variable . '\']'] = $replacement;
$this->targets['$GLOBALS["' . $variable . '"]'] = $replacement;
}
foreach ($configuration['constants'] as $constant => $replacement) {
$this->targets[$constant] = $replacement;
}
}