class HookMenuAlter in Drupal 7 to 8/9 Module Upgrader 8
Plugin annotation
@Converter(
id = "hook_menu_alter",
description = @Translation("Creates boilerplate for logic that formerly belonged in hook_menu_alter()."),
hook = "hook_menu_alter",
fixme = @Translation("hook_menu_alter() is gone in Drupal 8. You will have to port its
functionality manually. The are several mechanisms for this:
To alter routes, you must implement a route subscriber class. An empty one
has been generated for you in src/Routing/RouteSubscriber.php.
To alter menu link definitions, see hook_menu_links_discovered_alter(). An
empty implementation has been created at the end of this file.
To alter local task definitions, see hook_menu_local_tasks_alter(). An
empty implementation has been created for you at the end of this file.
To alter local actions, see hook_menu_local_actions_alter(). An
empty implementation has been created for you at the end of this file.
Contextual links are altered during rendering only. See
hook_contextual_links_view_alter(). An empty implementation has been
created for you at the end of this file."),
documentation = {
"https://www.drupal.org/node/2118147#alter",
"https://api.drupal.org/api/drupal/core%21lib%21Drupal%21Core%21Menu%21menu.api.php/function/hook_menu_links_discovered_alter/8",
"https://api.drupal.org/api/drupal/core%21lib%21Drupal%21Core%21Menu%21menu.api.php/function/hook_menu_local_tasks_alter/8",
"https://api.drupal.org/api/drupal/core%21lib%21Drupal%21Core%21Menu%21menu.api.php/function/hook_menu_local_actions_alter/8",
"https://api.drupal.org/api/drupal/core%21modules%21contextual%21contextual.api.php/function/hook_contextual_links_view_alter/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\HookMenuAlter
- 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 HookMenuAlter
File
- src/
Plugin/ DMU/ Converter/ HookMenuAlter.php, line 41
Namespace
Drupal\drupalmoduleupgrader\Plugin\DMU\ConverterView source
class HookMenuAlter extends ConverterBase {
/**
* {@inheritdoc}
*/
public function convert(TargetInterface $target) {
$target
->getIndexer('function')
->get($this->pluginDefinition['hook'])
->setDocComment($this
->buildFixMe(NULL, [], self::DOC_COMMENT));
$render = [
'#theme' => 'dmu_route_subscriber',
'#module' => $target
->id(),
];
$this
->writeClass($target, $this
->parse($render));
$alterable = ParameterNode::create('data');
$alterable
->setTypeHint('array')
->setReference(TRUE);
$parameter = clone $alterable;
$this
->implement($target, 'menu_links_discovered_alter')
->appendParameter($parameter
->setName('links'));
$parameter = clone $alterable;
$this
->implement($target, 'menu_local_tasks_alter')
->appendParameter($parameter
->setName('data'))
->appendParameter(ParameterNode::create('route_name'));
$parameter = clone $alterable;
$this
->implement($target, 'menu_local_actions_alter')
->appendParameter($parameter
->setName('local_actions'));
$parameter = clone $alterable;
$items = clone $alterable;
$function = $this
->implement($target, 'contextual_links_view_alter')
->appendParameter($parameter
->setName('element'))
->appendParameter($items
->setName('items')
->setReference(FALSE));
$target
->save($function);
}
}
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 | |
HookMenuAlter:: |
public | function |
Performs required conversions. Overrides ConverterInterface:: |
|
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. |