renderLabel(); $i = 0; $returnValue .= '
'; foreach ($this->getOptions() as $optionId => $optionLabel) { $returnValue .= "renderAttributes(); if (in_array($optionId, $this->values, true)) { $returnValue .= " checked='checked' "; } if (in_array($optionId, $this->getDisabledValues(), true)) { $returnValue .= ' disabled '; } $returnValue .= " /> 
"; $i++; } $returnValue .= "
"; return (string) $returnValue; } }