head 1.2;
access;
symbols;
locks; strict;
comment @# @;
1.2
date 2007.09.03.00.37.37; author mkanat; state dead;
branches;
next 1.1;
1.1
date 2007.04.30.20.49.32; author arturkeska; state Exp;
branches;
next ;
desc
@@
1.2
log
@Remove a bunch of files so that I don't have to deal with them in EXPECTED_CONTENTS.
@
text
@<?PHP
//! Class represents a submit button object.
/*! The submit button may be added as a child element to the HTOM_Form.
*/
class HTOM_Submit extends HTOM_Input
{
/*! \brief Initialize the HTOM_Submit object.
* \param $id a name of the object.
* \param $value a string to be displayed on the submition button.
* \param $attributes either the HTOM_Attribute or an array of HTOM_Attribute objects.
*/
public function __construct($id, $value, $attributes=NULL )
{
parent::__construct($id, "submit", $attributes);
$this->SetAttributes( new HTOM_SimpleAttribute("value",$value) );
}
}
?>@
1.1
log
@*** empty log message ***
@
text
@@