Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. MenuTreeParameters.php

function MenuTreeParameters::setMinDepth

Sets a minimum depth for menu tree loading.

Parameters

int $min_depth: The (root-relative) minimum depth to apply.

Return value

$this

1 call to MenuTreeParameters::setMinDepth()
MenuTreeParameters::excludeRoot in core/lib/Drupal/Core/Menu/MenuTreeParameters.php
Excludes the root menu link from the tree.

File

core/lib/Drupal/Core/Menu/MenuTreeParameters.php, line 97

Class

MenuTreeParameters
Provides a value object to model menu tree parameters.

Namespace

Drupal\Core\Menu

Code

public function setMinDepth($min_depth) {
    $this->minDepth = max(1, $min_depth);
    return $this;
}
RSS feed
Powered by Drupal