html_placeholder(); } /** * @param null $title * * @return bool|string|null */ public function html_placeholder( $title = null ) { return tcb_template( 'elements/image-gallery', null, true ); } /** * Component and control config * * @return array */ public function own_components() { $components = array( 'carousel' => [ 'hidden' => false ], 'image_gallery' => array( 'config' => array( 'GalleryType' => array( 'config' => array( 'name' => __( 'Gallery type', 'thrive-cb' ), 'large_buttons' => true, 'buttons' => array( array( 'value' => 'grid', 'data' => array( 'tooltip' => __( 'Grid', 'thrive-cb' ), 'position' => 'top', ), 'icon' => 'gallery-grid', 'default' => true, ), array( 'value' => 'verticalMasonry', 'data' => array( 'tooltip' => __( 'Vertical Masonry', 'thrive-cb' ), 'position' => 'top', 'width' => '100%', ), 'icon' => 'gallery-vertical-masonry', ), array( 'value' => 'horizontalMasonry', 'data' => array( 'tooltip' => __( 'Horizontal Masonry', 'thrive-cb' ), 'position' => 'top', 'width' => '100%', ), 'icon' => 'gallery-horizontal-masonry', ), array( 'value' => 'carousel', 'data' => array( 'tooltip' => __( 'Carousel', 'thrive-cb' ), 'position' => 'top', 'width' => '100%', ), 'icon' => 'gallery-carousel', ), ), ), 'extends' => 'ButtonGroup', ), 'ShowCaptions' => array( 'config' => array( 'name' => '', 'label' => __( 'Show captions', 'thrive-cb' ), 'default' => false, ), 'extends' => 'Switch', ), 'ShowCaptionsInLightbox' => array( 'config' => array( 'name' => '', 'label' => __( 'Show captions on lightbox', 'thrive-cb' ), 'default' => false, ), 'extends' => 'Switch', ), 'Columns' => array( 'config' => array( 'default' => '3', 'min' => '1', 'max' => '10', 'label' => __( 'Images per row', 'thrive-cb' ), 'um' => [ '' ], ), 'extends' => 'Slider', ), 'VerticalSpace' => array( 'config' => array( 'min' => '0', 'max' => '240', 'label' => __( 'Vertical space', 'thrive-cb' ), 'um' => [ 'px' ], ), 'extends' => 'Slider', ), 'HorizontalSpace' => array( 'config' => array( 'min' => '0', 'max' => '240', 'label' => __( 'Horizontal space', 'thrive-cb' ), 'um' => [ 'px' ], ), 'extends' => 'Slider', ), 'ColumnHeight' => array( 'config' => array( 'min' => '1', 'max' => '800', 'label' => __( 'Column Height', 'thrive-cb' ), 'um' => [ 'px' ], ), 'extends' => 'Slider', ), 'Gutter' => array( 'config' => array( 'min' => '0', 'max' => '240', 'label' => __( 'Gutter', 'thrive-cb' ), 'um' => [ 'px' ], ), 'extends' => 'Slider', ), 'ClickBehavior' => array( 'config' => array( 'name' => __( 'Click behavior', 'thrive-cb' ), 'options' => array( [ 'value' => 'fullscreen', 'name' => 'Open fullscreen lightbox', ], array( 'value' => 'none', 'name' => 'None (links can be added in edit mode)', ), ), ), 'extends' => 'Select', ), 'ThumbnailSize' => array( 'config' => array( 'name' => __( 'Thumbnail size', 'thrive-cb' ), 'options' => [ [ 'value' => 'auto', 'name' => 'Automatic', ], [ 'value' => 'medium', 'name' => 'Medium', ], [ 'value' => 'large', 'name' => 'Large', ], ], 'info' => true, ), 'extends' => 'Select', ), 'CropImages' => array( 'config' => array( 'name' => '', 'label' => __( 'Crop images to fit', 'thrive-cb' ), 'default' => true, ), 'extends' => 'Switch', ), 'GalleryImageHeight' => array( 'config' => array( 'min' => '1', 'max' => '800', 'label' => __( 'Image height', 'thrive-cb' ), 'um' => [ 'px' ], ), 'extends' => 'Slider', ), 'FullscreenSize' => array( 'config' => array( 'name' => __( 'Full screen image size', 'thrive-cb' ), 'options' => [ [ 'value' => 'medium', 'name' => 'Medium', ], [ 'value' => 'large', 'name' => 'Large', ], [ 'value' => 'full', 'name' => 'Original', ], ], ), 'extends' => 'Select', ), ), ), 'layout' => [ 'disabled_controls' => [ 'Display' ], ], ); $components = array_merge( $components, $this->group_component() ); return array_merge( $components, parent::own_components() ); } /** * Element category that will be displayed in the sidebar * * @return string */ public function category() { return static::get_thrive_advanced_label(); } /** * Group Edit Properties * * @return array|bool */ public function has_group_editing() { return array( 'select_values' => array( array( 'value' => 'arrows', 'selector' => '.tcb-carousel-arrow', 'name' => __( 'Next/Previous buttons Icons', 'thrive-cb' ), 'singular' => __( '-- Next/Previous buttons Icon', 'thrive-cb' ), ), ), ); } /** * Element info * * @return string|string[][] */ public function info() { return [ 'instructions' => [ 'type' => 'help', 'url' => 'image_gallery_element', 'link' => 'https://thrivethemes.com/docs/using-the-image-gallery-element-in-thrive-architect/', ], ]; } }