| Server IP : 38.190.208.107 / Your IP : 216.73.217.21 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : root ( 0) PHP Version : 8.2.28 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/wp.5/wp-content/themes/woodmart/inc/integrations/visual-composer/maps/ |
Upload File : |
<?php
/**
* Breadcrumbs element map.
*
* @package woodmart
*/
if ( ! defined( 'WOODMART_THEME_DIR' ) ) {
exit( 'No direct script access allowed' );
}
if ( ! function_exists( 'woodmart_get_vc_map_breadcrumbs' ) ) {
/**
* Get breadcrumbs element map.
*
* @return array
*/
function woodmart_get_vc_map_breadcrumbs() {
return array(
'name' => esc_html__( 'Breadcrumbs', 'woodmart' ),
'base' => 'woodmart_el_breadcrumbs',
'category' => woodmart_get_tab_title_category_for_wpb( esc_html__( 'Site', 'woodmart' ) ),
'description' => esc_html__( 'Current page breadcrumbs', 'woodmart' ),
'icon' => WOODMART_ASSETS . '/images/vc-icon/breadcrumbs.svg',
'params' => woodmart_get_breadcrumbs_params(),
);
}
}
if ( ! function_exists( 'woodmart_get_breadcrumbs_params' ) ) {
/**
* Get breadcrumbs params.
*
* @return array
*/
function woodmart_get_breadcrumbs_params() {
$typography = woodmart_get_typography_map(
array(
'key' => 'typography',
'selector' => '{{WRAPPER}} :is(.wd-breadcrumbs,.yoast-breadcrumb,.rank-math-breadcrumb,.aioseo-breadcrumbs,.breadcrumb)',
'group' => esc_html__( 'Style', 'woodmart' ),
)
);
return array(
array(
'group' => esc_html__( 'Style', 'woodmart' ),
'type' => 'woodmart_css_id',
'param_name' => 'woodmart_css_id',
),
array(
'heading' => esc_html__( 'Alignment', 'woodmart' ),
'group' => esc_html__( 'Style', 'woodmart' ),
'type' => 'wd_select',
'param_name' => 'alignment',
'style' => 'images',
'selectors' => array(),
'devices' => array(
'desktop' => array(
'value' => 'left',
),
),
'value' => array(
esc_html__( 'Left', 'woodmart' ) => 'left',
esc_html__( 'Center', 'woodmart' ) => 'center',
esc_html__( 'Right', 'woodmart' ) => 'right',
),
'images' => array(
'left' => WOODMART_ASSETS_IMAGES . '/settings/align/left.jpg',
'center' => WOODMART_ASSETS_IMAGES . '/settings/align/center.jpg',
'right' => WOODMART_ASSETS_IMAGES . '/settings/align/right.jpg',
),
'edit_field_class' => 'vc_col-sm-6 vc_column',
),
array(
'heading' => esc_html__( 'No wrap on mobile devices', 'woodmart' ),
'group' => esc_html__( 'Style', 'woodmart' ),
'type' => 'woodmart_switch',
'param_name' => 'nowrap_md',
'true_state' => 'yes',
'false_state' => 'no',
'default' => 'no',
'edit_field_class' => 'vc_col-sm-6 vc_column',
),
$typography['font_family'],
$typography['font_size'],
$typography['font_weight'],
$typography['text_transform'],
$typography['font_style'],
$typography['line_height'],
array(
'type' => 'woodmart_empty_space',
'param_name' => 'woodmart_empty_space',
'group' => esc_html__( 'Style', 'woodmart' ),
),
array(
'heading' => esc_html__( 'Idle color', 'woodmart' ),
'group' => esc_html__( 'Style', 'woodmart' ),
'type' => 'wd_colorpicker',
'param_name' => 'text_color',
'selectors' => array(
'{{WRAPPER}} :is(.wd-breadcrumbs,.yoast-breadcrumb,.rank-math-breadcrumb,.aioseo-breadcrumbs,.breadcrumb)' => array(
'--wd-link-color: {{VALUE}};',
),
),
'edit_field_class' => 'vc_col-sm-6 vc_column',
),
array(
'heading' => esc_html__( 'Hover color', 'woodmart' ),
'group' => esc_html__( 'Style', 'woodmart' ),
'type' => 'wd_colorpicker',
'param_name' => 'text_color_hover',
'selectors' => array(
'{{WRAPPER}} :is(.wd-breadcrumbs,.yoast-breadcrumb,.rank-math-breadcrumb,.aioseo-breadcrumbs,.breadcrumb)' => array(
'--wd-link-color-hover: {{VALUE}};',
),
),
'edit_field_class' => 'vc_col-sm-6 vc_column',
),
array(
'heading' => esc_html__( 'Active color', 'woodmart' ),
'group' => esc_html__( 'Style', 'woodmart' ),
'type' => 'wd_colorpicker',
'param_name' => 'text_color_active',
'selectors' => array(
'{{WRAPPER}} :is(.wd-breadcrumbs,.yoast-breadcrumb,.rank-math-breadcrumb,.aioseo-breadcrumbs,.breadcrumb)' => array(
'--wd-bcrumb-color-active: {{VALUE}};',
),
),
'edit_field_class' => 'vc_col-sm-6 vc_column',
),
array(
'heading' => esc_html__( 'Delimiter color', 'woodmart' ),
'group' => esc_html__( 'Style', 'woodmart' ),
'type' => 'wd_colorpicker',
'param_name' => 'delimiter_color',
'selectors' => array(
'{{WRAPPER}} :is(.wd-breadcrumbs,.yoast-breadcrumb,.rank-math-breadcrumb,.aioseo-breadcrumbs,.breadcrumb)' => array(
'--wd-bcrumb-delim-color: {{VALUE}};',
),
),
'edit_field_class' => 'vc_col-sm-6 vc_column',
),
array(
'heading' => esc_html__( 'CSS box', 'woodmart' ),
'group' => esc_html__( 'Design Options', 'js_composer' ),
'type' => 'css_editor',
'param_name' => 'css',
),
woodmart_get_vc_responsive_spacing_map(),
// Width option (with dependency Columns option, responsive).
woodmart_get_responsive_dependency_width_map( 'responsive_tabs' ),
woodmart_get_responsive_dependency_width_map( 'width_desktop' ),
woodmart_get_responsive_dependency_width_map( 'custom_width_desktop' ),
woodmart_get_responsive_dependency_width_map( 'width_tablet' ),
woodmart_get_responsive_dependency_width_map( 'custom_width_tablet' ),
woodmart_get_responsive_dependency_width_map( 'width_mobile' ),
woodmart_get_responsive_dependency_width_map( 'custom_width_mobile' ),
);
}
}