文件操作 - dynamic-select.php
返回文件管理
返回主菜单
删除本文件
文件: /root/Desktop/OLD/bdthemes-element-pack-lite/includes/controls/select-input/dynamic-select.php
编辑文件内容
<?php namespace ElementPack\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 = 'ep-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 $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 $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( 'ep-dynamic-select', BDTEP_URL . 'includes/controls/assets/js/ep-dynamic-select.min.js', array( 'jquery' ), BDTEP_VER ); wp_localize_script( 'ep-dynamic-select', 'ep_dynamic_select', [ 'nonce' => wp_create_nonce( 'ep_dynamic_select' ), 'action' => 'elementpack_dynamic_select_input_data', 'ajax_url' => admin_url( 'admin-ajax.php' ) ] ); } } add_action('elementor/controls/controls_registered', function () { $controls_manager = Plugin::$instance->controls_manager; $controls_manager->register_control(Dynamic_Select::TYPE, new Dynamic_Select()); });
修改文件时间
将文件时间修改为当前时间的前一年
删除文件