C:\xampp\htdocs\landing\wp-content\plugins\penci-framework\shortcodes\social_counter\settings.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
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
<?php
// Shortcode settings
$group_color  'Color';
$group_social 'Social';
$group_heading 'Heading';

return array(
    
'name'   => esc_html__'Social Counter''penci-framework' ),
    
'weight' => 812,
    
'params' => array_merge(
        array(
            array(
                
'type'        => 'dropdown',
                
'heading'     => esc_html__'Select Social Counter Style''penci-framework' ),
                
'param_name'  => 'style_counter',
                
'std'         => 'style-1',
                
'value'       => array(
                    
esc_html__'Style 1''penci-framework' ) => 'style-1',
                    
esc_html__'Style 2''penci-framework' ) => 'style-2',
                    
esc_html__'Style 3''penci-framework' ) => 'style-3',
                    
esc_html__'Style 4''penci-framework' ) => 'style-4',
                    
esc_html__'Style 5''penci-framework' ) => 'style-5',
                    
esc_html__'Style 6''penci-framework' ) => 'style-6',

                ),
                
'admin_label' => true,
            ),
            array(
                
'type'        => 'dropdown',
                
'heading'     => esc_html__'Social Item Align for Style 2''penci-framework' ),
                
'param_name'  => 'social_item_align',
                
'std'         => 'left',
                
'value'       => array(
                    
esc_html__'Left''penci-framework' ) => 'left',
                    
esc_html__'Center''penci-framework' ) => 'center',
                    
esc_html__'Right''penci-framework' ) => 'right'
                
),
            ),
        ),
        array(
            array(
                
'type'       => 'dropdown',
                
'heading'    => esc_html__'Select Style Block Title''penci-framework' ),
                
'param_name' => 'style_block_title',
                
'std'        => 'style-title-1',
                
'value'      => array(
                    
esc_html__'Style 1''penci-framework' )             => 'style-title-1',
                    
esc_html__'Style 2''penci-framework' )             => 'style-title-2',
                    
esc_html__'Style 3''penci-framework' )             => 'style-title-3',
                    
esc_html__'Style 4''penci-framework' )             => 'style-title-4',
                    
esc_html__'Style 5''penci-framework' )             => 'style-title-5',
                    
esc_html__'Style 6''penci-framework' )             => 'style-title-6',
                    
esc_html__'Style 7''penci-framework' )             => 'style-title-7',
                    
esc_html__'Style 8''penci-framework' )             => 'style-title-8',
                    
esc_html__'Style 9''penci-framework' )             => 'style-title-9',
                    
esc_html__'Style 10''penci-framework' )            => 'style-title-10',
                    
esc_html__'Style 11''penci-framework' )            => 'style-title-11',
                    
esc_html__'Style 12''penci-framework' )            => 'style-title-12',
                    
esc_html__'Style 13''penci-framework' )            => 'style-title-13',
                    
esc_html__'Style For Slider 28''penci-framework' ) => 'style-title-s28',
                ),
                
'group'      => $group_heading,
            ),
            array(
                
'type'        => 'textfield',
                
'heading'     => esc_html__'Block title:''penci-framework' ),
                
'param_name'  => 'title',
                
'value'       => '',
                
'admin_label' => true,
                
'group'       => $group_heading,
                
'description' => esc_html__'A title for this block, if you leave it blank the block will not have a title''penci-framework' ),
            ),
            array(
                
'type'        => 'textfield',
                
'heading'     => esc_html__'Title url:''penci-framework' ),
                
'param_name'  => 'block_title_url',
                
'std'         => '',
                
'group'       => $group_heading,
                
'description' => esc_html__'A custom url when the block title is clicked''penci-framework' ),
            ),
            array(
                
'type'       => 'checkbox',
                
'heading'    => __'Add icon for title?''penci-framework' ),
                
'param_name' => 'add_title_icon',
                
'group'      => $group_heading,
            ),
            array(
                
'type'        => 'dropdown',
                
'heading'     => __'Icon Alignment''penci-framework' ),
                
'description' => __'Select icon alignment.''penci-framework' ),
                
'param_name'  => 'title_i_align',
                
'value'       => array(
                    
__'Left''penci-framework' )  => 'left',
                    
__'Right''penci-framework' ) => 'right',
                ),
                
'group'       => $group_heading,
                
'dependency'  => array( 'element' => 'add_title_icon''value' => 'true', ),
            ),
            array(
                
'type'       => 'iconpicker',
                
'heading'    => esc_html__'Icon''penci-framework' ),
                
'param_name' => 'title_icon',
                
'settings'   => array(
                    
'emptyIcon'    => true,
                    
'type'         => 'fontawesome',
                    
'iconsPerPage' => 4000,
                ),
                
'dependency' => array(
                    
'element' => 'add_title_icon',
                    
'value'   => 'true',
                ),
                
'group'      => $group_heading,
            ),
            array(
                
'type'             => 'textfield',
                
'param_name'       => 'block_title_meta_settings',
                
'heading'          => 'Block title settings',
                
'value'            => '',
                
'group'            => $group_heading,
                
'edit_field_class' => 'penci-param-heading-wrapper no-top-margin vc_column vc_col-sm-12',
            ),
            array(
                
'type'       => 'dropdown',
                
'heading'    => esc_html__'Select Block Title Align''penci-framework' ),
                
'param_name' => 'block_title_align',
                
'std'        => 'left',
                
'value'      => array(
                    
esc_html__'Left''penci-framework' )   => 'style-title-left',
                    
esc_html__'Center''penci-framework' ) => 'style-title-center',
                    
esc_html__'Right''penci-framework' )  => 'style-title-right',
                ),
                
'group'      => $group_heading,
            ),
            array(
                
'type'       => 'checkbox',
                
'heading'    => esc_html__'Turn off Uppercase Block Title''penci-framework' ),
                
'param_name' => 'block_title_off_uppercase',
                
'group'      => $group_heading,
            ),
            array(
                
'type'       => 'penci_number',
                
'param_name' => 'block_title_wborder_left_right',
                
'heading'    => esc_html__'Custom width border left or right''penci-framework' ),
                
'value'      => '',
                
'std'        => '5px',
                
'suffix'     => 'px',
                
'min'        => 1,
                
'dependency' => array( 'element' => 'style_block_title''value' => array( 'style-title-9''style-title-10' ) ),
                
'group'      => $group_heading,
            ),

            array(
                
'type'       => 'penci_number',
                
'param_name' => 'block_title_wborder',
                
'heading'    => esc_html__'Custom width border''penci-framework' ),
                
'value'      => '',
                
'std'        => '3px',
                
'suffix'     => 'px',
                
'min'        => 1,
                
'dependency' => array( 'element' => 'style_block_title''value' => array( 'style-title-11''style-title-12' ) ),
                
'group'      => $group_heading,
            ),
        ),
        array(
            array(
                
"param_name"  => "facebook",
                
"type"        => "textfield",
                
'std'         => 'PenciDesign',
                
"heading"     => __"Facebook id:"'penci-framework' ),
                
"description" =>  esc_html__'Please enter the page ID or page name.For example:If your page url is https://www.facebook.com/PenciDesign then your page ID is PenciDesign.''penci-framework' ),
                
'group'       => $group_social,
            ),
            array(
                
"param_name" => "facebook_access_token",
                
"type"       => "textfield",
                
"heading"    => __"Facebook Access Tokens:"'penci-framework' ),
                
'group'      => $group_social,
                
"description" => 'Please go to <a href="https://smashballoon.com/custom-facebook-feed/access-token/" target="_blank">https://smashballoon.com/custom-facebook-feed/access-token/</a> and check this giude and get the access token ID',
            ),
            array(
                
"param_name" => "twitter",
                
"type"       => "textfield",
                
"std"        => "envato",
                
"heading"    => __"Twitter id:"'penci-framework' ),
                
'group'      => $group_social,
            ),
            array(
                
"param_name"  => "youtube",
                
"type"        => "textfield",
                
"std"         => "envato",
                
"heading"     => __"Youtube id:"'penci-framework' ),
                
"description" => "User: www.youtube.com/user/<b style='color: #000'>ENVATO</b><br/>Channel: www.youtube.com/<b style='color: #000'>channel/UCJr72fY4cTaNZv7WPbvjaSw</b>",
                
'group'       => $group_social,
            ),
            array(
                
"param_name" => "vimeo",
                
"type"       => "textfield",
                
"heading"    => __"Vimeo id:"'penci-framework' ),
                
'group'      => $group_social,
            ),
            array(
                
"param_name" => "google",
                
"type"       => "textfield",
                
"heading"    => __"Google Plus User:"'penci-framework' ),
                
'group'      => $group_social,
            ),
            array(
                
"param_name" => "pinterest",
                
"type"       => "textfield",
                
"heading"    => __"Pinterest Username:"'penci-framework' ),
                
'group'      => $group_social,
            ),
            array(
                
"param_name" => "instagram",
                
"type"       => "textfield",
                
"heading"    => __"Instagram Username:"'penci-framework' ),
                
'group'      => $group_social,
            ),
            array(
                
"param_name" => "instagram_access_token",
                
"type"       => "textfield",
                
"heading"    => __"Instagram Access Token:"'penci-framework' ),
                
"description" => 'Please enter the instagram Access Token.You can get this information from <a href="http://instagram.pixelunion.net/" target="_blank">http://instagram.pixelunion.net/</a>',
                
'group'      => $group_social,
            ),
            array(
                
"param_name" => "github",
                
"type"       => "textfield",
                
"heading"    => __"Github UserName:"'penci-framework' ),
                
'group'      => $group_social,
            ),
            array(
                
"param_name" => "soundcloud",
                
"type"       => "textfield",
                
"heading"    => __"Soundcloud User:"'penci-framework' ),
                
'group'      => $group_social,
            ),
            array(
                
"param_name" => "soundcloud_client_id",
                
"type"       => "textfield",
                
"heading"    => __"SoundCloud Client ID:"'penci-framework' ),
                
'group'      => $group_social,
            ),
            array(
                
"param_name"  => "rss",
                
"type"        => "textfield",
                
"heading"     => __"Feed subscriber count:"'penci-framework' ),
                
"description" => "Write the number of followers",
                
'group'       => $group_social,
            ),
            array(
                
"param_name"  => "linkedin",
                
"type"        => "textfield",
                
"heading"     => __"Linkedin:"'penci-framework' ),
                
'group'       => $group_social,
            ),
            array(
                
"param_name"  => "flickr",
                
"type"        => "textfield",
                
"heading"     => __"Flickr:"'penci-framework' ),
                
'group'       => $group_social,
            ),
            array(
                
"param_name"  => "behance",
                
"type"        => "textfield",
                
"heading"     => __"Behance"'penci-framework' ),
                
'group'       => $group_social,
            ),
            array(
                
"param_name"  => "behance_api",
                
"type"        => "textfield",
                
'std'         => '',
                
"heading"     => __"Behance API Key"'penci-framework' ),
                
"description" => __'You can register Behance API Key <a href="https://www.behance.net/dev/register" target="_blank">here</a>''penci-framework' ),
                
'group'       => $group_social,
            ),
            array(
                
"param_name"  => "tumblr",
                
"type"        => "textfield",
                
"heading"     => __"Tumblr"'penci-framework' ),
                
'group'       => $group_social,
            ),
            array(
                
"param_name"  => "email_me",
                
"type"        => "textfield",
                
"heading"     => __"Email"'penci-framework' ),
                
'group'       => $group_social,
                
'description' => 'If you want to click email icon to link to your mail, please fill: mailto:yourmail@hostmail. Change yourmail@hostmail.com to your mail. You also can fill your contact link page here'
            
),
            array(
                
"param_name"  => "bloglovin",
                
"type"        => "textfield",
                
"heading"     => __"Bloglovin"'penci-framework' ),
                
'group'       => $group_social,
            ),
            array(
                
"param_name"  => "vk",
                
"type"        => "textfield",
                
"heading"     => __"Vk"'penci-framework' ),
                
'group'       => $group_social,
            ),
            array(
                
"param_name"  => "vine",
                
"type"        => "textfield",
                
"heading"     => __"Vine"'penci-framework' ),
                
'group'       => $group_social,
            ),
            array(
                
"param_name"  => "snapchat",
                
"type"        => "textfield",
                
"heading"     => __"Snapchat"'penci-framework' ),
                
'group'       => $group_social,
            ),
            array(
                
"param_name"  => "spotify",
                
"type"        => "textfield",
                
"heading"     => __"Spotify"'penci-framework' ),
                
'group'       => $group_social,
            ),
            array(
                
"param_name"  => "stack-overflow",
                
"type"        => "textfield",
                
"heading"     => __"Stack Overflow"'penci-framework' ),
                
'group'       => $group_social,
            ),
            array(
                
"param_name"  => "twitch",
                
"type"        => "textfield",
                
"heading"     => __"Twitch"'penci-framework' ),
                
'group'       => $group_social,
            ),
            array(
                
"param_name"  => "steam",
                
"type"        => "textfield",
                
"heading"     => __"Steam"'penci-framework' ),
                
'group'       => $group_social,
            ),
            array(
                
"param_name"  => "xing",
                
"type"        => "textfield",
                
"heading"     => __"Xing"'penci-framework' ),
                
'group'       => $group_social,
            ),array(
                
"param_name"  => "line",
                
"type"        => "textfield",
                
"heading"     => __"Line"'penci-framework' ),
                
'group'       => $group_social,
            ),
            array(
                
"param_name"  => "patreon",
                
"type"        => "textfield",
                
"heading"     => __"Patreon"'penci-framework' ),
                
'group'       => $group_social,
            ),
            array(
                
"param_name" => "open_in_new_window",
                
"type"       => "dropdown",
                
"value"      => array( '-- Same window --' => '''New window' => 'y' ),
                
"heading"    => __"Open in:"'penci-framework' ),
                
'std'        => 'y'
            
),
        ),
        
Penci_Framework_Shortcode_Params::color_params'socail-counter'false ),
        array(
            array(
                
'type'             => 'textfield',
                
'param_name'       => 'color_item_css',
                
'heading'          => esc_html__'Socail item colors''penci-framework' ),
                
'value'            => '',
                
'group'            => $group_color,
                
'edit_field_class' => 'penci-param-heading-wrapper no-top-margin vc_column vc_col-sm-12',
            ),
            array(
                
'type'             => 'colorpicker',
                
'heading'          => esc_html__'Background item social color''penci-framework' ),
                
'param_name'       => 'background_social_color',
                
'group'            => $group_color,
                
'edit_field_class' => 'vc_col-sm-6',
            ),
            array(
                
'type'             => 'colorpicker',
                
'heading'          => esc_html__'Text item social color''penci-framework' ),
                
'param_name'       => 'item_text_color',
                
'group'            => $group_color,
                
'edit_field_class' => 'vc_col-sm-6',
            ),
            array(
                
'type'             => 'colorpicker',
                
'heading'          => esc_html__'Background item social hover color''penci-framework' ),
                
'param_name'       => 'background_social_hcolor',
                
'group'            => $group_color,
                
'edit_field_class' => 'vc_col-sm-6',
            ),
            array(
                
'type'             => 'colorpicker',
                
'heading'          => esc_html__'Text item social hover color''penci-framework' ),
                
'param_name'       => 'item_text_hover_color',
                
'group'            => $group_color,
                
'edit_field_class' => 'vc_col-sm-6',
            )
        ),
        
Penci_Framework_Shortcode_Params::block_option_note_custom_fonts(),
        
Penci_Framework_Shortcode_Params::block_option_typo(
            array(
                
'prefix'       => 'block_title',
                
'title'        => esc_html__'Block title settings' ),
                
'google_fonts' => Penci_Helper_Shortcode::get_font_family'oswald' ),
                
'font-size'    => '18px',
            )
        ),
        
Penci_Framework_Shortcode_Params::block_option_typo(
            array(
                
'prefix'       => 'social_item',
                
'title'        => esc_html__'Text item social settings' ),
                
'google_fonts' => Penci_Helper_Shortcode::get_font_family'roboto' ),
                
'font-size'    => '',
            )
        ),
        array(
            array(
                
'type'             => 'penci_number',
                
'param_name'       => 'icon_font_size',
                
'heading'          => esc_html__'Font size icon of item''penci-framework' ),
                
'value'            => '',
                
'std'              => '',
                
'suffix'           => 'px',
                
'min'              => 1,
                
'edit_field_class' => 'vc_col-sm-6',
                
'group'            => 'Typo',
            ),
        )
    ),
);
x

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