. */ /** * Image * * This file contains the class AmazonProduct_Image * * @author Matthew John Denton * @package com.mdbitz.amazon.product */ /** * AmazonProduct_Image defines the Image object * * Properties * * * @package com.mdbitz.amazon.product */ class AmazonProduct_Image extends AmazonProduct_Abstract { public function toHTML() { $html_txt = "_values as $key => $value ) { if( $key == "URL" ) { $html_txt .= 'src="' . $value . '" '; } else { $html_txt .= strtolower( $key ) . '="' . $value . '" '; } } $html_txt .= "/>"; return $html_txt; } }