| Server IP : 78.24.162.143 / Your IP : 216.73.217.176 Web Server : Apache System : Linux hosting.cormo.systems 5.15.0-179-generic #189-Ubuntu SMP Tue May 5 18:20:56 UTC 2026 x86_64 User : web63 ( 5058) PHP Version : 7.4.33 Disable Function : create_functions,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/clients/client34/web63/web/wp-content/plugins/pods/ui/fields/ |
Upload File : |
<?php
$attributes = array();
$attributes['tabindex'] = 2;
$pick_limit = (int) pods_var( $form_field_type . '_limit', $options, 0 );
$multiple = false;
if ( 'multi' == pods_var( $form_field_type . '_format_type', $options ) && 1 != $pick_limit ) {
$name .= '[]';
$attributes['multiple'] = 'multiple';
$multiple = true;
}
if ( ! is_array( $options['data'] ) && false !== $options['data'] && 0 < strlen( $options['data'] ) ) {
$options['data'] = implode( ',', $options['data'] );
} else {
$options['data'] = (array) pods_var_raw( 'data', $options, array(), null, true );
}
$attributes = PodsForm::merge_attributes( $attributes, $name, $form_field_type, $options );
if ( pods_var( 'readonly', $options, false ) ) {
$attributes['readonly'] = 'READONLY';
$attributes['class'] .= ' pods-form-ui-read-only';
}
$selection_made = false;
?>
<select<?php PodsForm::attributes( $attributes, $name, $form_field_type, $options ); ?>>
<?php
foreach ( $options['data'] as $option_value => $option_label ) {
if ( is_array( $option_label ) && isset( $option_label['label'] ) ) {
$option_label = $option_label['label'];
}
if ( is_array( $option_label ) ) {
?>
<optgroup label="<?php echo esc_attr( $option_value ); ?>">
<?php
foreach ( $option_label as $sub_option_value => $sub_option_label ) {
if ( is_array( $sub_option_label ) ) {
if ( isset( $sub_option_label['label'] ) ) {
$sub_option_label = $sub_option_label['label'];
} else {
$sub_option_label = $sub_option_value;
}
}
$sub_option_label = (string) $sub_option_label;
$selected = '';
$options['selected'] = '';
if ( ! $selection_made && ( ( ! is_array( $value ) && (string) $sub_option_value === (string) $value ) || ( is_array( $value ) && ( in_array( $sub_option_value, $value ) || in_array( (string) $sub_option_value, $value ) ) ) ) ) {
$selected = ' SELECTED';
$options['selected'] = 'selected';
if ( ! $multiple ) {
$selection_made = true;
}
}
if ( is_array( $sub_option_value ) ) {
?>
<option<?php PodsForm::attributes( $sub_option_value, $name, $form_field_type . '_option', $options ); ?>><?php echo esc_html( $sub_option_label ); ?></option>
<?php
} else {
?>
<option value="<?php echo esc_attr( $sub_option_value ); ?>"<?php echo $selected; ?>><?php echo esc_html( $sub_option_label ); ?></option>
<?php
}
}//end foreach
?>
</optgroup>
<?php
} else {
$option_label = (string) $option_label;
$selected = '';
$options['selected'] = '';
if ( ! $selection_made && ( ( ! is_array( $value ) && (string) $option_value === (string) $value ) || ( is_array( $value ) && ( in_array( $option_value, $value ) || in_array( (string) $option_value, $value ) ) ) ) ) {
$selected = ' SELECTED';
$options['selected'] = 'selected';
if ( ! $multiple ) {
$selection_made = true;
}
}
if ( is_array( $option_value ) ) {
?>
<option<?php PodsForm::attributes( $option_value, $name, $form_field_type . '_option', $options ); ?>><?php echo esc_html( $option_label ); ?></option>
<?php
} else {
?>
<option value="<?php echo esc_attr( $option_value ); ?>"<?php echo $selected; ?>><?php echo esc_html( $option_label ); ?></option>
<?php
}
}//end if
}//end foreach
?>
</select>