Server IP : 192.64.112.168 / Your IP : 3.142.42.247 Web Server : Apache System : Linux nc-ph-2300-85.bluforrest.com 4.18.0-513.9.1.el8_9.x86_64 #1 SMP Sat Dec 2 05:23:44 EST 2023 x86_64 User : expressoneac ( 1128) PHP Version : 8.0.30 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/expressoneac/www/wp-content/themes/woodmart/inc/modules/header-builder/elements/ |
Upload File : |
<?php if ( ! defined( 'WOODMART_THEME_DIR' ) ) { exit( 'No direct script access allowed' );} /** * ------------------------------------------------------------------------------------------------ * Logo image with uploader * ------------------------------------------------------------------------------------------------ */ if ( ! class_exists( 'WOODMART_HB_Logo' ) ) { class WOODMART_HB_Logo extends WOODMART_HB_Element { public function __construct() { parent::__construct(); $this->template_name = 'logo'; } public function map() { $this->args = array( 'type' => 'logo', 'title' => esc_html__( 'Logo', 'woodmart' ), 'icon' => 'xts-i-logo', 'text' => wp_kses( __( 'Website\'s logo', 'woodmart' ), 'default' ), 'editable' => true, 'container' => false, 'edit_on_create' => true, 'drag_target_for' => array(), 'drag_source' => 'content_element', 'removable' => true, 'addable' => true, 'params' => array( 'image' => array( 'id' => 'image', 'title' => esc_html__( 'Logo image', 'woodmart' ), 'type' => 'image', 'tab' => esc_html__( 'General', 'woodmart' ), 'value' => '', 'description' => '', ), 'width' => array( 'id' => 'width', 'title' => esc_html__( 'Logo width', 'woodmart' ), 'type' => 'slider', 'tab' => esc_html__( 'General', 'woodmart' ), 'from' => 0, 'to' => 500, 'value' => 150, 'units' => 'px', 'description' => esc_html__( 'Determine the logo image width in pixels. If the overall image aspect ratio is larger than the header row height, further logo width increase will be ignored.', 'woodmart' ), ), 'sticky_notice' => array( 'id' => 'sticky_notice', 'description' => esc_html__( 'Optional. You do not have to upload your logo if it is the same as on a regular header. Use this option only if the logo for the sticky header is different or has a different size.', 'woodmart' ), 'type' => 'notice', 'style' => 'info', 'tab' => esc_html__( 'Sticky header', 'woodmart' ), 'value' => '', ), 'sticky_image' => array( 'id' => 'sticky_image', 'title' => esc_html__( 'Logo image for sticky header', 'woodmart' ), 'hint' => '<video src="' . WOODMART_TOOLTIP_URL . 'hb-logo-image-for-sticky-header.mp4" autoplay loop muted></video>', 'type' => 'image', 'tab' => esc_html__( 'Sticky header', 'woodmart' ), 'value' => '', 'description' => esc_html__( 'Leave empty to use same logo as on the regular header.', 'woodmart' ), ), 'sticky_width' => array( 'id' => 'sticky_width', 'title' => esc_html__( 'Sticky header logo width', 'woodmart' ), 'type' => 'slider', 'tab' => esc_html__( 'Sticky header', 'woodmart' ), 'from' => 0, 'to' => 500, 'value' => 150, 'units' => 'px', 'description' => esc_html__( 'Determine the logo on the sticky header image width in pixels.', 'woodmart' ), ), 'width_height' => array( 'id' => 'width_height', 'title' => esc_html__( 'Add width and height attributes', 'woodmart' ), 'type' => 'switcher', 'tab' => esc_html__( 'General', 'woodmart' ), 'description' => esc_html__( 'Explicit width and height attributes are recommended to improve page load speed.', 'woodmart' ), 'value' => false, ), ), ); } } }