123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?php
- class HTML_QuickForm_email extends HTML_QuickForm_input
- {
-
-
- function HTML_QuickForm_email($elementName=null, $elementLabel=null, $attributes=null)
- {
- parent::__construct($elementName, $elementLabel, $attributes);
- $this->setType('email');
- }
-
-
-
- function setSize($size)
- {
- $this->updateAttributes(array('size'=>$size));
- }
-
-
-
- function setMaxlength($maxlength)
- {
- $this->updateAttributes(array('maxlength'=>$maxlength));
- }
-
-
-
- }
|