Exemplo n.º 1
0
function input($id, $value = '', array $params = array())
{
    return InputTag::create(Helper::template(), array_merge(array('type' => 'text', 'id' => $id, 'value' => $value), $params));
}
Exemplo n.º 2
0
 public function input($type, $field, $params = array())
 {
     return InputTag::create($this->template(), array_merge(array('type' => $type, 'id' => "{$this->id}-{$field}", 'name' => $field), $params));
 }