PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
| Dir : /home/oligap/www/wp-content/themes/woodmart/inc/modules/header-builder/elements/ |
| Server: Linux cloud.virginhosting.lk 4.18.0-477.27.2.lve.el8.x86_64 #1 SMP Wed Oct 11 12:32:56 UTC 2023 x86_64 IP: 128.140.68.198 |
| Dir : /home/oligap/www/wp-content/themes/woodmart/inc/modules/header-builder/elements/Logo.php |
<?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' => WOODMART_ASSETS_IMAGES . '/header-builder/icons/hb-ico-logo.svg',
'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' => 10,
'to' => 500,
'value' => 150,
'units' => 'px',
'description' => esc_html__( 'Determine the logo image width in pixels.', 'woodmart' ),
),
'sticky_notice' => array(
'id' => 'sticky_notice',
'title' => esc_html__( 'Notice', 'woodmart' ),
'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',
'tab' => esc_html__( 'Sticky header', 'woodmart' ),
'value' => '',
),
'sticky_image' => array(
'id' => 'sticky_image',
'title' => esc_html__( 'Logo image for sticky header', 'woodmart' ),
'type' => 'image',
'tab' => esc_html__( 'Sticky header', 'woodmart' ),
'value' => '',
'description' => '',
),
'sticky_width' => array(
'id' => 'sticky_width',
'title' => esc_html__( 'Sticky header logo width', 'woodmart' ),
'type' => 'slider',
'tab' => esc_html__( 'Sticky header', 'woodmart' ),
'from' => 10,
'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' ),
'value' => false,
),
),
);
}
}
}