_getInfo($name, $value, $attribs); extract($info); // name, value, attribs, options, listsep, disable, escape // build the element if ($disable) { // disabled; display nothing $xhtml = ''; } else { $value = ($escape) ? $this->view->escape($value) : $value; // enabled; display label $xhtml = '_htmlAttribs($attribs) . '>' . $value . ''; } return $xhtml; } }