for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @since 3.0
*/
class FrmFieldHidden extends FrmFieldType {
* @var string
protected $type = 'hidden';
* @var bool
protected $has_input = false;
protected $has_html = false;
protected $holds_email_values = true;
protected function field_settings_for_type() {
$settings = parent::field_settings_for_type();
$settings['css'] = false;
$settings['default'] = true;
return $settings;
}
protected function include_form_builder_file() {
return FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/field-hidden.php';
protected function html5_input_type() {
return 'hidden';