| // | Martín Marrese | // +----------------------------------------------------------------------+ // // $Id$ // // +X2C includes require_once 'HTML/Common.php'; // ~X2C // +X2C Class 214 :Image /** * @access public */ class HTML_Image extends HTML_Common { // ~X2C // +X2C Operation 216 /** * @return string * @access public */ function toHtml()// ~X2C { $attrs = ''; foreach ($this->_attributes as $key => $val) { $attrs .= ' ' . $key . '="' . htmlentities($val) . '"'; } return ""; } // -X2C } // -X2C Class :Image ?>