first commit

This commit is contained in:
DESKTOP-GBA0BK8\Admin
2023-04-08 12:19:53 -04:00
commit 7c8c8b1c76
4586 changed files with 2050693 additions and 0 deletions
@@ -0,0 +1,5 @@
.customize-control-oceanwp-buttonset .buttonset { display: inline-block; border: 1px solid #ccc; }
.customize-control-oceanwp-buttonset .buttonset .switch-label { float: left; background-color: #f5f5f5; color: #555; border-right: 1px solid rgba(0, 0, 0, 0.2); padding: 12px 18px; margin: 0; font-size: 12px; font-weight: 600; line-height: 1; letter-spacing: 1px; text-transform: uppercase;}
.customize-control-oceanwp-buttonset .buttonset .switch-label:last-child { border-right: none; }
.customize-control-oceanwp-buttonset .buttonset .switch-input { display: none; }
.customize-control-oceanwp-buttonset .buttonset .switch-input:checked + .switch-label { background-color: #3498DB; color: #fff; }
@@ -0,0 +1,15 @@
wp.customize.controlConstructor['oceanwp-buttonset'] = wp.customize.Control.extend({
ready: function() {
'use strict';
var control = this;
// Change the value
this.container.on( 'click', 'input', function() {
control.setting.set( jQuery( this ).val() );
});
}
});
@@ -0,0 +1,94 @@
<?php
/**
* Customizer Control: oceanwp-buttonset.
*
* @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;
}
/**
* Buttonset control
*/
class OceanWP_Customizer_Buttonset_Control extends WP_Customize_Control {
/**
* The control type.
*
* @access public
* @var string
*/
public $type = 'oceanwp-buttonset';
/**
* Enqueue control related scripts/styles.
*
* @access public
*/
public function enqueue() {
wp_enqueue_script( 'oceanwp-buttonset', OCEANWP_INC_DIR_URI . 'customizer/assets/min/js/buttonset.min.js', array( 'jquery', 'customize-base' ), false, true );
wp_enqueue_style( 'oceanwp-buttonset', OCEANWP_INC_DIR_URI . 'customizer/assets/min/css/buttonset.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'] = $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.label ) { #>
<span class="customize-control-title">{{{ data.label }}}</span>
<# } #>
<# if ( data.description ) { #>
<span class="description customize-control-description">{{{ data.description }}}</span>
<# } #>
<div id="input_{{ data.id }}" class="buttonset">
<# for ( key in data.choices ) { #>
<input {{{ data.inputAttrs }}} class="switch-input" type="radio" value="{{ key }}" name="_customize-radio-{{{ data.id }}}" id="{{ data.id }}{{ key }}" {{{ data.link }}}<# if ( key === data.value ) { #> checked="checked" <# } #>>
<label class="switch-label switch-label-<# if ( key === data.value ) { #>on <# } else { #>off<# } #>" for="{{ data.id }}{{ key }}">
{{ data.choices[ key ] }}
</label>
</input>
<# } #>
</div>
<?php
}
}