class VariableGet in Drupal 7 to 8/9 Module Upgrader 8
Plugin annotation
@Converter(
id = "variable_get",
description = @Translation("Replaces variable_get() calls with Configuration API.")
)
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\Functions\FunctionCallModifier
- class \Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\Functions\VariableAPI
- class \Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\Functions\VariableGet
- class \Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\Functions\VariableAPI
- class \Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\Functions\FunctionCallModifier
- 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 VariableGet
File
- src/
Plugin/ DMU/ Converter/ Functions/ VariableGet.php, line 18
Namespace
Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\FunctionsView source
class VariableGet extends VariableAPI {
/**
* Default configuration values extracted from rewritten calls to
* variable_get().
*
* @var mixed[]
*/
private $defaults = [];
/**
* The schema accompanying any extracted default values.
*
* @var array
*/
private $schema = [];
/**
* {@inheritdoc}
*/
public function rewrite(FunctionCallNode $call, TargetInterface $target) {
if ($this
->tryRewrite($call, $target)) {
$arguments = $call
->getArguments();
$key = $arguments[0]
->toValue();
if ($arguments[1] instanceof ScalarNode) {
// @TODO Couldn't convert() derive the schema from $this->defaults?
// That'd be preferable to having yet another state property ($schema)
// on this class.
$this->defaults[$key] = $arguments[1]
->toValue();
$this->schema[$key]['type'] = gettype($this->defaults[$key]);
}
else {
$comment = <<<END
Could not extract the default value because it is either indeterminate, or
not scalar. You'll need to provide a default value in
config/install/@module.settings.yml and config/schema/@module.schema.yml.
END;
$variables = [
'@module' => $target
->id(),
];
$this
->buildFixMe($comment, $variables)
->prependTo($call
->getStatement());
}
return ClassMethodCallNode::create('\\Drupal', 'config')
->appendArgument($target
->id() . '.settings')
->appendMethodCall('get')
->appendArgument(clone $arguments[0]);
}
}
/**
* {@inheritdoc}
*/
public function convert(TargetInterface $target) {
parent::convert($target);
if ($this->defaults && $this->schema) {
$group = $target
->id() . '.settings';
$this
->write($target, InstallStorage::CONFIG_INSTALL_DIRECTORY . '/' . $group . '.yml', Yaml::encode($this->defaults));
$this->defaults = [];
$schema = [
$group => [
'type' => 'mapping',
'label' => (string) $this
->t('Settings'),
'mapping' => $this->schema,
],
];
$this
->write($target, InstallStorage::CONFIG_SCHEMA_DIRECTORY . '/' . $target
->id() . '.schema.yml', Yaml::encode($schema));
$this->schema = [];
}
}
}
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:: |
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 | |
FunctionCallModifier:: |
public | function |
Returns if this conversion applies to the target module. If FALSE,
the convert() method will not be called. Overrides ConverterBase:: |
|
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. | |
VariableAPI:: |
protected | function | Helper for subclasses' rewrite() methods. This checks if the call can be rewritten at all and leaves a FIXME if it can't. If the variable's key is not a string starting with MODULE_, the call will not be considered rewritable. | |
VariableGet:: |
private | property | Default configuration values extracted from rewritten calls to variable_get(). | |
VariableGet:: |
private | property | The schema accompanying any extracted default values. | |
VariableGet:: |
public | function |
Performs required conversions. Overrides FunctionCallModifier:: |
|
VariableGet:: |
public | function |
Tries to rewrite the original function call. Overrides FunctionCallModifier:: |