Issue #2798335 by naveenvalecha: Menu.api.php references a renamed class

8.3.x
Alex Pott 2016-09-15 13:53:42 +02:00
parent efcf5218c9
commit 0c29f756ee
2 changed files with 5 additions and 5 deletions

View File

@ -20,7 +20,7 @@ namespace Drupal\Core\Menu;
* a tree transformation, because menu links themselves are responsible
* for translation. Transformations are performed by "menu link tree
* manipulators", which are functions or methods; see
* \Drupal\menu_link\DefaultMenuTreeManipulators for examples.
* \Drupal\Core\Menu\DefaultMenuLinkTreeManipulators for examples.
* - Create a render array using MenuLinkTreeInterface::build().
*/
interface MenuLinkTreeInterface {

View File

@ -170,11 +170,11 @@
* - Pass the menu tree to \Drupal\Core\Menu\MenuLinkTree::transform() to apply
* menu link tree manipulators that transform the tree. You will almost always
* want to apply access checking. The manipulators that you will typically
* need can be found in \Drupal\Core\Menu\DefaultMenuTreeManipulators.
* need can be found in \Drupal\Core\Menu\DefaultMenuLinkTreeManipulators.
* - Potentially write a custom menu tree manipulator, see
* \Drupal\Core\Menu\DefaultMenuTreeManipulators for examples. This is only
* necessary if you want to do things like adding extra metadata to rendered
* links to display icons next to them.
* \Drupal\Core\Menu\DefaultMenuLinkTreeManipulators for examples. This is
* only necessary if you want to do things like adding extra metadata to
* rendered links to display icons next to them.
* - Pass the menu tree to \Drupal\Core\Menu\MenuLinkTree::build(), this will
* build a renderable array.
*