Issue #2798335 by naveenvalecha: Menu.api.php references a renamed class
parent
efcf5218c9
commit
0c29f756ee
|
@ -20,7 +20,7 @@ namespace Drupal\Core\Menu;
|
||||||
* a tree transformation, because menu links themselves are responsible
|
* a tree transformation, because menu links themselves are responsible
|
||||||
* for translation. Transformations are performed by "menu link tree
|
* for translation. Transformations are performed by "menu link tree
|
||||||
* manipulators", which are functions or methods; see
|
* 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().
|
* - Create a render array using MenuLinkTreeInterface::build().
|
||||||
*/
|
*/
|
||||||
interface MenuLinkTreeInterface {
|
interface MenuLinkTreeInterface {
|
||||||
|
|
|
@ -170,11 +170,11 @@
|
||||||
* - Pass the menu tree to \Drupal\Core\Menu\MenuLinkTree::transform() to apply
|
* - Pass the menu tree to \Drupal\Core\Menu\MenuLinkTree::transform() to apply
|
||||||
* menu link tree manipulators that transform the tree. You will almost always
|
* menu link tree manipulators that transform the tree. You will almost always
|
||||||
* want to apply access checking. The manipulators that you will typically
|
* 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
|
* - Potentially write a custom menu tree manipulator, see
|
||||||
* \Drupal\Core\Menu\DefaultMenuTreeManipulators for examples. This is only
|
* \Drupal\Core\Menu\DefaultMenuLinkTreeManipulators for examples. This is
|
||||||
* necessary if you want to do things like adding extra metadata to rendered
|
* only necessary if you want to do things like adding extra metadata to
|
||||||
* links to display icons next to them.
|
* rendered links to display icons next to them.
|
||||||
* - Pass the menu tree to \Drupal\Core\Menu\MenuLinkTree::build(), this will
|
* - Pass the menu tree to \Drupal\Core\Menu\MenuLinkTree::build(), this will
|
||||||
* build a renderable array.
|
* build a renderable array.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue