sterzycom/panel/app/fields/hidden/hidden.php

13 lines
225 B
PHP
Raw Normal View History

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