BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
wp-content
/
plugins
/
porto-functionality
/
shortcodes
/
shortcodes
📤 Upload
📝 New File
📁 New Folder
Close
Editing: porto_360degree_image_viewer.php
<?php // Porto 360 Degree Image Viewer add_action( 'vc_after_init', 'porto_load_360degree_image_viewer_shortcode' ); function porto_load_360degree_image_viewer_shortcode() { $animation_type = porto_vc_animation_type(); $animation_duration = porto_vc_animation_duration(); $animation_delay = porto_vc_animation_delay(); $animation_reveal_clr = porto_vc_animation_reveal_clr(); $custom_class = porto_vc_custom_class(); vc_map( array( 'name' => __( 'Porto 360 Degree Image Viewer', 'porto-functionality' ), 'base' => 'porto_360degree_image_viewer', 'icon' => PORTO_WIDGET_URL . '360degree.gif', 'class' => 'porto-wpb-widget', 'category' => __( 'Porto', 'porto-functionality' ), 'description' => __( 'Showcase your product as 3D model', 'porto-functionality' ), 'params' => array( array( 'type' => 'attach_image', 'class' => '', 'heading' => __( 'Source Image', 'porto-functionality' ), 'param_name' => 'img_source', 'description' => __( 'A set of frames that will be shown in each degrees.<br /><strong>Note: If image width is larger than 2560px, you might need to reset the threshold for image width or height under Porto -> Speed Optimize Wizard -> Performance section</strong>.', 'porto-functionality' ), 'admin_label' => true, 'value' => '', ), array( 'type' => 'attach_image', 'class' => '', 'heading' => __( 'Preview Image', 'porto-functionality' ), 'param_name' => 'img_preview', 'description' => __( 'Preview image describes starter image before initialize and size of a frame in source image.', 'porto-functionality' ), 'value' => '', ), array( 'type' => 'number', 'class' => '', 'heading' => __( 'Frame Count', 'porto-functionality' ), 'param_name' => 'frame_count', 'value' => 16, 'min' => 2, 'max' => 360, 'admin_label' => true, ), array( 'type' => 'number', 'class' => '', 'heading' => __( 'Friction', 'porto-functionality' ), 'param_name' => 'friction', 'value' => 0.33, 'min' => 0.01, 'max' => 1.00, 'step' => 0.01, 'admin_label' => true, ), $animation_type, $animation_duration, $animation_delay, $animation_reveal_clr, $custom_class, ), ) ); if ( class_exists( 'WPBakeryShortCode' ) ) { class WPBakeryShortCode_porto_360degree_image_viewer extends WPBakeryShortCode { } } }
Save
Cancel