You are here

function commerce_cart_menu_links_discovered_alter in Commerce Core 8.2

Implements hook_menu_links_discovered_alter().

File

modules/cart/commerce_cart.module, line 30
Implements the shopping cart system and add to cart features.

Code

function commerce_cart_menu_links_discovered_alter(&$links) {
  $description = t('Manage fields, Add to Cart forms, other form and display settings for your order items.');
  $links['entity.commerce_order_item_type.collection']['description'] = $description;
}