Magento 2: update an existing backend menu item
It seems like the menu.xml
handles the following actions:
- add
- remove
- update
Thus you can something like this to update an existing menu item:
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Backend:etc/menu.xsd">
<menu>
<update id="Vendor_Module::test" title="Updated Test" module="Vendor_Module" sortOrder="100" parent="Magento_Backend::content" resource="Vendor_Module::test" />
</menu>
</config>