Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
Response
/
cgi-bin
/
wp-admin
/
wp-content
/
plugins
/
formidable-pro
/
classes
/
models
:
FrmProFieldDynamicSettings.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php if ( ! defined( 'ABSPATH' ) ) { die( 'You are not allowed to call this page directly.' ); } /** * @since 2.03.05 */ class FrmProFieldDynamicSettings extends FrmProFieldSettings { /** * @var int * @since 2.03.05 */ private $linked_field_id = 0; public function __construct( array $field_options ) { parent::__construct( $field_options ); $this->set_linked_field_id(); } /** * Set the use_key property * * @since 2.03.05 */ protected function set_use_key() { $this->use_key = true; } /** * Set the linked_field_id property * * @since 2.03.05 */ private function set_linked_field_id() { if ( isset( $this->field_options['form_select'] ) && is_numeric( $this->field_options['form_select'] ) ) { $this->linked_field_id = (int) $this->field_options['form_select']; } } /** * Get the linked_field_id property * * @since 2.03.05 * * @return int */ public function get_linked_field_id() { return $this->linked_field_id; } }