first commit
This commit is contained in:
+100
@@ -0,0 +1,100 @@
|
||||
<?php
|
||||
/**
|
||||
* Customizer Control: oceanwp-multiple-select.
|
||||
*
|
||||
* @package OceanWP WordPress theme
|
||||
* @subpackage Controls
|
||||
* @see https://github.com/aristath/kirki
|
||||
* @license http://opensource.org/licenses/https://opensource.org/licenses/MIT
|
||||
* @since 1.0
|
||||
*/
|
||||
|
||||
// Exit if accessed directly.
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Multi select control
|
||||
*/
|
||||
class OceanWP_Customize_Multiple_Select_Control extends WP_Customize_Control {
|
||||
|
||||
/**
|
||||
* The control type.
|
||||
*
|
||||
* @access public
|
||||
* @var string
|
||||
*/
|
||||
public $type = 'oceanwp-multiple-select';
|
||||
|
||||
/**
|
||||
* Enqueue control related scripts/styles.
|
||||
*
|
||||
* @access public
|
||||
*/
|
||||
public function enqueue() {
|
||||
wp_enqueue_script( 'select2', OCEANWP_INC_DIR_URI . 'customizer/controls/select2.min.js', array( 'jquery' ), false, true );
|
||||
wp_enqueue_style( 'select2', OCEANWP_INC_DIR_URI . 'customizer/controls/select2.min.css', null );
|
||||
wp_enqueue_script( 'oceanwp-multiple-select', OCEANWP_INC_DIR_URI . 'customizer/assets/min/js/multiple-select.min.js', array( 'jquery', 'customize-base', 'select2' ), false, true );
|
||||
wp_enqueue_style( 'oceanwp-multiple-select', OCEANWP_INC_DIR_URI . 'customizer/assets/min/css/multiple-select.min.css', null );
|
||||
}
|
||||
|
||||
/**
|
||||
* Refresh the parameters passed to the JavaScript via JSON.
|
||||
*
|
||||
* @see WP_Customize_Control::to_json()
|
||||
*/
|
||||
public function to_json() {
|
||||
parent::to_json();
|
||||
|
||||
if ( isset( $this->default ) ) {
|
||||
$this->json['default'] = $this->default;
|
||||
} else {
|
||||
$this->json['default'] = $this->setting->default;
|
||||
}
|
||||
$this->json['value'] = (array) $this->value();
|
||||
$this->json['choices'] = $this->choices;
|
||||
$this->json['link'] = $this->get_link();
|
||||
$this->json['id'] = $this->id;
|
||||
|
||||
$this->json['inputAttrs'] = '';
|
||||
foreach ( $this->input_attrs as $attr => $value ) {
|
||||
$this->json['inputAttrs'] .= $attr . '="' . esc_attr( $value ) . '" ';
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* An Underscore (JS) template for this control's content (but not its container).
|
||||
*
|
||||
* Class variables for this control class are available in the `data` JS object;
|
||||
* export custom variables by overriding {@see WP_Customize_Control::to_json()}.
|
||||
*
|
||||
* @see WP_Customize_Control::print_template()
|
||||
*
|
||||
* @access protected
|
||||
*/
|
||||
protected function content_template() {
|
||||
?>
|
||||
<# if ( ! data.choices ) { return; } #>
|
||||
|
||||
<# if ( data.label ) { #>
|
||||
<span class="customize-control-title">{{ data.label }}</span>
|
||||
<# } #>
|
||||
|
||||
<# if ( data.description ) { #>
|
||||
<span class="description customize-control-description">{{{ data.description }}}</span>
|
||||
<# } #>
|
||||
|
||||
<select {{{ data.inputAttrs }}} multiple="multiple" {{{ data.link }}}>
|
||||
|
||||
<# _.each( data.choices, function( label, choice ) { #>
|
||||
|
||||
<option value="{{ choice }}" <# if ( -1 !== data.value.indexOf( choice ) ) { #> selected="selected" <# } #>>{{ label }}</option>
|
||||
|
||||
<# } ) #>
|
||||
|
||||
</select>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
.customize-control-oceanwp-multiple-select .select2-container--default .select2-selection--multiple { border: 1px solid rgba(0,0,0,.05); padding: 1px 0 0; border-radius: 0; line-height: 1; }
|
||||
.customize-control-oceanwp-multiple-select .select2-container--default.select2-container--focus .select2-selection--multiple { border-color: rgba(0,0,0,0.08); }
|
||||
.customize-control-oceanwp-multiple-select .select2-container--default .select2-selection--multiple .select2-selection__rendered { padding: 0; }
|
||||
.customize-control-oceanwp-multiple-select .select2-container--default .select2-selection--multiple .select2-selection__choice { background-color: #f1f1f1; color: #666; border: rgba(0,0,0,0.06); line-height: 1.5; padding: 0 6px; border-radius: 0; margin: 7px 0 0 6px; }
|
||||
.customize-control-oceanwp-multiple-select .select2-container--default .select2-selection--multiple .select2-search { line-height: 1.5; margin: 0 0 0 6px; }
|
||||
.customize-control-oceanwp-multiple-select .select2-container--default .select2-search--inline .select2-search__field { margin: 0; }
|
||||
|
||||
/* RTL */
|
||||
body.rtl .customize-control-oceanwp-multiple-select .select2-container--default .select2-selection--multiple .select2-selection__choice { margin: 5px 6px 0 0; }
|
||||
body.rtl .customize-control-oceanwp-multiple-select .select2-container--default .select2-selection--multiple .select2-search { margin: 0 6px 0 0; }
|
||||
@@ -0,0 +1,29 @@
|
||||
wp.customize.controlConstructor['oceanwp-multiple-select'] = wp.customize.Control.extend({
|
||||
|
||||
// When we're finished loading continue processing.
|
||||
ready: function() {
|
||||
|
||||
'use strict';
|
||||
|
||||
var control = this,
|
||||
element = this.container.find( 'select' ),
|
||||
selectValue,
|
||||
select2Options = {
|
||||
escapeMarkup: function( markup ) {
|
||||
return markup;
|
||||
}
|
||||
};
|
||||
|
||||
jQuery( element ).select2( select2Options ).on( 'change', function() {
|
||||
selectValue = jQuery( this ).val();
|
||||
control.setting.set( selectValue );
|
||||
if ( null === selectValue ) {
|
||||
control.setting.set( '' );
|
||||
} else {
|
||||
control.setting.set( selectValue );
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user