class InfoToYAML in Drupal 7 to 8/9 Module Upgrader 8
Plugin annotation
@Converter(
id = "info",
description = @Translation("Converts Drupal 7 info files to Drupal 8.")
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\drupalmoduleupgrader\PluginBase implements ContainerFactoryPluginInterface
- class \Drupal\drupalmoduleupgrader\ConverterBase implements ConverterInterface
- class \Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\InfoToYAML
- class \Drupal\drupalmoduleupgrader\ConverterBase implements ConverterInterface
- class \Drupal\drupalmoduleupgrader\PluginBase implements ContainerFactoryPluginInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of InfoToYAML
1 file declares its use of InfoToYAML
- InfoFile.php in src/
Plugin/ DMU/ Analyzer/ InfoFile.php
File
- src/
Plugin/ DMU/ Converter/ InfoToYAML.php, line 15
Namespace
Drupal\drupalmoduleupgrader\Plugin\DMU\ConverterView source
class InfoToYAML extends ConverterBase {
/**
* {@inheritdoc}
*/
public function convert(TargetInterface $target) {
$info_file = $target
->getPath('.info');
$info = self::parseInfo($info_file);
$info['core'] = '8.x';
$info['type'] = 'module';
if (isset($info['dependencies'])) {
// array_values() is called in order to reindex the array. Issue #2340207.
$info['dependencies'] = array_values(array_diff($info['dependencies'], [
'ctools',
'list',
]));
}
// Getting list of core modules.
$listing = new ExtensionDiscovery(\Drupal::root());
$modules = $listing
->scan('module');
// Initialize variable to store depenencies in latest format.
$dependencies = [];
foreach ($info['dependencies'] ?? [] as $module_name) {
// When the module is a core module then use dependency as drupal:{module_name}.
if (!empty($modules[$module_name])) {
$dependencies[$module_name] = 'drupal:' . $module_name;
}
else {
$dependencies[$module_name] = $module_name . ':' . $module_name;
}
}
// Setting up dependencies in drupal standard format.
$info['dependencies'] = $dependencies;
unset($info['files'], $info['configure'], $info['datestamp'], $info['version'], $info['project']);
$this
->writeInfo($target, 'info', $info);
}
/**
* Parses a D7 info file. This is copied straight outta the D7 function
* drupal_parse_info_format().
*/
public static function parseInfo($file) {
$info = [];
$constants = get_defined_constants();
$data = file_get_contents($file);
if (preg_match_all('
@^\\s* # Start at the beginning of a line, ignoring leading whitespace
((?:
[^=;\\[\\]]| # Key names cannot contain equal signs, semi-colons or square brackets,
\\[[^\\[\\]]*\\] # unless they are balanced and not nested
)+?)
\\s*=\\s* # Key/value pairs are separated by equal signs (ignoring white-space)
(?:
("(?:[^"]|(?<=\\\\)")*")| # Double-quoted string, which may contain slash-escaped quotes/slashes
(\'(?:[^\']|(?<=\\\\)\')*\')| # Single-quoted string, which may contain slash-escaped quotes/slashes
([^\\r\\n]*?) # Non-quoted string
)\\s*$ # Stop at the next end of a line, ignoring trailing whitespace
@msx', $data, $matches, PREG_SET_ORDER)) {
foreach ($matches as $match) {
// Fetch the key and value string.
$i = 0;
foreach ([
'key',
'value1',
'value2',
'value3',
] as $var) {
${$var} = isset($match[++$i]) ? $match[$i] : '';
}
$value = stripslashes(substr($value1, 1, -1)) . stripslashes(substr($value2, 1, -1)) . $value3;
// Parse array syntax.
$keys = preg_split('/\\]?\\[/', rtrim($key, ']'));
$last = array_pop($keys);
$parent =& $info;
// Create nested arrays.
foreach ($keys as $key) {
if ($key == '') {
$key = count($parent);
}
if (!isset($parent[$key]) || !is_array($parent[$key])) {
$parent[$key] = [];
}
$parent =& $parent[$key];
}
// Handle PHP constants.
if (isset($constants[$value])) {
$value = $constants[$value];
}
// Insert actual value.
if ($last == '') {
$last = count($parent);
}
$parent[$last] = $value;
}
}
return $info;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConverterBase:: |
protected | function | Builds a FIXME notice using either the text in the plugin definition, or passed-in text. | |
ConverterBase:: |
constant | |||
ConverterBase:: |
protected | function | Executes the target module's implementation of the specified hook, and returns the result. | |
ConverterBase:: |
protected | function | Creates an empty implementation of a hook. | |
ConverterBase:: |
public | function |
Returns if this conversion applies to the target module. If FALSE,
the convert() method will not be called. Overrides ConverterInterface:: |
4 |
ConverterBase:: |
constant | |||
ConverterBase:: |
protected | function | Parses a generated class into a syntax tree. | |
ConverterBase:: |
protected | function | Parametrically rewrites a function. | |
ConverterBase:: |
public | function | Writes a file to the target module's directory. | |
ConverterBase:: |
public | function | Writes a class to the target module's PSR-4 root. | |
ConverterBase:: |
protected | function | Writes out arbitrary data in YAML format. | |
ConverterBase:: |
protected | function | Writes a service definition to the target module's services.yml file. | |
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
InfoToYAML:: |
public | function |
Performs required conversions. Overrides ConverterInterface:: |
|
InfoToYAML:: |
public static | function | Parses a D7 info file. This is copied straight outta the D7 function drupal_parse_info_format(). | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | ||
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
2 |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
PluginBase:: |
public | function |
Constructs a \Drupal\Component\Plugin\PluginBase object. Overrides PluginBase:: |
11 |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |