MenuTreeParameters::setRoot

public MenuTreeParameters::setRoot($root)

Sets a root for menu tree loading.

@codeCoverageIgnore

Parameters

string $root: A menu link plugin ID, or empty string '' to use the root of the whole tree.

Return value

$this

File

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

Class

MenuTreeParameters
Provides a value object to model menu tree parameters.

Namespace

Drupal\Core\Menu

Code

public function setRoot($root) {
  $this->root = (string) $root;
  return $this;
}
doc_Drupal
2016-10-29 09:27:31
Comments
Leave a Comment

Please login to continue.