00001 <?php 00002 00007 class XFormsSecretControl extends XFormsControl 00008 { 00009 00017 public function generateTK() { 00018 00019 $id = $this->getControlId(); 00020 $value = $this->getFirstValue(); 00021 00022 $i = new TKFormInput('password', $id, $value); 00023 $i->class = array('input', 'textInput'); 00024 return $i; 00025 00026 } 00027 00028 } 00029 00030 ?>
1.5.6