File manager - Edit - /home/theblueo/tv/wp-content/themes/astra/inc/customizer/custom-controls/background/class-astra-control-background.php
Back
<?php /** * Customizer Control: background. * * Creates a jQuery background control. * * @package Astra * @author Astra * @copyright Copyright (c) 2020, Astra * @link https://wpastra.com/ * @since 1.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Field overrides. */ if ( ! class_exists( 'Astra_Control_Background' ) && class_exists( 'WP_Customize_Control' ) ) : /** * Background Control */ class Astra_Control_Background extends WP_Customize_Control { /** * The control type. * * @access public * @var string */ public $type = 'ast-background'; /** * Refresh the parameters passed to the JavaScript via JSON. * * @see WP_Customize_Control::to_json() */ public function to_json() { parent::to_json(); $this->json['default'] = $this->setting->default; if ( isset( $this->default ) ) { $this->json['default'] = $this->default; } $this->json['value'] = $this->value(); $this->json['link'] = $this->get_link(); $this->json['id'] = $this->id; $this->json['label'] = esc_html( $this->label ); $this->json['inputAttrs'] = ''; foreach ( $this->input_attrs as $attr => $value ) { $this->json['inputAttrs'] .= $attr . '="' . esc_attr( $value ) . '" '; } } /** * Enqueue control related scripts/styles. * * @access public */ public function enqueue() { $js_uri = ASTRA_THEME_URI . 'inc/customizer/custom-controls/background/'; wp_enqueue_script( 'astra-background', $js_uri . 'background.js', array(), ASTRA_THEME_VERSION, true ); wp_localize_script( 'astra-background', 'astraCustomizerControlBackground', array( 'placeholder' => __( 'No file selected', 'astra' ), 'lessSettings' => __( 'Less Settings', 'astra' ), 'moreSettings' => __( 'More Settings', 'astra' ), ) ); } /** * 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 || data.description ) { #> <label> <# if ( data.label ) { #> <span class="customize-control-title">{{{ data.label }}}</span> <# } #> <# if ( data.description ) { #> <span class="description customize-control-description">{{{ data.description }}}</span> <# } #> </label> <# } #> <div class="background-wrapper"> <!-- background-color --> <div class="background-color"> <span class="customize-control-title" ><?php esc_attr_e( 'Background Color', 'astra' ); ?></span> <input data-name="{{ data.name }}" type="text" data-default-color="{{ data.default['background-color'] }}" data-alpha="true" value="{{ data.value['background-color'] }}" class="ast-color-control"/> </div> <!-- background-image --> <div class="background-image"> <span class="customize-control-title" ><?php esc_attr_e( 'Background Image', 'astra' ); ?></span> <div class="attachment-media-view background-image-upload"> <# if ( data.value['background-image'] ) { #> <div class="thumbnail thumbnail-image"><img src="{{ data.value['background-image'] }}" alt="" /></div> <# } else { #> <div class="placeholder"><?php esc_attr_e( 'No Image Selected', 'astra' ); ?></div> <# } #> <div class="actions"> <button data-name="{{ data.name }}" class="button background-image-upload-remove-button<# if ( ! data.value['background-image'] ) { #> hidden <# } #>"><?php esc_attr_e( 'Remove', 'astra' ); ?></button> <button data-name="{{ data.name }}" type="button" class="button background-image-upload-button"><?php esc_attr_e( 'Select Image', 'astra' ); ?></button> <a href="#" class="more-settings" data-direction="down"><span class="message"><?php esc_html_e( 'More Settings', 'astra' ); ?></span> <span class="icon">↓</span></a> </div> </div> </div> <!-- background-repeat --> <div class="background-repeat"> <select data-name="{{ data.name }}" {{{ data.inputAttrs }}}> <option value="no-repeat"<# if ( 'no-repeat' === data.value['background-repeat'] ) { #> selected <# } #>><?php esc_attr_e( 'No Repeat', 'astra' ); ?></option> <option value="repeat"<# if ( 'repeat' === data.value['background-repeat'] ) { #> selected <# } #>><?php esc_attr_e( 'Repeat All', 'astra' ); ?></option> <option value="repeat-x"<# if ( 'repeat-x' === data.value['background-repeat'] ) { #> selected <# } #>><?php esc_attr_e( 'Repeat Horizontally', 'astra' ); ?></option> <option value="repeat-y"<# if ( 'repeat-y' === data.value['background-repeat'] ) { #> selected <# } #>><?php esc_attr_e( 'Repeat Vertically', 'astra' ); ?></option> </select> </div> <!-- background-position --> <div class="background-position"> <select data-name="{{ data.name }}" {{{ data.inputAttrs }}}> <option value="left top"<# if ( 'left top' === data.value['background-position'] ) { #> selected <# } #>><?php esc_attr_e( 'Left Top', 'astra' ); ?></option> <option value="left center"<# if ( 'left center' === data.value['background-position'] ) { #> selected <# } #>><?php esc_attr_e( 'Left Center', 'astra' ); ?></option> <option value="left bottom"<# if ( 'left bottom' === data.value['background-position'] ) { #> selected <# } #>><?php esc_attr_e( 'Left Bottom', 'astra' ); ?></option> <option value="right top"<# if ( 'right top' === data.value['background-position'] ) { #> selected <# } #>><?php esc_attr_e( 'Right Top', 'astra' ); ?></option> <option value="right center"<# if ( 'right center' === data.value['background-position'] ) { #> selected <# } #>><?php esc_attr_e( 'Right Center', 'astra' ); ?></option> <option value="right bottom"<# if ( 'right bottom' === data.value['background-position'] ) { #> selected <# } #>><?php esc_attr_e( 'Right Bottom', 'astra' ); ?></option> <option value="center top"<# if ( 'center top' === data.value['background-position'] ) { #> selected <# } #>><?php esc_attr_e( 'Center Top', 'astra' ); ?></option> <option value="center center"<# if ( 'center center' === data.value['background-position'] ) { #> selected <# } #>><?php esc_attr_e( 'Center Center', 'astra' ); ?></option> <option value="center bottom"<# if ( 'center bottom' === data.value['background-position'] ) { #> selected <# } #>><?php esc_attr_e( 'Center Bottom', 'astra' ); ?></option> </select> </div> <!-- background-size --> <div class="background-size"> <h4><?php esc_attr_e( 'Background Size', 'astra' ); ?></h4> <div class="buttonset"> <input data-name="{{ data.name }}" {{{ data.inputAttrs }}} class="switch-input screen-reader-text" type="radio" value="cover" name="_customize-bg-{{{ data.id }}}-size" id="{{ data.id }}{{ data.name }}-cover" <# if ( 'cover' === data.value['background-size'] ) { #> checked="checked" <# } #>> <label class="switch-label switch-label-<# if ( 'cover' === data.value['background-size'] ) { #>on <# } else { #>off<# } #>" for="{{ data.id }}{{ data.name }}-cover"><?php esc_attr_e( 'Cover', 'astra' ); ?></label> </input> <input data-name="{{ data.name }}" {{{ data.inputAttrs }}} class="switch-input screen-reader-text" type="radio" value="contain" name="_customize-bg-{{{ data.id }}}-size" id="{{ data.id }}{{ data.name }}-contain" <# if ( 'contain' === data.value['background-size'] ) { #> checked="checked" <# } #>> <label class="switch-label switch-label-<# if ( 'contain' === data.value['background-size'] ) { #>on <# } else { #>off<# } #>" for="{{ data.id }}{{ data.name }}-contain"><?php esc_attr_e( 'Contain', 'astra' ); ?></label> </input> <input data-name="{{ data.name }}" {{{ data.inputAttrs }}} class="switch-input screen-reader-text" type="radio" value="auto" name="_customize-bg-{{{ data.id }}}-size" id="{{ data.id }}{{ data.name }}-auto" <# if ( 'auto' === data.value['background-size'] ) { #> checked="checked" <# } #>> <label class="switch-label switch-label-<# if ( 'auto' === data.value['background-size'] ) { #>on <# } else { #>off<# } #>" for="{{ data.id }}{{ data.name }}-auto"><?php esc_attr_e( 'Auto', 'astra' ); ?></label> </input> </div> </div> <!-- background-attachment --> <div class="background-attachment"> <h4><?php esc_attr_e( 'Background Attachment', 'astra' ); ?></h4> <div class="buttonset"> <input {{{ data.inputAttrs }}} data-name="{{ data.name }}" class="switch-input screen-reader-text" type="radio" value="inherit" name="_customize-bg-{{ data.id }}}-attachment" id="{{ data.id }}{{ data.name }}-inherit" <# if ( 'inherit' === data.value['background-attachment'] ) { #> checked="checked" <# } #>> <label class="switch-label switch-label-<# if ( 'inherit' === data.value['background-attachment'] ) { #>on <# } else { #>off<# } #>" for="{{ data.id }}{{ data.name }}-inherit"><?php esc_attr_e( 'Inherit', 'astra' ); ?></label> </input> <input {{{ data.inputAttrs }}} data-name="{{ data.name }}" class="switch-input screen-reader-text" type="radio" value="scroll" name="_customize-bg-{{{ data.id }}}-attachment" id="{{ data.id }}{{ data.name }}-scroll" <# if ( 'scroll' === data.value['background-attachment'] ) { #> checked="checked" <# } #>> <label class="switch-label switch-label-<# if ( 'scroll' === data.value['background-attachment'] ) { #>on <# } else { #>off<# } #>" for="{{ data.id }}{{ data.name }}-scroll"><?php esc_attr_e( 'Scroll', 'astra' ); ?></label> </input> <input {{{ data.inputAttrs }}} data-name="{{ data.name }}" class="switch-input screen-reader-text" type="radio" value="fixed" name="_customize-bg-{{{ data.id }}}-attachment" id="{{ data.id }}{{ data.name }}-fixed" <# if ( 'fixed' === data.value['background-attachment'] ) { #> checked="checked" <# } #>> <label class="switch-label switch-label-<# if ( 'fixed' === data.value['background-attachment'] ) { #>on <# } else { #>off<# } #>" for="{{ data.id }}{{ data.name }}-fixed"><?php esc_attr_e( 'Fixed', 'astra' ); ?></label> </input> </div> </div> <input class="background-hidden-value" value="{{ JSON.stringify( data.value ) }}" data-name="{{data.name}}" type="hidden" {{{ data.link }}}> <?php } /** * Render the control's content. * * @see WP_Customize_Control::render_content() */ protected function render_content() {} } endif;
| ver. 1.4 |
Github
|
.
| PHP 7.0.33 | Generation time: 0 |
proxy
|
phpinfo
|
Settings