# ultimate-store-kit/3.0.9/includes/controls/select-input/dynamic-select.php

Ultimate Store Kit – Store Builder Addons for Elementor, WooCommerce Store Builder, EDD Store Builder, version 3.0.9. 127 lines.

- Page: https://pluginprobe.com/plugins/ultimate-store-kit/3.0.9/code/includes/controls/select-input/dynamic-select.php
- Raw: https://pluginprobe.com/plugins/ultimate-store-kit/3.0.9/raw/includes/controls/select-input/dynamic-select.php
- Modified: 2026-08-10T12:16:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ultimate-store-kit/3.0.9/code/includes/controls/select-input/dynamic-select.php#L10-L20`.

```php
<?php

namespace UltimateStoreKit\Includes\Controls\SelectInput;

use Elementor\Base_Data_Control;
use Elementor\Plugin;

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

/**
 * Dynamic select control.
 *
 * A base control for creating Dynamic_Select control. Displays a select box control
 * based on select on elementor select2 control .
 * It accepts an array in which the `key` is the value and the `value` is the
 * option name. Set `multiple` to `true` to allow multiple value selection.
 *
 * @since 5.8.0
 */
class Dynamic_Select extends Base_Data_Control {

    const TYPE = 'usk-dynamic-select';

    /**
     * Get control type.
     *
     * Retrieve the control type.
     * @since 5.8.0
     * @access public
     */
    public function get_type() {
        return self::TYPE;
    }

    /**
     * Get select2 control default settings.
     *
     * Retrieve the default settings of the select2 control. Used to return the
     * default settings while initializing the select2 control.
     *
     * @return array Control default settings.
     * @since 5.8.0
     * @access protected
     *
     */
    protected function get_default_settings() {
        return [
            'options' => [],
            'multiple' => false,
            // Select2 library options
            'select2options' => [],
            // the lockedOptions array can be passed option keys. The passed option keys will be non-deletable.
            'lockedOptions' => [],
            // the query arguments array can be passed,
            'query_args' => array(),

        ];
    }

    /**
     * Render select2 control output in the editor.
     *
     * Used to generate the control HTML in the editor using Underscore JS
     * template. The variables for the class are available using `data` JS
     * object.
     * @since 5.8.0
     * @access public
     */
    public function content_template() {
        $control_uid = $this->get_control_uid();
?>
        <div class="elementor-control-field">
            <# if ( data.label ) {#>
            <label for="<?php echo esc_attr($control_uid); ?>" class="elementor-control-title">{{{data.label }}}</label>
            <# } #>
            <div class="elementor-control-input-wrapper elementor-control-unit-5">
                <# var multiple = ( data.multiple ) ? 'multiple' : ''; #>
                <select id="<?php echo esc_attr($control_uid); ?>" class="elementor-select2" type="select2" {{ multiple }}
                        data-setting="{{ data.name }}">
                    <# _.each( data.options, function( option_title, option_value ) {
                    var value = data.controlValue;
                    if ( typeof value == 'string' ) {
                    var selected = ( option_value === value ) ? 'selected' : '';
                    } else if ( null !== value ) {
                    var value = _.values( value );
                    var selected = ( -1 !== value.indexOf( option_value ) ) ? 'selected' : '';
                    }
                    #>
                    <option {{ selected }} value="{{ option_value }}">{{{option_title }}}</option>
                    <# } ); #>
                </select>
            </div>
        </div>
        <# if ( data.description ) { #>
        <div class="elementor-control-field-description">{{{data.description }}}</div>
        <# } #>
        <?php
    }

    /**
     * Enqueue control scripts and styles.
     *
     * Used to register and enqueue custom scripts and styles used by the control.
     * @since 5.8.0
     */
    public function enqueue() {
        wp_enqueue_script('usk-dynamic-select', BDTUSK_URL . 'includes/controls/assets/js/usk-dynamic-select.min.js', array('jquery'), BDTUSK_VER);

        wp_localize_script(
            'usk-dynamic-select',
            'usk_dynamic_select',
            [
                'nonce'    => wp_create_nonce('usk_dynamic_select'),
                'action'   => 'ultimate_store_kit_dynamic_select_input_data',
                'ajax_url' => admin_url('admin-ajax.php')
            ]
        );
    }
}

add_action('elementor/controls/register', function () {
    $controls_manager = Plugin::$instance->controls_manager;
    $controls_manager->register(new Dynamic_Select());
});

```
