| 1 | <?php |
||
| 6 | class FrmFieldHidden extends FrmFieldType { |
||
| 7 | |||
| 8 | /** |
||
| 9 | * @var string |
||
| 10 | * @since 3.0 |
||
| 11 | */ |
||
| 12 | protected $type = 'hidden'; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var bool |
||
| 16 | * @since 3.0 |
||
| 17 | */ |
||
| 18 | protected $has_input = false; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var bool |
||
| 22 | * @since 3.0 |
||
| 23 | */ |
||
| 24 | protected $has_html = false; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var bool |
||
| 28 | * @since 3.0 |
||
| 29 | */ |
||
| 30 | protected $holds_email_values = true; |
||
| 31 | |||
| 32 | protected function field_settings_for_type() { |
||
| 39 | |||
| 40 | protected function include_form_builder_file() { |
||
| 43 | |||
| 44 | protected function html5_input_type() { |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @since 4.0 |
||
| 50 | */ |
||
| 51 | public function sanitize_value( &$value ) { |
||
| 54 | } |
||
| 55 |