File "FrmProFieldHiddenSettings.php"

Full path: /home/bud/public_html/swamp/Response/cgi-bin/wp-admin/wp-content/plugins/formidable-pro/classes/models/FrmProFieldHiddenSettings.php
File size: 439 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

if ( ! defined( 'ABSPATH' ) ) {
	die( 'You are not allowed to call this page directly.' );
}

/**
 * @since 2.03.05
 */
class FrmProFieldHiddenSettings extends FrmProFieldSettings {

	public function __construct( array $field_options ) {
		parent::__construct( $field_options );
	}

	/**
	 * Set the use_key property for a hidden field
	 *
	 * @since 2.03.05
	 */
	protected function set_use_key() {
		$this->use_key = false;
	}

}