MenuModule::removeGroup PHP Method

removeGroup() public method

Removes an entire group of links, and the group itself, from the menu.
public removeGroup ( $Group )
        public function removeGroup($Group)
        {
            if (array_key_exists($Group, $this->Items)) {
                unset($this->Items[$Group]);
            }
        }