| // | Bertrand Mansion | // +----------------------------------------------------------------------+ // // $Id: image.php,v 1.1 2006/09/24 17:04:55 jamiesensei Exp $ require_once("HTML/QuickForm/input.php"); /** * HTML class for a image type element * * @author Adam Daniel * @author Bertrand Mansion * @version 1.0 * @since PHP4.04pl1 * @access public */ class HTML_QuickForm_image extends HTML_QuickForm_input { // {{{ constructor /** * Class constructor * * @param string $elementName (optional)Element name attribute * @param string $src (optional)Image source * @param mixed $attributes (optional)Either a typical HTML attribute string * or an associative array * @since 1.0 * @access public * @return void */ function HTML_QuickForm_image($elementName=null, $src='', $attributes=null) { HTML_QuickForm_input::HTML_QuickForm_input($elementName, null, $attributes); $this->setType('image'); $this->setSource($src); } // end class constructor // }}} // {{{ setSource() /** * Sets source for image element * * @param string $src source for image element * @since 1.0 * @access public * @return void */ function setSource($src) { $this->updateAttributes(array('src' => $src)); } // end func setSource // }}} // {{{ setBorder() /** * Sets border size for image element * * @param string $border border for image element * @since 1.0 * @access public * @return void */ function setBorder($border) { $this->updateAttributes(array('border' => $border)); } // end func setBorder // }}} // {{{ setAlign() /** * Sets alignment for image element * * @param string $align alignment for image element * @since 1.0 * @access public * @return void */ function setAlign($align) { $this->updateAttributes(array('align' => $align)); } // end func setAlign // }}} // {{{ freeze() /** * Freeze the element so that only its value is returned * * @access public * @return void */ function freeze() { return false; } //end func freeze // }}} } // end class HTML_QuickForm_image ?>