File "shortcode-vc-images-carousel.php"
Full Path: /home/jlklyejr/public_html/post-date/wp-content/plugins/js_composer/config/content/shortcode-vc-images-carousel.php
File size: 5.66 KB
MIME-type: text/x-php
Charset: utf-8
<?php
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}
return array(
'name' => esc_html__( 'Image Carousel', 'js_composer' ),
'base' => 'vc_images_carousel',
'icon' => 'icon-wpb-images-carousel',
'category' => esc_html__( 'Content', 'js_composer' ),
'description' => esc_html__( 'Animated carousel with images', 'js_composer' ),
'params' => array(
array(
'type' => 'textfield',
'heading' => esc_html__( 'Widget title', 'js_composer' ),
'param_name' => 'title',
'description' => esc_html__( 'Enter text used as widget title (Note: located above content element).', 'js_composer' ),
),
array(
'type' => 'attach_images',
'heading' => esc_html__( 'Images', 'js_composer' ),
'param_name' => 'images',
'value' => '',
'description' => esc_html__( 'Select images from media library.', 'js_composer' ),
),
array(
'type' => 'textfield',
'heading' => esc_html__( 'Carousel size', 'js_composer' ),
'param_name' => 'img_size',
'value' => 'thumbnail',
'description' => esc_html__( 'Enter image size. Example: thumbnail, medium, large, full or other sizes defined by current theme. Alternatively enter image size in pixels: 200x100 (Width x Height). Leave empty to use "thumbnail" size. If used slides per view, this will be used to define carousel wrapper size.', 'js_composer' ),
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'On click action', 'js_composer' ),
'param_name' => 'onclick',
'value' => array(
esc_html__( 'Open Lightbox', 'js_composer' ) => 'link_image',
esc_html__( 'None', 'js_composer' ) => 'link_no',
esc_html__( 'Open custom links', 'js_composer' ) => 'custom_link',
),
'description' => esc_html__( 'Select action for click event.', 'js_composer' ),
),
array(
'type' => 'exploded_textarea_safe',
'heading' => esc_html__( 'Custom links', 'js_composer' ),
'param_name' => 'custom_links',
'description' => esc_html__( 'Enter links for each slide (Note: divide links with linebreaks (Enter)).', 'js_composer' ),
'dependency' => array(
'element' => 'onclick',
'value' => array( 'custom_link' ),
),
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Custom link target', 'js_composer' ),
'param_name' => 'custom_links_target',
'description' => esc_html__( 'Select how to open custom links.', 'js_composer' ),
'dependency' => array(
'element' => 'onclick',
'value' => array( 'custom_link' ),
),
'value' => vc_target_param_list(),
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Slider orientation', 'js_composer' ),
'param_name' => 'mode',
'value' => array(
esc_html__( 'Horizontal', 'js_composer' ) => 'horizontal',
esc_html__( 'Vertical', 'js_composer' ) => 'vertical',
),
'description' => esc_html__( 'Select slider position (Note: this affects swiping orientation).', 'js_composer' ),
),
array(
'type' => 'textfield',
'heading' => esc_html__( 'Slider speed', 'js_composer' ),
'param_name' => 'speed',
'value' => '5000',
'description' => esc_html__( 'Duration of animation between slides (in ms).', 'js_composer' ),
),
array(
'type' => 'textfield',
'heading' => esc_html__( 'Slides per view', 'js_composer' ),
'param_name' => 'slides_per_view',
'value' => '1',
'description' => esc_html__( 'Enter number of slides to display at the same time.', 'js_composer' ),
),
array(
'type' => 'checkbox',
'heading' => esc_html__( 'Slider autoplay', 'js_composer' ),
'param_name' => 'autoplay',
'description' => esc_html__( 'Enable autoplay mode.', 'js_composer' ),
'value' => array( esc_html__( 'Yes', 'js_composer' ) => 'yes' ),
),
array(
'type' => 'checkbox',
'heading' => esc_html__( 'Hide pagination control', 'js_composer' ),
'param_name' => 'hide_pagination_control',
'description' => esc_html__( 'If checked, pagination controls will be hidden.', 'js_composer' ),
'value' => array( esc_html__( 'Yes', 'js_composer' ) => 'yes' ),
),
array(
'type' => 'checkbox',
'heading' => esc_html__( 'Hide prev/next buttons', 'js_composer' ),
'param_name' => 'hide_prev_next_buttons',
'description' => esc_html__( 'If checked, prev/next buttons will be hidden.', 'js_composer' ),
'value' => array( esc_html__( 'Yes', 'js_composer' ) => 'yes' ),
),
array(
'type' => 'checkbox',
'heading' => esc_html__( 'Partial view', 'js_composer' ),
'param_name' => 'partial_view',
'description' => esc_html__( 'If checked, part of the next slide will be visible.', 'js_composer' ),
'value' => array( esc_html__( 'Yes', 'js_composer' ) => 'yes' ),
),
array(
'type' => 'checkbox',
'heading' => esc_html__( 'Slider loop', 'js_composer' ),
'param_name' => 'wrap',
'description' => esc_html__( 'Enable slider loop mode.', 'js_composer' ),
'value' => array( esc_html__( 'Yes', 'js_composer' ) => 'yes' ),
),
vc_map_add_css_animation(),
array(
'type' => 'el_id',
'heading' => esc_html__( 'Element ID', 'js_composer' ),
'param_name' => 'el_id',
'description' => sprintf( esc_html__( 'Enter element ID (Note: make sure it is unique and valid according to %1$sw3c specification%2$s).', 'js_composer' ), '<a href="https://www.w3schools.com/tags/att_global_id.asp" target="_blank">', '</a>' ),
),
array(
'type' => 'textfield',
'heading' => esc_html__( 'Extra class name', 'js_composer' ),
'param_name' => 'el_class',
'description' => esc_html__( 'Style particular content element differently - add a class name and refer to it in custom CSS.', 'js_composer' ),
),
array(
'type' => 'css_editor',
'heading' => esc_html__( 'CSS box', 'js_composer' ),
'param_name' => 'css',
'group' => esc_html__( 'Design Options', 'js_composer' ),
),
),
);