MenuModule::removeLink PHP Method

        public function removeLink($Group, $Text)
        {
            if (array_key_exists($Group, $this->Items) && is_array($this->Items[$Group])) {
                foreach ($this->Items[$Group] as $Index => $GroupArray) {
                    if ($this->Items[$Group][$Index]['Text'] == $Text) {
                        unset($this->Items[$Group][$Index]);
                        array_merge($this->Items[$Group]);
                        break;
                    }
                }
            }
        }