403Webshell
Server IP : 198.38.94.13  /  Your IP : 216.73.217.33
Web Server : Apache
System : Linux d4744.dxb1.stableserver.net 5.14.0-611.49.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Apr 21 16:39:08 EDT 2026 x86_64
User : revivere ( 1140)
PHP Version : 8.2.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /proc/thread-self/cwd/wp-content/plugins/pods/ui/fields/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/thread-self/cwd/wp-content/plugins/pods/ui/fields/select.php
<?php

// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
	die( '-1' );
}

// phpcs:ignoreFile WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound

$attributes             = array();
$attributes['tabindex'] = 2;

$pick_limit = (int) pods_v( $form_field_type . '_limit', $options, 0 );
$multiple   = false;

if ( 'multi' === pods_v( $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_v( 'data', $options, [] );
}

$attributes = PodsForm::merge_attributes( $attributes, $name, $form_field_type, $options );

if ( (bool) pods_v( '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;

					$is_selected = false;
					$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 ) ) ) ) ) {
						$is_selected = true;
						$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 selected( $is_selected ); ?>><?php echo esc_html( $sub_option_label ); ?></option>
						<?php
					}
				}//end foreach
				?>
			</optgroup>
			<?php
		} else {
			$option_label = (string) $option_label;

			$is_selected = false;
			$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 ) ) ) ) ) {
				$is_selected = true;
				$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 selected( $is_selected ); ?>><?php echo esc_html( $option_label ); ?></option>
				<?php
			}
		}//end if
	}//end foreach
	?>
</select>

Youez - 2016 - github.com/yon3zu
LinuXploit