public function MenuTreeParameters::setMaxDepth in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Menu/MenuTreeParameters.php \Drupal\Core\Menu\MenuTreeParameters::setMaxDepth()
Sets a maximum depth for menu tree loading.
@codeCoverageIgnore
Parameters
int $max_depth: The (root-relative) maximum depth to apply.
Return value
$this
1 call to MenuTreeParameters::setMaxDepth()
- MenuTreeParameters::setTopLevelOnly in core/
lib/ Drupal/ Core/ Menu/ MenuTreeParameters.php - Ensures only the top level of the tree is loaded.
File
- core/
lib/ Drupal/ Core/ Menu/ MenuTreeParameters.php, line 120 - Contains \Drupal\Core\Menu\MenuTreeParameters.
Class
- MenuTreeParameters
- Provides a value object to model menu tree parameters.
Namespace
Drupal\Core\MenuCode
public function setMaxDepth($max_depth) {
$this->maxDepth = $max_depth;
return $this;
}