/**
* Method to get all control groups with label and input of a fieldset.
*
* @param string $name The name of the fieldset for which to get the values.
* @param array $options Any options to be passed into the rendering of the field
*
* @return string A string containing the html for the control goups
*
* @since 3.2.3
*/
public function renderFieldset($name, $options = [])
{
$fields = $this->getFieldset($name);
$html = [];
foreach ($fields as $field) {
$html[] = $field->renderField($options);
}
return implode('', $html);
}