n Make menu items expanded by default in drupal 8 | CodimTh

Please Disable Your Browser Adblock Extension for our site and Refresh This Page!

our ads are user friendly, we do not serve popup ads. We serve responsible ads!

Refresh Page
Skip to main content
On . By CodimTh
Category:

Code snippet that can be used to make menu items expanded by default in drupal 8.

For specific menu items, use:

use Drupal\Core\Entity\EntityInterface;

/**
 * Implements hook_menu_link_content_presave().
 */
function mymodule_menu_link_content_presave(EntityInterface $entity) {
  if ($entity->menu_name->value == 'main') {
    $entity->expanded = 1;
  }
}

For all menu items in all menus, use:

/**
 * Implements hook_menu_link_content_presave().
 */
function mymodule_menu_link_content_presave(EntityInterface $entity) {
  if ($entity->enabled == 1) {
    $entity->expanded = 1;
  }
}

 

 

Riadh Rahmi

Senior Web Developer PHP/Drupal & Laravel

I am a senior web developer, I have experience in planning and developing large scale dynamic web solutions especially in Drupal & Laravel.

Web Posts

Search

Page Facebook