public function WebformHelpManager::getGroup in Webform 8.5
Same name and namespace in other branches
- 6.x src/WebformHelpManager.php \Drupal\webform\WebformHelpManager::getGroup()
Get group.
Parameters
string|null $id: (optional) Group name.
Return value
array|mixed A single group item or all groups.
Overrides WebformHelpManagerInterface::getGroup
File
- src/
WebformHelpManager.php, line 150
Class
- WebformHelpManager
- Webform help manager.
Namespace
Drupal\webformCode
public function getGroup($id = NULL) {
if ($id !== NULL) {
return isset($this->groups[$id]) ? $this->groups[$id] : NULL;
}
else {
return $this->groups;
}
}