function MenuTreeParameters::setMinDepth
Same name in other branches
- 9 core/lib/Drupal/Core/Menu/MenuTreeParameters.php \Drupal\Core\Menu\MenuTreeParameters::setMinDepth()
- 10 core/lib/Drupal/Core/Menu/MenuTreeParameters.php \Drupal\Core\Menu\MenuTreeParameters::setMinDepth()
- 11.x core/lib/Drupal/Core/Menu/MenuTreeParameters.php \Drupal\Core\Menu\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\MenuCode
public function setMinDepth($min_depth) {
$this->minDepth = max(1, $min_depth);
return $this;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.