209 lines
7.0 KiB
PHP
209 lines
7.0 KiB
PHP
<?php
|
|
/**
|
|
* Customizer Control: oceanwp-dimensions.
|
|
*
|
|
* @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_Dimensions_Control extends WP_Customize_Control {
|
|
|
|
/**
|
|
* The control type.
|
|
*
|
|
* @access public
|
|
* @var string
|
|
*/
|
|
public $type = 'oceanwp-dimensions';
|
|
|
|
/**
|
|
* Enqueue control related scripts/styles.
|
|
*
|
|
* @access public
|
|
*/
|
|
public function enqueue() {
|
|
wp_enqueue_script( 'oceanwp-dimensions', OCEANWP_INC_DIR_URI . 'customizer/assets/min/js/dimensions.min.js', array( 'jquery', 'customize-base' ), false, true );
|
|
wp_localize_script( 'oceanwp-dimensions', 'oceanwpL10n', $this->l10n() );
|
|
wp_enqueue_style( 'oceanwp-dimensions', OCEANWP_INC_DIR_URI . 'customizer/assets/min/css/dimensions.min.css', null );
|
|
}
|
|
|
|
/**
|
|
* Renders the control wrapper and calls $this->render_content() for the internals.
|
|
*
|
|
* @see WP_Customize_Control::render()
|
|
*/
|
|
protected function render() {
|
|
$id = 'customize-control-' . str_replace( array( '[', ']' ), array( '-', '' ), $this->id );
|
|
$class = 'customize-control has-switchers customize-control-' . $this->type;
|
|
|
|
?><li id="<?php echo esc_attr( $id ); ?>" class="<?php echo esc_attr( $class ); ?>">
|
|
<?php $this->render_content(); ?>
|
|
</li><?php
|
|
}
|
|
|
|
/**
|
|
* Refresh the parameters passed to the JavaScript via JSON.
|
|
*
|
|
* @see WP_Customize_Control::to_json()
|
|
*/
|
|
public function to_json() {
|
|
parent::to_json();
|
|
|
|
$this->json['id'] = $this->id;
|
|
$this->json['l10n'] = $this->l10n();
|
|
$this->json['title'] = esc_html__( 'Link values together', 'oceanwp' );
|
|
|
|
$this->json['inputAttrs'] = '';
|
|
foreach ( $this->input_attrs as $attr => $value ) {
|
|
$this->json['inputAttrs'] .= $attr . '="' . esc_attr( $value ) . '" ';
|
|
}
|
|
|
|
$this->json['desktop'] = array();
|
|
$this->json['tablet'] = array();
|
|
$this->json['mobile'] = array();
|
|
|
|
foreach ( $this->settings as $setting_key => $setting ) {
|
|
|
|
list( $_key ) = explode( '_', $setting_key );
|
|
|
|
$this->json[ $_key ][ $setting_key ] = array(
|
|
'id' => $setting->id,
|
|
'link' => $this->get_link( $setting_key ),
|
|
'value' => $this->value( $setting_key ),
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* 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">
|
|
<span>{{{ data.label }}}</span>
|
|
|
|
<ul class="responsive-switchers">
|
|
<li class="desktop">
|
|
<button type="button" class="preview-desktop active" data-device="desktop">
|
|
<i class="dashicons dashicons-desktop"></i>
|
|
</button>
|
|
</li>
|
|
<li class="tablet">
|
|
<button type="button" class="preview-tablet" data-device="tablet">
|
|
<i class="dashicons dashicons-tablet"></i>
|
|
</button>
|
|
</li>
|
|
<li class="mobile">
|
|
<button type="button" class="preview-mobile" data-device="mobile">
|
|
<i class="dashicons dashicons-smartphone"></i>
|
|
</button>
|
|
</li>
|
|
</ul>
|
|
|
|
</span>
|
|
<# } #>
|
|
|
|
<# if ( data.description ) { #>
|
|
<span class="description customize-control-description">{{{ data.description }}}</span>
|
|
<# } #>
|
|
|
|
<ul class="desktop control-wrap active">
|
|
<# _.each( data.desktop, function( args, key ) { #>
|
|
<li class="dimension-wrap {{ key }}">
|
|
<input {{{ data.inputAttrs }}} type="number" class="dimension-{{ key }}" {{{ args.link }}} value="{{{ args.value }}}" />
|
|
<span class="dimension-label">{{ data.l10n[ key ] }}</span>
|
|
</li>
|
|
<# } ); #>
|
|
|
|
<li class="dimension-wrap">
|
|
<div class="link-dimensions">
|
|
<span class="dashicons dashicons-admin-links oceanwp-linked" data-element="{{ data.id }}" title="{{ data.title }}"></span>
|
|
<span class="dashicons dashicons-editor-unlink oceanwp-unlinked" data-element="{{ data.id }}" title="{{ data.title }}"></span>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
|
|
<ul class="tablet control-wrap">
|
|
<# _.each( data.tablet, function( args, key ) { #>
|
|
<li class="dimension-wrap {{ key }}">
|
|
<input {{{ data.inputAttrs }}} type="number" class="dimension-{{ key }}" {{{ args.link }}} value="{{{ args.value }}}" />
|
|
<span class="dimension-label">{{ data.l10n[ key ] }}</span>
|
|
</li>
|
|
<# } ); #>
|
|
|
|
<li class="dimension-wrap">
|
|
<div class="link-dimensions">
|
|
<span class="dashicons dashicons-admin-links oceanwp-linked" data-element="{{ data.id }}_tablet" title="{{ data.title }}"></span>
|
|
<span class="dashicons dashicons-editor-unlink oceanwp-unlinked" data-element="{{ data.id }}_tablet" title="{{ data.title }}"></span>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
|
|
<ul class="mobile control-wrap">
|
|
<# _.each( data.mobile, function( args, key ) { #>
|
|
<li class="dimension-wrap {{ key }}">
|
|
<input {{{ data.inputAttrs }}} type="number" class="dimension-{{ key }}" {{{ args.link }}} value="{{{ args.value }}}" />
|
|
<span class="dimension-label">{{ data.l10n[ key ] }}</span>
|
|
</li>
|
|
<# } ); #>
|
|
|
|
<li class="dimension-wrap">
|
|
<div class="link-dimensions">
|
|
<span class="dashicons dashicons-admin-links oceanwp-linked" data-element="{{ data.id }}_mobile" title="{{ data.title }}"></span>
|
|
<span class="dashicons dashicons-editor-unlink oceanwp-unlinked" data-element="{{ data.id }}_mobile" title="{{ data.title }}"></span>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
|
|
<?php
|
|
}
|
|
|
|
/**
|
|
* Returns an array of translation strings.
|
|
*
|
|
* @access protected
|
|
* @param string|false $id The string-ID.
|
|
* @return string
|
|
*/
|
|
protected function l10n( $id = false ) {
|
|
$translation_strings = array(
|
|
'desktop_top' => esc_attr__( 'Top', 'oceanwp' ),
|
|
'desktop_right' => esc_attr__( 'Right', 'oceanwp' ),
|
|
'desktop_bottom' => esc_attr__( 'Bottom', 'oceanwp' ),
|
|
'desktop_left' => esc_attr__( 'Left', 'oceanwp' ),
|
|
'tablet_top' => esc_attr__( 'Top', 'oceanwp' ),
|
|
'tablet_right' => esc_attr__( 'Right', 'oceanwp' ),
|
|
'tablet_bottom' => esc_attr__( 'Bottom', 'oceanwp' ),
|
|
'tablet_left' => esc_attr__( 'Left', 'oceanwp' ),
|
|
'mobile_top' => esc_attr__( 'Top', 'oceanwp' ),
|
|
'mobile_right' => esc_attr__( 'Right', 'oceanwp' ),
|
|
'mobile_bottom' => esc_attr__( 'Bottom', 'oceanwp' ),
|
|
'mobile_left' => esc_attr__( 'Left', 'oceanwp' ),
|
|
);
|
|
if ( false === $id ) {
|
|
return $translation_strings;
|
|
}
|
|
return $translation_strings[ $id ];
|
|
}
|
|
}
|