Server IP : 104.21.93.192 / Your IP : 216.73.216.73 Web Server : LiteSpeed System : Linux premium900.web-hosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : redwjova ( 1790) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/redwjova/fyntric.com/wp-content/themes/smart-mag/inc/core/customizer/controls/ |
Upload File : |
<?php /** * Dimensions control for things like spacing - margins, paddings etc. * * Note: Implementation of single device is incomplete as array values cannot be linked by JS. */ class Bunyad_Customizer_Controls_Dimensions extends Bunyad_Customizer_Controls_Base { /** * @var boolean Type of control. */ public $type = 'bunyad-dimensions'; public $fields; /** * @inheritDoc */ public function to_json() { parent::to_json(); if (empty($this->fields)) { $this->fields = ['top', 'right', 'bottom', 'left']; } $this->json['inputFields'] = $this->fields; $this->json['linked'] = false; } /** * @inheritDoc */ public function content_template() { ?> <?php $this->template_before(); ?> <?php $this->template_heading(); ?> <div class="customize-control-content"> <?php $this->template_devices(); ?> </div> <?php $this->template_after(); ?> <?php } /** * @inheritDoc */ public function template_devices_multi($single = false) { ?> <# var theValue = Object.assign( {top: '', right: '', bottom: '', left: '', unit: 'px'}, Object(<?php echo (string) ($single ? 'data.value' : 'data.value[ device ]'); ?>) ); var inputAttrs = ''; var czKey = (typeof device !== 'undefined') ? device : 'default'; #> <div class="bunyad-cz-dimensions"> <div class="bunyad-cz-dimensions-inputs"> <# if (data.inputFields.indexOf('top') !== -1) { #> <label> <input type="number" value="{{ theValue['top'] }}" {{{ inputAttrs }}} data-bunyad-cz-key="{{ czKey }}" data-bunyad-cz-subkey="top" /> <?php echo esc_html('Top', 'bunyad-admin'); ?> </label> <# } #> <# if (data.inputFields.indexOf('right') !== -1) { #> <label> <input type="number" value="{{ theValue['right'] }}" {{{ inputAttrs }}} data-bunyad-cz-key="{{ czKey }}" data-bunyad-cz-subkey="right" /> <?php echo esc_html('Right', 'bunyad-admin'); ?> </label> <# } #> <# if (data.inputFields.indexOf('bottom') !== -1) { #> <label> <input type="number" value="{{ theValue['bottom'] }}" {{{ inputAttrs }}} data-bunyad-cz-key="{{ czKey }}" data-bunyad-cz-subkey="bottom" /> <?php echo esc_html('Bottom', 'bunyad-admin'); ?> </label> <# } #> <# if (data.inputFields.indexOf('left') !== -1) { #> <label> <input type="number" value="{{ theValue['left'] }}" {{{ inputAttrs }}} data-bunyad-cz-key="{{ czKey }}" data-bunyad-cz-subkey="left" /> <?php echo esc_html('Left', 'bunyad-admin'); ?> </label> <# } #> <button class="bunyad-cz-dimensions-linked" title="<?php echo esc_attr('Link Values', 'bunyad-admin'); ?>"> <i class="icon active-icon dashicons dashicons-admin-links"></i> <i class="icon dashicons dashicons-editor-unlink"></i> </button> <span class="bunyad-cz-dimensions-unit"> <input type="text" value="{{ theValue['unit'] }}" data-bunyad-cz-key="{{ czKey }}" data-bunyad-cz-subkey="unit" /> </span> </div> </div> <?php } /** * @inheritDoc */ public function template_devices_single() { $this->template_devices_multi(true); } }