_getInfo($name, $content, $attribs); extract($info); if (!empty($id)) { $id = ' id="' . $this->view->escape($id) . '"'; } else { $id = ''; } if (array_key_exists('id', $attribs) && empty($attribs['id'])) { unset($attribs['id']); } if (!empty($name) && !($this->_isXhtml() && $this->_isStrictDoctype())) { $name = ' name="' . $this->view->escape($name) . '"'; } else { $name = ''; } if ( array_key_exists('name', $attribs) && empty($attribs['id'])) { unset($attribs['id']); } $xhtml = '_htmlAttribs($attribs) . '>'; if (false !== $content) { $xhtml .= $content . ''; } return $xhtml; } }