_getInfo($name, $value, $attribs); extract($info); // name, value, attribs, options, listsep, disable // unset any 'src' attrib if (isset($attribs['src'])) { unset($attribs['src']); } // unset any 'alt' attrib if (isset($attribs['alt'])) { unset($attribs['alt']); } // build the element if ($disable) { // disabled, just an image tag $xhtml = '_htmlAttribs($attribs) . ' />'; } else { // enabled $xhtml = '_htmlAttribs($attribs) . ' />'; } return $xhtml; } }