_getInfo($name, $value, $attribs); extract($info); // name, id, value, attribs, options, listsep, disable // build the element if ($disable) { // disabled. no hidden value because it can't be clicked. $xhtml = '[' . $this->view->escape($value) . ']'; } else { // enabled $xhtml = 'view->escape($value) . '"'; } // add attributes and close $xhtml .= $this->_htmlAttribs($attribs) . ' />'; } return $xhtml; } }