HEX
Server: Apache/2.4.65 (Debian)
System: Linux 88f31f35b0b8 6.1.0-38-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.147-1 (2025-08-02) x86_64
User: www-data (33)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/wp-external-links/libs/fwp/class-fwp-html-fields.php
<?php
/**
 * Class FWP_HTML_Fields_1x0x0
 *
 * @package  FWP
 * @category WordPress Library
 * @version  1.0.0

 * @link     https://www.webfactoryltd.com/
 */
class FWP_HTML_Fields_1x0x0
{

    /**
     * @var array
     */
    private $values = array();

    /**
     * @var string
     */
    private $field_id_format = '%s';

    /**
     * @var string
     */
    private $field_name_format = '%s';

    /**
     * Constructor
     */
    public function __construct( array $values = array(), $field_id_format = null, $field_name_format = null )
    {
        $this->values = $values;
        $this->field_id_format = $field_id_format;
        $this->field_name_format = $field_name_format;
    }

    /**
     * Get form field id
     * @param string $key
     * @return string
     */
    public function get_field_id( $key )
    {
        return sprintf( $this->field_id_format, $key );
    }

    /**
     * Get form field name
     * @param string $key
     * @return string
     */
    public function get_field_name( $key )
    {
        return sprintf( $this->field_name_format, $key );
    }

    /**
     * Get value
     * @param string $key
     * @param mixed $default_value Optional
     * @return mixed|null
     */
    public function get_value( $key, $default_value = null )
    {
        $values = $this->values;

        if ( !isset( $values[ $key ] ) ) {
            return $default_value;
        }

        return $values[ $key ];
    }

    /**
     * Show html label
     * @param string $key
     * @param string $label_text
     * @param array $atts  Optional
     */
    public function label( $key, $label_text, array $atts = array() )
    {
        WPEL_Plugin::wp_kses_wf('<label for="' . esc_attr($this->get_field_id( $key )) . '"
                    ' . $this->get_html_atts( $atts ) . '
                >' . esc_attr($label_text) . '
                </label>');
    }

    /**
     * Show text input field
     * @param string $key
     * @param array  $atts  Optional
     */
    public function text( $key, array $atts = array() )
    {
        WPEL_Plugin::wp_kses_wf('<input type="text"
                    id="' . esc_attr($this->get_field_id( $key )). '"
                    name="' . esc_attr($this->get_field_name( $key )) . '"
                    value="' . esc_attr( $this->get_value( $key ) ) . '"
                    ' . $this->get_html_atts( $atts ) . '
                >');
    }

    /**
     * Show text input field
     * @param string $key
     * @param array  $atts  Optional
     */
    public function text_area( $key, array $atts = array() )
    {
        WPEL_Plugin::wp_kses_wf('<textarea id="' . esc_attr($this->get_field_id( $key )) . '"
                    name="' . esc_attr($this->get_field_name( $key )) . '"
                    ' . $this->get_html_atts( $atts ) . '
                >'. esc_textarea( $this->get_value( $key ) ) .'</textarea>');
    }

    /**
     * Show a check field
     * @param string $key
     * @param mixed $checked_value
     * @param mixed $unchecked_value
     * @param array $atts  Optional
     */
    public function check( $key, $checked_value = '1', $unchecked_value = '', array $atts = array() )
    {
        // workaround for also posting a value when checkbox is unchecked
        if ( null !== $unchecked_value ) {
            WPEL_Plugin::wp_kses_wf('<input type="hidden"
                        name="' . $this->get_field_name( $key ) . '"
                        value="' . esc_attr( $unchecked_value ) . '"
                    >');
        }

        WPEL_Plugin::wp_kses_wf('<span class="checkbox-container"><input type="checkbox"
                    id="' . $this->get_field_id( $key ) . '"
                    name="' . $this->get_field_name( $key ) . '"
                    value="' . esc_attr( $checked_value ) . '"
                    ' . $this->get_checked_attr( $key, $checked_value ) . '
                    ' . $this->get_html_atts( $atts ) . '
                ><span class="checkmark"></span></span>');
    }

    /**
     * Show a check field with label
     * @param string $key
     * @param string $label_text
     * @param mixed $checked_value
     * @param mixed $unchecked_value
     * @param array $atts  Optional
     */
    public function check_with_label( $key, $label_text, $checked_value, $unchecked_value = null, array $atts = array() )
    {
        echo '<label>';
        $this->check( $key, $checked_value, $unchecked_value, $atts );
        WPEL_Plugin::wp_kses_wf($label_text);
        echo '</label>';
    }

    /**
     * Show a radio field
     * @param string $key
     * @param mixed $checked_value
     * @param array $atts  Optional
     */
    public function radio( $key, $checked_value, array $atts = array() )
    {
        $id = $this->get_field_id( $key ) . '-' . sanitize_key( $checked_value );

        WPEL_Plugin::wp_kses_wf('<span class="radio-container"><input type="radio"
                    id="' . $id . '"
                    name="' . $this->get_field_name( $key ) . '"
                    value="' . esc_attr( $checked_value ) . '"
                    ' . $this->get_checked_attr( $key, $checked_value ) . '
                    ' . $this->get_html_atts( $atts ) . '
                ><span class="radio"></span></span>');
    }

    /**
     * Show a check field with label
     * @param string $key
     * @param string $label_text
     * @param mixed $checked_value
     * @param array $atts  Optional
     */
    public function radio_with_label( $key, $label_text, $checked_value, array $atts = array() )
    {
        echo '<label>';
        $this->radio( $key, $checked_value, $atts );
        WPEL_Plugin::wp_kses_wf($label_text);
        echo '</label>';
    }

    /**
     * Show select field with or without options
     * @param string $key
     * @param mixed $checked_value
     * @param array $options
     * @param array $atts  Optional
     */
    public function select( $key, array $options = array(), array $atts = array() )
    {
        $value = $this->get_value( $key );

        WPEL_Plugin::wp_kses_wf('<select id="' . $this->get_field_id( $key ) . '"
                    name="' . $this->get_field_name( $key ) . '"
                    ' . $this->get_html_atts( $atts ) . '
                >');

        foreach ( $options as $option_value => $option_text ) {
            $this->select_option( $option_text, $option_value, ( $value == $option_value ) );
        }

        echo '</select>';
    }

    /**
     * Show a select option
     * @param string $text
     * @param string $value
     * @param boolean $selected
     */
    public function select_option( $text, $value, $selected = false )
    {
        WPEL_Plugin::wp_kses_wf('<option value="' . esc_attr( $value ) . '"' . ( $selected ? ' selected' : '' ) . '>
                    ' . $text  . '
               </option>');
    }

    /**
     * @param array $atts
     * @return string
     */
    private function get_html_atts( array $atts )
    {
        $html_atts = '';

		foreach ( $atts as $key => $value ) {
            if ( null === $value ) {
    			$html_atts .= ' '. $key;
            } else {
    			$html_atts .= ' '. $key .'="'. esc_attr( $value ) .'"';
            }
        }

        return $html_atts;
    }

    /**
     * Get the checked attribute
     * @param string $key
     * @param mixed $checked_value
     * @return string
     */
    private function get_checked_attr( $key, $checked_value )
    {
        return ( $this->get_value( $key ) == $checked_value ) ? ' checked' : '';
    }

    /**
     * Show text input field
     * @param string $key
     * @param array  $atts  Optional
     */
    public function number( $key, array $atts = array() )
    {
        WPEL_Plugin::wp_kses_wf('<input type="number"
                    id="' . $this->get_field_id( $key ) . '"
                    name="' . $this->get_field_name( $key ) . '"
                    value="' . esc_attr( $this->get_value( $key ) ) . '"
                    ' . $this->get_html_atts( $atts ) . '
                > ' . $atts['unit']);
    }

     /**
     * Show text input field
     * @param string $key
     * @param array  $atts  Optional
     */
    public function color( $key, array $atts = array() )
    {
        WPEL_Plugin::wp_kses_wf('<input type="text" class="wpel-colorpicker"
                    id="' . $this->get_field_id( $key ) . '"
                    name="' . $this->get_field_name( $key ) . '"
                    value="' . esc_attr( $this->get_value( $key ) ) . '"
                    ' . $this->get_html_atts( $atts ) . '
                >');
    }

}