/**
  * Class constructor. Sets up the ZForm element, types it as a 'PASSWORD' element.
  * This is the base class for all the INPUT types supported by ZForm.
  *
  * @param string id The optional identifier for the newly created ZFormPassword
  * @param ZFormWebElement The optional parent of the newly create ZFormPassword
  * The default value is null which means the ZFormPassword is a root element.
  * @return     void
  */
 public function __construct($id = null, $parentNode = null)
 {
     parent::__construct($id, $parentNode, 'PASSWORD');
 }
Пример #2
0
 /**
  * Class constructor. Sets up the ZForm element, types it as a 'RADIO' element.
  * This is the base class for all the INPUT types supported by ZForm.
  *
  * @param string id The optional identifier for the newly created ZFormRadio
  * @param ZFormWebElement The optional parent of the newly create ZFormRadio
  * The default value is null which means the ZFormRadio is a root element.
  * @return     void
  */
 public function __construct($id = null, $parentNode = null)
 {
     parent::__construct($id, $parentNode, 'RADIO');
 }
Пример #3
0
 /**
  * Class constructor. Sets up the ZForm element, types it as a 'CHECKBOX' element
  *
  * @param string id The optional identifier for the newly created ZFormButton
  * @param ZFormWebElement The optional parent of the newly create ZFormButton.
  * The default value is null which means the ZFormButton is a root element.
  * @return     void
  */
 public function __construct($id = null, $parentNode = null)
 {
     parent::__construct($id, $parentNode, 'CHECKBOX');
 }