/**
  * Adds a child to the item
  * @param string $label
  * @param string $url
  * @param mixed $priority
  * @param int $sortBy
  */
 public function add($label, $url = '#', $priority = NULL, $sortBy = NULL)
 {
     return $this->root->add($label, $url, $priority, $sortBy);
 }