class Links in Drupal 7 to 8/9 Module Upgrader 8
Plugin annotation
@Converter(
id = "links",
description = @Translation("Converts Drupal 7's hook_menu() links to plugin definitions."),
hook = "hook_menu",
fixme = @Translation("@FIXME
This implementation of hook_menu() cannot be automatically converted because
it contains logic (i.e., branching statements, function calls, object
instantiation, etc.) You will need to convert it manually. Sorry!
For more information on how to convert hook_menu() to Drupal 8's new routing
and linking systems, see https://api.drupal.org/api/drupal/core%21includes%21menu.inc/group/menu/8"),
dependencies = { "plugin.manager.drupalmoduleupgrader.route", "drupalmoduleupgrader.link_binding" }
)
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\Links
- 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 Links
File
- src/
Plugin/ DMU/ Converter/ Links.php, line 34
Namespace
Drupal\drupalmoduleupgrader\Plugin\DMU\ConverterView source
class Links extends ConverterBase {
/**
* @var \Drupal\Component\Plugin\PluginManagerInterface
*/
protected $routeConverters;
/**
* @var \Drupal\drupalmoduleupgrader\Routing\LinkBinding\LinkBindingFactory
*/
protected $linkBinding;
/**
* Constructs a Links object.
*
* @param array $configuration
* Additional configuration for the plugin.
* @param string $plugin_id
* The plugin ID, will be "Links".
* @param string $plugin_definition
* The plugin definition as derived from the annotations.
* @param \Drupal\Component\Plugin\PluginManagerInterface $route_converters
* The plugin manager for route converters, used by HookMenu.
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, TranslationInterface $translator, LoggerInterface $log, PluginManagerInterface $route_converters, LinkBindingFactory $link_binding) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $translator, $log);
$this->routeConverters = $route_converters;
$this->linkBinding = $link_binding;
}
/**
* {@inheritdoc}
*/
public function convert(TargetInterface $target) {
// If the hook implementation contains logic, we cannot convert it and
// that's that. So we'll leave a FIXME and bail out.
/** @var \Pharborist\Functions\FunctionDeclarationNode $hook */
$hook = $target
->getIndexer('function')
->get('hook_menu');
if ($hook
->is(new ContainsLogicFilter())) {
$hook
->setDocComment(DocCommentNode::create($this->pluginDefinition['fixme']));
$target
->save($hook);
return;
}
// Links are split out by group because there are separate config files
// for each link type.
$links = [
'menu' => new LinkIndex(),
'task' => new LinkIndex(),
'action' => new LinkIndex(),
'contextual' => new LinkIndex(),
];
$hook_menu = new HookMenu($target, $this->routeConverters);
foreach ($hook_menu
->getSourceRoutes()
->getAllLinks() as $path => $source) {
/** @var \Drupal\drupalmoduleupgrader\Routing\LinkBinding\LinkBinding $binding */
$binding = $this->linkBinding
->create($source, $hook_menu
->getDestinationRoute($path));
// Skip if the converter wasn't able to find a destination.
$destination = $binding
->getDestination();
if (empty($destination)) {
continue;
}
if ($binding instanceof MenuLinkBinding) {
$links['menu']
->addBinding($binding);
}
elseif ($binding instanceof LocalTaskLinkBinding) {
$links['task']
->addBinding($binding);
}
elseif ($binding instanceof LocalActionLinkBinding) {
$links['action']
->addBinding($binding);
}
elseif ($source
->isContextualLink()) {
$links['contextual']
->addBinding($binding);
}
}
$links = array_map(function (LinkIndex $index) {
return $index
->build();
}, $links);
foreach ($links['contextual'] as $link) {
$link['group'] = $target
->id();
}
foreach ($links as $group => $data) {
if ($data) {
$this
->writeInfo($target, 'links.' . $group, $data);
}
}
}
}
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 | |
Links:: |
protected | property | ||
Links:: |
protected | property | ||
Links:: |
public | function |
Performs required conversions. Overrides ConverterInterface:: |
|
Links:: |
public | function |
Constructs a Links object. Overrides PluginBase:: |
|
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. | |
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. |