_getInfo($name, $value, $attribs); return $this->_getOpenTag($info) . $info['value'] . $this->_getCloseTag($info); } protected function _getOpenTag($info) { if (isset($info['tag'])) { return '<' . $info['tag'] . ' id="' . $this->view->escape($info['id']) . '"' . $this->_htmlAttribs($info['attribs']) . '>'; } return ''; } protected function _getCloseTag($info) { if (isset($info['tag'])) { return ''; } return ''; } }