* @package tao */ class tao_helpers_form_elements_xhtml_Radiobox extends tao_helpers_form_elements_Radiobox { use XhtmlRenderingTrait; /** * Short description of method render * * @access public * @author Bertrand Chevrier, * @return string */ public function render() { $returnValue = $this->renderLabel(); $i = 0; $returnValue .= '
'; foreach ($this->options as $optionId => $optionLabel) { $returnValue .= "renderAttributes(); if ($this->value == $optionId) { $returnValue .= " checked='checked' "; } $returnValue .= " />
"; $i++; } $returnValue .= "
"; return (string) $returnValue; } }