C:\xampp\htdocs\landing\wp-content\plugins\Ultimate_VC_Addons\modules\ultimate_icons.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
<?php
/*
* Add-on Name: Icons Block for WPBakery Page Builder
*/
if(!class_exists('Ultimate_Icons'))
{
    class 
Ultimate_Icons
    
{
        function 
__construct()
        {
            if ( 
Ultimate_VC_Addons::$uavc_editor_enable ) {
                
add_action('init',array($this,'ultimate_icon_init'));
            }
            
add_shortcode('ultimate_icons',array($this,'ultimate_icons_shortcode'));
            
add_shortcode('single_icon',array($this,'single_icon_shortcode'));
        }
        function 
ultimate_icon_init()
        {
            if(
function_exists('vc_map'))
            {
                
vc_map(
                    array(
                        
"name" => __("Icons","ultimate_vc"),
                        
"base" => "ultimate_icons",
                        
"class" => "ultimate_icons",
                        
"icon" => "ultimate_icons",
                        
"category" => "Ultimate VC Addons",
                        
"description" => __("Add a set of multiple icons and give some custom style.","ultimate_vc"),
                        
"as_parent" => array('only' => 'single_icon'), // Use only|except attributes to limit child shortcodes (separate multiple values with comma)
                        
"content_element" => true,
                        
"show_settings_on_create" => true,
                        
//"is_container"    => true,
                        
"js_view" => 'VcColumnView',
                        
"params" => array(
                            
// Play with icon selector
                            
array(
                                
"type" => "dropdown",
                                
"class" => "",
                                
"heading" => __("Alignment","ultimate_vc"),
                                
"param_name" => "align",
                                
"value" => array(
                                    
__("Left Align","ultimate_vc") => "uavc-icons-left",
                                    
__("Right Align","ultimate_vc") => "uavc-icons-right",
                                    
__("Center Align","ultimate_vc") => "uavc-icons-center"
                                
),
                                
//"description" => __("", "smile"),
                            
),
                            array(
                                
"type" => "textfield",
                                
"class" => "",
                                
"heading" => __("Extra Class","ultimate_vc"),
                                
"param_name" => "el_class",
                                
"value" => "",
                                
"description" => __("Write your own CSS and mention the class name here.""ultimate_vc"),
                            ),
                            array(
                                
'type' => 'css_editor',
                                
'heading' => __'Css''ultimate_vc' ),
                                
'param_name' => 'css_icon',
                                
'group' => __'Design''ultimate_vc' ),
                                
'edit_field_class' => 'vc_col-sm-12 vc_column no-vc-background no-vc-border creative_link_css_editor',
                            ),
                        )
                    )
                );
                
vc_map(
                    array(
                       
"name" => __("Icon Item"),
                       
"base" => "single_icon",
                       
"class" => "vc_simple_icon",
                       
"icon" => "vc_just_icon",
                       
"category" => __("Ultimate VC Addons","ultimate_vc"),
                       
"description" => __("Add a set of multiple icons and give some custom style.","ultimate_vc"),
                       
"as_child" => array('only' => 'ultimate_icons'), // Use only|except attributes to limit child shortcodes (separate multiple values with comma)
                       
"show_settings_on_create" => true,
                       
"is_container"    => false,
                       
"params" => array(
                            
// Play with icon selector
                            
array(
                                
"type" => "icon_manager",
                                
"class" => "",
                                
"heading" => __("Select Icon ","ultimate_vc"),
                                
"param_name" => "icon",
                                
"value" => "",
                                
"admin_label" => true,
                                
"description" => __("Click and select icon of your choice. If you can't find the one that suits for your purpose","ultimate_vc").", ".__("you can","ultimate_vc")." <a href='admin.php?page=bsf-font-icon-manager' target='_blank' rel='noopener'>".__("add new here","ultimate_vc")."</a>.",
                                
"group"=> "Select Icon",
                            ),
                            array(
                                
"type" => "number",
                                
"class" => "",
                                
"heading" => __("Size of Icon""ultimate_vc"),
                                
"param_name" => "icon_size",
                                
"value" => 32,
                                
"min" => 12,
                                
"max" => 72,
                                
"suffix" => "px",
                                
"description" => __("How big would you like it?""ultimate_vc"),
                                
"group"=> "Select Icon",
                            ),
                            array(
                                
"type" => "number",
                                
"class" => "",
                                
"heading" => __("Space after Icon""ultimate_vc"),
                                
"param_name" => "icon_margin",
                                
"value" => 5,
                                
"min" => 0,
                                
"max" => 100,
                                
"suffix" => "px",
                                
"description" => __("How much distance would you like in two icons?""ultimate_vc"),
                                
"group" => "Other Settings"
                            
),
                            array(
                                
"type" => "colorpicker",
                                
"class" => "",
                                
"heading" => __("Color""ultimate_vc"),
                                
"param_name" => "icon_color",
                                
"value" => "#333333",
                                
"description" => __("Give it a nice paint!""ultimate_vc"),
                                
"group"=> "Select Icon",
                            ),
                            array(
                                
"type" => "dropdown",
                                
"class" => "",
                                
"heading" => __("Icon Style""ultimate_vc"),
                                
"param_name" => "icon_style",
                                
"value" => array(
                                    
__("Simple","ultimate_vc") => "none",
                                    
__("Circle Background","ultimate_vc") => "circle",
                                    
__("Square Background","ultimate_vc") => "square",
                                    
__("Design your own","ultimate_vc") => "advanced",
                                ),
                                
"description" => __("We have given three quick preset if you are in a hurry. Otherwise, create your own with various options.""ultimate_vc"),
                                
"group" => "Select Icon"
                            
),
                            array(
                                
"type" => "colorpicker",
                                
"class" => "",
                                
"heading" => __("Background Color""ultimate_vc"),
                                
"param_name" => "icon_color_bg",
                                
"value" => "#ffffff",
                                
"description" => __("Select background color for icon.""ultimate_vc"),
                                
"dependency" => Array("element" => "icon_style""value" => array("circle","square","advanced")),
                                
"group" => "Select Icon"
                            
),
                            array(
                                
"type" => "dropdown",
                                
"class" => "",
                                
"heading" => __("Icon Border Style""ultimate_vc"),
                                
"param_name" => "icon_border_style",
                                
"value" => array(
                                    
__("None","ultimate_vc")=> "",
                                    
__("Solid","ultimate_vc")=> "solid",
                                    
__("Dashed","ultimate_vc") => "dashed",
                                    
__("Dotted","ultimate_vc") => "dotted",
                                    
__("Double","ultimate_vc") => "double",
                                    
__("Inset","ultimate_vc") => "inset",
                                    
__("Outset","ultimate_vc") => "outset",
                                ),
                                
"description" => __("Select the border style for icon.","ultimate_vc"),
                                
"dependency" => Array("element" => "icon_style""value" => array("advanced")),
                                
"group" => "Select Icon"
                            
),
                            array(
                                
"type" => "colorpicker",
                                
"class" => "",
                                
"heading" => __("Border Color""ultimate_vc"),
                                
"param_name" => "icon_color_border",
                                
"value" => "#333333",
                                
"description" => __("Select border color for icon.""ultimate_vc"),
                                
"dependency" => Array("element" => "icon_border_style""not_empty" => true),
                                
"group" => "Select Icon"
                            
),
                            array(
                                
"type" => "number",
                                
"class" => "",
                                
"heading" => __("Border Width""ultimate_vc"),
                                
"param_name" => "icon_border_size",
                                
"value" => 1,
                                
"min" => 1,
                                
"max" => 10,
                                
"suffix" => "px",
                                
"description" => __("Thickness of the border.""ultimate_vc"),
                                
"dependency" => Array("element" => "icon_border_style""not_empty" => true),
                                
"group" => "Select Icon"
                            
),
                            array(
                                
"type" => "number",
                                
"class" => "",
                                
"heading" => __("Border Radius""ultimate_vc"),
                                
"param_name" => "icon_border_radius",
                                
"value" => 500,
                                
"min" => 1,
                                
"max" => 500,
                                
"suffix" => "px",
                                
"description" => __("0 pixel value will create a square border. As you increase the value, the shape convert in circle slowly. (e.g 500 pixels).""ultimate_vc"),
                                
"dependency" => Array("element" => "icon_border_style""not_empty" => true),
                                
"group" => "Select Icon"
                            
),
                            array(
                                
"type" => "number",
                                
"class" => "",
                                
"heading" => __("Background Size""ultimate_vc"),
                                
"param_name" => "icon_border_spacing",
                                
"value" => 50,
                                
"min" => 30,
                                
"max" => 500,
                                
"suffix" => "px",
                                
"description" => __("Spacing from center of the icon till the boundary of border / background""ultimate_vc"),
                                
"dependency" => Array("element" => "icon_border_style""not_empty" => true),
                                
"group" => "Select Icon"
                            
),
                            array(
                                
"type" => "vc_link",
                                
"class" => "",
                                
"heading" => __("Link ","ultimate_vc"),
                                
"param_name" => "icon_link",
                                
"value" => "",
                                
"description" => __("Add a custom link or select existing page. You can remove existing link as well.","ultimate_vc"),
                                
"group" => "Other Settings"
                            
),
                            array(
                                
"type" => "dropdown",
                                
"class" => "",
                                
"heading" => __("Animation","ultimate_vc"),
                                
"param_name" => "icon_animation",
                                
"value" => array(
                                     
__("No Animation","ultimate_vc") => "",
                                    
__("Swing","ultimate_vc") => "swing",
                                    
__("Pulse","ultimate_vc") => "pulse",
                                    
__("Fade In","ultimate_vc") => "fadeIn",
                                    
__("Fade In Up","ultimate_vc") => "fadeInUp",
                                    
__("Fade In Down","ultimate_vc") => "fadeInDown",
                                    
__("Fade In Left","ultimate_vc") => "fadeInLeft",
                                    
__("Fade In Right","ultimate_vc") => "fadeInRight",
                                    
__("Fade In Up Long","ultimate_vc") => "fadeInUpBig",
                                    
__("Fade In Down Long","ultimate_vc") => "fadeInDownBig",
                                    
__("Fade In Left Long","ultimate_vc") => "fadeInLeftBig",
                                    
__("Fade In Right Long","ultimate_vc") => "fadeInRightBig",
                                    
__("Slide In Down","ultimate_vc") => "slideInDown",
                                    
__("Slide In Left","ultimate_vc") => "slideInLeft",
                                    
__("Slide In Left","ultimate_vc") => "slideInLeft",
                                    
__("Bounce In","ultimate_vc") => "bounceIn",
                                    
__("Bounce In Up","ultimate_vc") => "bounceInUp",
                                    
__("Bounce In Down","ultimate_vc") => "bounceInDown",
                                    
__("Bounce In Left","ultimate_vc") => "bounceInLeft",
                                    
__("Bounce In Right","ultimate_vc") => "bounceInRight",
                                    
__("Rotate In","ultimate_vc") => "rotateIn",
                                    
__("Light Speed In","ultimate_vc") => "lightSpeedIn",
                                    
__("Roll In","ultimate_vc") => "rollIn",
                                    ),
                                
"description" => __("Like CSS3 Animations? We have several options for you!","ultimate_vc"),
                                
"group" => "Other Settings"
                              
),
                            array(
                                
"type" => "dropdown",
                                
"class" => "",
                                
"heading" => __("Tooltip""ultimate_vc"),
                                
"param_name" => "tooltip_disp",
                                
"value" => array(
                                    
__("None","ultimate_vc")=> "",
                                    
__("Tooltip from Left","ultimate_vc") => "left",
                                    
__("Tooltip from Right","ultimate_vc") => "right",
                                    
__("Tooltip from Top","ultimate_vc") => "top",
                                    
__("Tooltip from Bottom","ultimate_vc") => "bottom",
                                ),
                                
"description" => __("Select the tooltip position","ultimate_vc"),
                                
"group" => "Other Settings"
                            
),
                            array(
                                
"type" => "textfield",
                                
"class" => "",
                                
"heading" => __("Tooltip Text""ultimate_vc"),
                                
"param_name" => "tooltip_text",
                                
"value" => "",
                                
"description" => __("Enter your tooltip text here.""ultimate_vc"),
                                
"dependency" => Array("element" => "tooltip_disp""not_empty" => true),
                                
"group" => "Other Settings"
                            
),
                            array(
                                
"type" => "textfield",
                                
"class" => "",
                                
"heading" => __("Custom CSS Class""ultimate_vc"),
                                
"param_name" => "el_class",
                                
"value" => "",
                                
"description" => __("Ran out of options? Need more styles? Write your own CSS and mention the class name here.""ultimate_vc"),
                                
"group" => "Select Icon"
                            
),
                        ),
                    )
                );
            }
        }
        
// Shortcode handler function for stats Icon
        
function ultimate_icons_shortcode($atts,$content null)
        {
            
$align $el_class '';
            
extract(shortcode_atts(array(
                
'align' => '',
                
'el_class' => '',
                
'css_icon' =>'',
            ),
$atts));
            
$icon_design_css apply_filtersVC_SHORTCODE_CUSTOM_CSS_FILTER_TAGvc_shortcode_custom_css_class$css_icon' ' ), "ultimate_icons"$atts );
             
             
$output '<div class="'.esc_attr($icon_design_css).' '.esc_attr($align).' uavc-icons '.esc_attr($el_class).'">';
            
$output .= do_shortcode($content);
            
$output .= '</div>';

            return 
$output;
        }

        function 
single_icon_shortcode($atts){

            
$icon_type $icon_img $img_width $icon $icon_color $icon_color_bg $icon_size $icon_style $icon_border_style $icon_border_radius $icon_color_border $icon_border_size $icon_border_spacing $icon_link $el_class $icon_animation =  $tooltip_disp $tooltip_text $icon_margin $target $link_title  $rel '';
            
extract(shortcode_atts( array(
                
'icon'=> '',
                
'icon_size' => '',
                
'icon_color' => '',
                
'icon_style' => '',
                
'icon_color_bg' => '',
                
'icon_color_border' => '',
                
'icon_border_style' => '',
                
'icon_border_size' => '',
                
'icon_border_radius' => '',
                
'icon_border_spacing' => '',
                
'icon_link' => '',
                
'icon_margin' => '',
                
'icon_animation' => '',
                
'tooltip_disp' => '',
                
'tooltip_text' => '',
                
'el_class'=>'',
            ),
$atts));
            
$ultimate_js get_option('ultimate_js');
            if(isset(
$tooltip_disp) && $tooltip_disp != '' && $ultimate_js != 'enable')
                
wp_enqueue_script('ultimate-tooltip');

            if(
$icon_animation !== 'none')
            {
                
$css_trans 'data-animation="'.esc_attr($icon_animation).'" data-animation-delay="03"';
            }
            
$output $style $link_sufix $link_prefix $target $href $icon_align_style '';
            
$uniqid uniqid();
            
$href             vc_build_link($icon_link);
            if(
$icon_link !== ''){
                if( 
$href['url'] != NULL ){
                    
$url             = ( isset( $href['url'] ) && $href['url'] !== '' ) ? $href['url']  : '';
                    
$target         = ( isset( $href['target'] ) && $href['target'] !== '' ) ? esc_attrtrim$href['target'] ) ) : '';
                    
$link_title     = ( isset( $href['title'] ) && $href['title'] !== '' ) ? esc_attr($href['title']) : '';
                    
$rel             = ( isset( $href['rel'] ) && $href['rel'] !== '' ) ? esc_attr($href['rel']) : '';
                    
$link_prefix .= '<a class="aio-tooltip '.esc_attr($uniqid).'" 'Ultimate_VC_Addons::uavc_link_init($url$target$link_title$rel ).' data-toggle="tooltip" data-placement="'.esc_attr($tooltip_disp).'" title="'.esc_attr($tooltip_text).'">';
                    
$link_sufix .= '</a>';
                }
            }
            if(
$tooltip_disp !== '' && $href['url'] == NULL ){
                
$link_prefix .= '<span class="aio-tooltip '.esc_attr($uniqid).'" data-toggle="tooltip" data-placement="'.esc_attr($tooltip_disp).'" title="'.esc_attr($tooltip_text).'">';
                
$link_sufix .= '</span>';
            }
            

            if(
$icon_color !== '')
                
$style .= 'color:'.$icon_color.';';
            if(
$icon_style !== 'none'){
                if(
$icon_color_bg !== '')
                    
$style .= 'background:'.$icon_color_bg.';';
            }
            if(
$icon_style == 'advanced'){
                
$style .= 'border-style:'.$icon_border_style.';';
                
$style .= 'border-color:'.$icon_color_border.';';
                
$style .= 'border-width:'.$icon_border_size.'px;';
                
$style .= 'width:'.$icon_border_spacing.'px;';
                
$style .= 'height:'.$icon_border_spacing.'px;';
                
$style .= 'line-height:'.$icon_border_spacing.'px;';
                
$style .= 'border-radius:'.$icon_border_radius.'px;';
            }
            if(
$icon_size !== '')
                
$style .='font-size:'.$icon_size.'px;';

            if(
$icon_margin !== '')
                
$style .= 'margin-right:'.$icon_margin.'px;';

            if(
$icon !== ""){
                
$output .= "\n".$link_prefix.'<div class="aio-icon '.esc_attr($icon_style).' '.esc_attr($el_class).'" '.$css_trans.' style="'.esc_attr($style).'">';
                
$output .= "\n\t".'<i class="'.esc_attr($icon).'"></i>';
                
$output .= "\n".'</div>'.$link_sufix;
            }
            
//$output .= do_shortcode($content);
            
if($tooltip_disp !== ""){
                
$output .= '<script>
                    jQuery(function () {
                        jQuery(".'
.esc_attr($uniqid).'").bsf_tooltip("hide");
                    })
                </script>'
;
            }
            return 
$output;
        }
    }
}
if(
class_exists('Ultimate_Icons'))
{
    
$Ultimate_Icons = new Ultimate_Icons;
}
//Extend WPBakeryShortCodesContainer class to inherit all required functionality
if ( class_exists'WPBakeryShortCodesContainer' ) && !class_exists'WPBakeryShortCode_ultimate_icons' ) ) {
    class 
WPBakeryShortCode_ultimate_icons extends WPBakeryShortCodesContainer {
    }
}
if ( 
class_exists'WPBakeryShortCode' ) && !class_exists'WPBakeryShortCode_single_icon' ) ) {
    class 
WPBakeryShortCode_single_icon extends WPBakeryShortCode {
    }
}
x

Windows NT KPTV 6.2 build 9200 (Windows Server 2012 Datacenter Edition) i586