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
:
FrmProFieldUserIDValueSelector.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 FrmProFieldUserIDValueSelector extends FrmProFieldValueSelector { public function __construct( $field_id, $args ) { parent::__construct( $field_id, $args ); } /** * Display the field value selector * * @since 2.03.05 */ public function display() { echo '<select name="' . esc_attr( $this->html_name ) . '">'; echo '<option value=""></option>'; echo '<option value="current_user" ' . selected( $this->value, 'current_user', false ) . '>'; echo esc_html__( 'Current User', 'formidable-pro' ); echo '</option>'; if ( $this->has_options() ) { foreach ( $this->options as $user_id => $user_login ) { if ( empty( $user_id ) ) { continue; } echo '<option value="' . esc_attr( $user_id ) . '" ' . selected( $this->value, $user_id, false ) . '>'; echo esc_html( $user_login ); echo '</option>'; } } echo '</select>'; } }