/**
  * @param array $link
  * @param bool $absolute
  *
  * @return string The generated URL for the $link bigfoot link
  */
 public function getLink($link, $absolute = true)
 {
     return $this->urlManager->getLink($link, $absolute);
 }
 /**
  * @param Item $item
  *
  * @return string The generated URL for the $item menu item
  */
 public function getItemUrl($item, $absolute = false)
 {
     return $this->urlManager->getUrl($item, $absolute);
 }