Go to the documentation of this file.00001 <?php
00010 class form_hidden extends form_abstract {
00011
00012 public function isHidden() {
00013 return true;
00014 }
00015
00016 public function toHtml() {
00017 return utils::htmlTag($this->htmlTagName,
00018 array_merge($this->html, array(
00019 'name'=>$this->name,
00020 'id'=>$this->id,
00021 'value'=>$this->getRawValue(),
00022 )));
00023 }
00024
00025 public function toXul() {
00026 return utils::htmlTag($this->xulTagName,
00027 array_merge($this->xul, array(
00028 'id'=>$this->id,
00029 'value'=>$this->getRawValue(),
00030 )));
00031 }
00032
00033 }