????JFIF??x?x????'
| Server IP : 104.21.30.238 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /././home/./tempvsty/eaabusiness.com/wp-content/themes/globeco/vc/theme_widgets/ |
Upload File : |
<?php
// Map Shortcode in Visual Composer
global $cws_theme_funcs;
vc_map( array(
"name" => esc_html__( 'Text Widget', 'globeco' ),
"base" => "cws_sc_widget_text",
'category' => "CWS Widgets",
"icon" => "cws_icon",
"weight" => 80,
"params" => array(
array(
"type" => "textfield",
"admin_label" => true,
"heading" => esc_html__( 'Title', 'globeco' ),
"param_name" => "title",
),
array(
"type" => "iconpicker",
"heading" => esc_html__( 'Widget Icon', 'globeco' ),
"param_name" => "icon",
),
array(
"type" => "textarea",
"heading" => esc_html__( 'Widget Content', 'globeco' ),
"param_name" => "text"
),
array(
"type" => "checkbox",
"param_name" => "add_custom_color",
"value" => array( esc_html__( 'Add Custom Color', 'globeco' ) => true )
),
array(
"type" => "colorpicker",
"heading" => esc_html__( 'Custom Color', 'globeco' ),
"param_name" => "color",
"dependency" => array(
"element" => "add_custom_color",
"not_empty" => true
)
),
array(
"type" => "textfield",
"heading" => esc_html__( 'Extra class name', 'globeco' ),
"description" => esc_html__( 'If you wish to style particular content element differently, then use this field to add a class name and then refer to it in your css file.', 'globeco' ),
"param_name" => "el_class",
"value" => ""
)
)
));
if ( class_exists( 'WPBakeryShortCode' ) ) {
class WPBakeryShortCode_CWS_Sc_Widget_Text extends WPBakeryShortCode {
}
}
?>