initial commit
This commit is contained in:
commit
1cc4bf3572
254 changed files with 63622 additions and 0 deletions
htdocs/libraries/Nibble-Forms/Nibble/NibbleForms/Field
|
@ -0,0 +1,20 @@
|
|||
<?php
|
||||
namespace Nibble\NibbleForms\Field;
|
||||
|
||||
class Hidden extends Text
|
||||
{
|
||||
|
||||
public function __construct($label = false, $attributes = array())
|
||||
{
|
||||
parent::__construct($label, $attributes);
|
||||
}
|
||||
|
||||
public function returnField($form_name, $name, $value = '')
|
||||
{
|
||||
$this->field_type = 'hidden';
|
||||
$this->label = false;
|
||||
|
||||
return parent::returnField($form_name, $name, $value);
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue