13 lines
No EOL
225 B
PHP
13 lines
No EOL
225 B
PHP
<?php
|
|
|
|
class HiddenField extends BaseField {
|
|
|
|
public function template() {
|
|
return new Brick('input', null, array(
|
|
'type' => 'hidden',
|
|
'name' => $this->name(),
|
|
'value' => $this->value()
|
|
));
|
|
}
|
|
|
|
} |