root = (string) $root; return $this; } /** * Sets a minimum depth for menu tree loading. * * @param int $min_depth * The (root-relative) minimum depth to apply. * * @return $this */ public function setMinDepth($min_depth) { $this->minDepth = max(1, $min_depth); return $this; } /** * Sets a maximum depth for menu tree loading. * * @param int $max_depth * The (root-relative) maximum depth to apply. * * @return $this * * @codeCoverageIgnore */ public function setMaxDepth($max_depth) { $this->maxDepth = $max_depth; return $this; } /** * Adds parent menu links IDs to restrict the tree. * * @param string[] $parents * An array containing parent IDs. If supplied, the tree is limited to * links that have these parents. * * @return $this */ public function addExpandedParents(array $parents) { $this->expandedParents = array_merge($this->expandedParents, $parents); $this->expandedParents = array_unique($this->expandedParents); return $this; } /** * Sets the active trail IDs used to set the inActiveTrail property. * * @param string[] $active_trail * An array containing the active trail: a list of menu link plugin IDs. * * @return $this * * @see \Drupal\Core\Menu\MenuActiveTrail::getActiveTrailIds() * * @codeCoverageIgnore */ public function setActiveTrail(array $active_trail) { $this->activeTrail = $active_trail; return $this; } /** * Adds a custom query condition. * * @param string $definition_field * Only conditions that are testing menu link definition fields are allowed. * @param mixed $value * The value to test the link definition field against. In most cases, this * is a scalar. For more complex options, it is an array. The meaning of * each element in the array is dependent on the $operator. * @param string|null $operator * (optional) The comparison operator, such as =, <, or >=. It also accepts * more complex options such as IN, LIKE, or BETWEEN. If NULL, defaults to * the = operator. * * @return $this */ public function addCondition($definition_field, $value, $operator = NULL) { if (!isset($operator)) { $this->conditions[$definition_field] = $value; } else { $this->conditions[$definition_field] = [$value, $operator]; } return $this; } /** * Excludes links that are not enabled. * * @return $this */ public function onlyEnabledLinks() { $this->addCondition('enabled', 1); return $this; } /** * Ensures only the top level of the tree is loaded. * * @return $this */ public function setTopLevelOnly() { $this->setMaxDepth(1); return $this; } /** * Excludes the root menu link from the tree. * * Note that this is only necessary when you specified a custom root, because * the normal root ID is the empty string, '', which does not correspond to an * actual menu link. Hence when loading a menu link tree without specifying a * custom root the tree will start at the children even if this method has not * been called. * * @return $this */ public function excludeRoot() { $this->setMinDepth(1); return $this; } }