Uname:Linux webm009.cluster131.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64

403WebShell
403Webshell
Server IP : 146.59.209.152  /  Your IP : 216.73.216.152
Web Server : Apache
System : Linux webm009.cluster131.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User : monpetu ( 144298)
PHP Version : 7.4.33
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/monpetu/www/ipprint/wp-content/plugins/sureforms/inc/fields/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/monpetu/www/ipprint/wp-content/plugins/sureforms/inc/fields/multichoice-markup.php
<?php
/**
 * Sureforms Multichoice Markup Class file.
 *
 * @package sureforms.
 * @since 0.0.1
 */

namespace SRFM\Inc\Fields;

use Spec_Gb_Helper;
use SRFM\Inc\Helper;
use SRFM\Inc\Smart_Tags;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * SureForms Multichoice Markup Class.
 *
 * @since 0.0.1
 */
class Multichoice_Markup extends Base {
	/**
	 * Flag indicating if only a single selection is allowed.
	 *
	 * @var bool
	 * @since 0.0.2
	 */
	protected $single_selection;

	/**
	 * Width of the choice input field.
	 *
	 * @var string
	 * @since 0.0.2
	 */
	protected $choice_width;

	/**
	 * HTML attribute string for the choice width.
	 *
	 * @var string
	 * @since 0.0.2
	 */
	protected $choice_width_attr;

	/**
	 * HTML attribute string for the input type (radio or checkbox).
	 *
	 * @var string
	 * @since 0.0.2
	 */
	protected $type_attr;

	/**
	 * SVG type for the input field.
	 *
	 * @var string
	 * @since 0.0.7
	 */
	protected $svg_type;

	/**
	 * HTML attribute string for the name attribute of the input field.
	 *
	 * @var string
	 * @since 0.0.2
	 */
	protected $name_attr;

	/**
	 * Flag indicating if the layout is vertical.
	 *
	 * @var bool
	 * @since 0.0.7
	 */
	protected $vertical_layout;

	/**
	 * Contains value if the option contains icon / image
	 *
	 * @var mixed
	 * @since 0.0.7
	 */
	protected $option_type;

	/**
	 * Flag indicating if the value should be shown.
	 *
	 * @var bool
	 * @since 1.5.0
	 */
	protected $show_values;

	/**
	 * Array of preselected option indices.
	 *
	 * @var array
	 * @since 2.3.0
	 */
	protected $preselected_options;

	/**
	 * Initialize the properties based on block attributes.
	 *
	 * @param array<mixed> $attributes Block attributes.
	 * @since 0.0.2
	 */
	public function __construct( $attributes ) {
		$this->slug = 'multi-choice';
		$this->set_properties( $attributes );
		$this->set_input_label( __( 'Multi Choice', 'sureforms' ) );
		$this->set_error_msg( $attributes, 'srfm_multi_choice_block_required_text' );
		$this->single_selection    = $attributes['singleSelection'] ?? false;
		$this->choice_width        = $attributes['choiceWidth'] ?? '';
		$this->vertical_layout     = $attributes['verticalLayout'] ?? false;
		$this->option_type         = ! empty( $attributes['optionType'] ) && in_array( $attributes['optionType'], [ 'icon', 'image' ], true ) ? $attributes['optionType'] : 'icon';
		$this->type_attr           = $this->single_selection ? 'radio' : 'checkbox';
		$this->svg_type            = $this->single_selection ? 'circle' : 'square';
		$this->name_attr           = $this->single_selection ? 'name="srfm-input-' . esc_attr( $this->slug ) . '-' . esc_attr( $this->block_id ) . '"' : '';
		$this->choice_width_attr   = $this->choice_width ? 'srfm-choice-width-' . str_replace( '.', '-', $this->choice_width ) : '';
		$this->show_values         = apply_filters( 'srfm_show_options_values', false, $attributes['showValues'] ?? false );
		$this->preselected_options = $attributes['preselectedOptions'] ?? [];
		$this->resolve_dynamic_default( $attributes );
		$this->set_markup_properties();
		$this->set_aria_described_by();
	}

	/**
	 * Render the sureforms Multichoice classic styling
	 *
	 * @since 0.0.2
	 * @return string|bool
	 */
	public function markup() {
		$check_svg     = Helper::fetch_svg( $this->svg_type . '-checked', 'srfm-' . $this->slug . '-icon', 'aria-hidden="true"' );
		$unchecked_svg = Helper::fetch_svg( $this->svg_type . '-unchecked', 'srfm-' . $this->slug . '-icon-unchecked', 'aria-hidden="true"' );

		$this->class_name = $this->get_field_classes( [ "srfm-{$this->type_attr}-mode" ] );

		$allowed_tags_svg = Helper::$allowed_tags_svg;

		ob_start();
		?>
		<div data-block-id="<?php echo esc_attr( $this->block_id ); ?>" class="<?php echo esc_attr( $this->class_name ); ?>">
			<fieldset>
				<input class="srfm-input-<?php echo esc_attr( $this->slug ); ?>-hidden" data-required="<?php echo esc_attr( $this->data_require_attr ); ?>" aria-required="<?php echo esc_attr( $this->data_require_attr ); ?>" <?php echo wp_kses_post( $this->data_attribute_markup() ); ?> name="srfm-input-<?php echo esc_attr( $this->slug ); ?>-<?php echo esc_attr( $this->block_id ); ?><?php echo esc_attr( $this->field_name ); ?>" type="hidden" value=""/>
				<legend class="srfm-block-legend">
					<?php echo wp_kses_post( $this->label_markup ); ?>
				</legend>
				<?php echo wp_kses_post( $this->help_markup ); ?>
					<?php if ( is_array( $this->options ) ) { ?>
						<div class="srfm-block-wrap <?php echo esc_attr( $this->choice_width_attr ); ?> <?php echo $this->vertical_layout ? 'srfm-vertical-layout' : ''; ?>">
							<?php foreach ( $this->options as $i => $option ) { ?>
								<div class="srfm-<?php echo esc_attr( $this->slug ); ?>-single">
									<input type="<?php echo esc_attr( $this->type_attr ); ?>"
										id="srfm-<?php echo esc_attr( $this->slug ); ?>-<?php echo esc_attr( $this->block_id . '-' . $i ); ?>"
										class="srfm-input-<?php echo esc_attr( $this->slug ); ?>-single" <?php echo wp_kses_post( $this->name_attr ); ?>
										<?php echo 0 === $i ? 'aria-describedby="' . ( ! empty( $this->aria_described_by ) ? esc_attr( trim( $this->aria_described_by ) ) : '' ) . '"' : ''; ?>
										<?php echo 0 === $i ? 'aria-required="' . ( ! empty( $this->data_require_attr ) ? esc_attr( $this->data_require_attr ) : '' ) . '"' : ''; ?>
										<?php echo $this->show_values && isset( $option['value'] ) ? 'option-value="' . esc_attr( $option['value'] ) . '"' : ''; ?>
										<?php echo is_array( $this->preselected_options ) && in_array( $i, $this->preselected_options, true ) ? 'checked' : ''; ?>
									/>
									<div class="srfm-block-content-wrap">
										<div class="srfm-option-container">
											<?php if ( 'icon' === $this->option_type && ! empty( $option['icon'] ) ) { ?>
											<span class="srfm-option-icon" aria-hidden="true">
												<?php Spec_Gb_Helper::render_svg_html( $option['icon'] ); ?>
											</span>
											<?php } elseif ( 'image' === $this->option_type && ! empty( $option['image'] ) ) { ?>
											<span class="srfm-option-image" aria-hidden="true">
												<img src="<?php echo esc_url( $option['image'] ); ?>"/>
											</span>
											<?php } ?>
											<!-- This label content is used in conditional logic and for storing values in a hidden input field as comma-separated values.
											The markup should remain unchanged.
											If you make any changes here, ensure the corresponding JavaScript value functionality and conditional logic are also updated. -->
											<label for="srfm-<?php echo esc_attr( $this->slug ); ?>-<?php echo esc_attr( $this->block_id . '-' . $i ); ?>" data-option-text="<?php echo isset( $option['optionTitle'] ) ? esc_attr( $option['optionTitle'] ) : ''; ?>"><?php echo isset( $option['optionTitle'] ) ? esc_html( $option['optionTitle'] ) : ''; ?></label>
										</div>
										<div class="srfm-icon-container"><?php echo wp_kses( $check_svg, $allowed_tags_svg ) . wp_kses( $unchecked_svg, $allowed_tags_svg ); ?></div>
									</div>
								</div>
							<?php } ?>
						</div>
					<?php } ?>
				<div class="srfm-error-wrap"><?php echo wp_kses_post( $this->error_msg_markup ); ?></div>
			</fieldset>
		</div>
		<?php
		$markup = ob_get_clean();

		return apply_filters(
			'srfm_block_field_markup',
			$markup,
			[
				'slug'       => $this->slug,
				'is_editing' => $this->is_editing,
				'field_name' => $this->field_name,
				'attributes' => $this->attributes,
			]
		);
	}

	/**
	 * Resolve dynamic default value from smart tags and override preselected options.
	 *
	 * Radio (single-selection) mode matches the resolved value as a single
	 * trimmed string, so option titles that legitimately contain delimiter
	 * characters (commas, pipes, etc.) still match.
	 *
	 * Checkbox mode splits the resolved value on the pipe character (`|`) and
	 * matches every segment (for example "{get_input:a}|{get_input:b}" resolving
	 * to "Red|Blue", or a single `{get_input:colors}` with URL
	 * `?colors=Red|Blue`). The same pipe split applies to multi-character
	 * resolved values from `{get_input:...}` and `{get_cookie:...}`, so cookie
	 * payloads that contain pipes are treated as multi-value in checkbox mode.
	 *
	 * When the `Add Numeric Values to Options` (showValues) setting is on,
	 * each segment is also compared against the option's `value`.
	 *
	 * @param array<mixed> $attributes Block attributes.
	 * @since 2.8.1
	 * @since 2.10.0 Added checkbox (pipe-delimited) multi-value matching.
	 * @return void
	 */
	protected function resolve_dynamic_default( $attributes ) {
		// Coalesce first so blocks saved before this attribute existed (pre-2.10.0)
		// don't trigger an "Undefined array key" warning on every frontend render.
		$raw_default     = $attributes['dynamicDefaultValue'] ?? '';
		$dynamic_default = is_string( $raw_default ) ? $raw_default : '';
		if ( empty( $dynamic_default ) ) {
			return;
		}

		$smart_tags = new Smart_Tags();
		$resolved   = $smart_tags->process_smart_tags( $dynamic_default );

		if ( empty( $resolved ) || ! is_string( $resolved ) || ! is_array( $this->options ) ) {
			return;
		}

		// START: multi-value dynamic default resolution.
		if ( ! $this->single_selection ) {
			$segments = array_filter(
				array_map( 'trim', explode( '|', $resolved ) ),
				static function ( $segment ) {
					return '' !== $segment;
				}
			);
			// Cap segments to avoid pathological URLs (e.g. ?colors=|||||...) producing thousands of comparisons.
			$segments = array_slice( $segments, 0, 50 );
		} else {
			$trimmed  = trim( $resolved );
			$segments = '' === $trimmed ? [] : [ $trimmed ];
		}

		if ( empty( $segments ) ) {
			return;
		}

		$match_value_too  = ! empty( $attributes['showValues'] );
		$matching_indices = [];

		foreach ( $segments as $segment ) {
			foreach ( $this->options as $i => $option ) {
				if ( ! is_array( $option ) || in_array( $i, $matching_indices, true ) ) {
					continue;
				}

				$option_title = isset( $option['optionTitle'] ) && is_scalar( $option['optionTitle'] ) ? (string) $option['optionTitle'] : '';
				$raw_value    = $option['value'] ?? '';
				$option_value = $match_value_too && is_scalar( $raw_value ) ? (string) $raw_value : '';

				$is_match = ( '' !== $option_title && strcasecmp( $option_title, $segment ) === 0 )
					|| ( $match_value_too && '' !== $option_value && strcasecmp( $option_value, $segment ) === 0 );

				if ( $is_match ) {
					$matching_indices[] = $i;
					if ( $this->single_selection ) {
						break 2;
					}
					break;
				}
			}
		}

		if ( ! empty( $matching_indices ) ) {
			$this->preselected_options = $this->single_selection ? [ $matching_indices[0] ] : $matching_indices;
		}
		// END: multi-value dynamic default resolution.
	}

	/**
	 * Data attribute markup for min and max value
	 *
	 * @since 0.0.13
	 * @return string
	 */
	protected function data_attribute_markup() {
		$data_attr = '';
		if ( $this->single_selection ) {
			return '';
		}

		if ( $this->min_selection ) {
			$data_attr .= 'data-min-selection="' . esc_attr( $this->min_selection ) . '"';
		}
		if ( $this->max_selection ) {
			$data_attr .= 'data-max-selection="' . esc_attr( $this->max_selection ) . '"';
		}

		return $data_attr;
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit