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
|
<?php if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); }
$shotcode_id = 'testimonails'; $group_color = 'Color';
// Shortcode settings return array( 'name' => esc_html__( 'Testimonial', 'penci-framework' ), 'weight' => 700, 'params' => array_merge( array( array( 'type' => 'dropdown', 'heading' => esc_html__( 'Design style', 'penci-framework' ), 'param_name' => '_design_style', 'std' => 's1', 'value' => array( esc_html__( 'Style 1', 'penci-framework' ) => 's1', esc_html__( 'Style 2', 'penci-framework' ) => 's2', esc_html__( 'Style 3', 'penci-framework' ) => 's3' ), ), array( 'type' => 'dropdown', 'heading' => __( 'Columns', 'penci-framework' ), 'param_name' => 'columns', 'value' => array( __( '1 Column', 'penci-framework' ) => 'column-1', __( '2 Columns', 'penci-framework' ) => 'columns-2', __( '3 Columns', 'penci-framework' ) => 'columns-3', __( '4 Columns', 'penci-framework' ) => 'columns-4', ), 'std' => 'columns-2' ), array( 'type' => 'param_group', 'heading' => '', 'param_name' => 'testiminails', 'group' => 'Testimonials', 'value' => urlencode( json_encode( array( array( 'name' => 'Testimonails 1', 'desc' => 'I am text block. Click edit button to change this text.', 'company' => 'Company/Position', 'link' => '#' ), array( 'name' => 'Testimonails 2', 'desc' => 'I am text block. Click edit button to change this text.', 'company' => 'Company/Position', 'link' => '#' ) ) ) ), 'params' => array( array( 'type' => 'textfield', 'heading' => __( 'Name', 'penci-framework' ), 'param_name' => 'name', 'admin_label' => true, 'description' => __( 'Insert the name of the person.', 'penci-framework' ), ), array( 'type' => 'attach_image', 'heading' => __( 'Custom Avatar', 'penci-framework' ), 'param_name' => 'image', 'value' => '', 'description' => __( 'Upload a custom avatar image. Recommended 70×70 pixels', 'penci-framework' ), ),
array( 'type' => 'textfield', 'heading' => __( 'Company/Position', 'penci-framework' ), 'param_name' => 'company', 'description' => __( 'Insert the name of the company.', 'penci-framework' ), ), array( 'type' => 'textarea', 'heading' => __( 'Description', 'penci-framework' ), 'param_name' => 'desc', 'description' => __( 'Add the testimonial description..', 'penci-framework' ), ), array( 'type' => 'dropdown', 'heading' => __( 'Rating', 'penci-framework' ), 'param_name' => 'rating', 'value' => array( __( '1', 'penci-framework' ) => '1', __( '2', 'penci-framework' ) => '2', __( '3', 'penci-framework' ) => '3', __( '4', 'penci-framework' ) => '4', __( '5', 'penci-framework' ) => '5', ), 'std' => '5', 'dependency' => array( 'element' => '_design_style', 'value' => array( 's3' ) ), ), array( 'type' => 'textfield', 'heading' => __( 'Link', 'penci-framework' ), 'param_name' => 'link', 'description' => __( 'Add the url the company name will link to', 'penci-framework' ), ) ), ), array( 'type' => 'textfield', 'param_name' => 'space_heading', 'heading' => esc_html__( 'Custom space', 'penci-framework' ), 'value' => '', 'edit_field_class' => 'penci-param-heading-wrapper no-top-margin vc_column vc_col-sm-12', ), array( 'type' => 'penci_number', 'param_name' => 'bq_padding_tb', 'heading' => __( 'Blockquote padding top/bottom', 'penci-framework' ), 'value' => '', 'std' => '', 'suffix' => 'px', 'min' => 1, 'edit_field_class' => 'vc_col-sm-6', ), array( 'type' => 'penci_number', 'param_name' => 'bq_padding_lr', 'heading' => __( 'Blockquote padding left/right', 'penci-framework' ), 'value' => '', 'std' => '', 'suffix' => 'px', 'min' => 1, 'edit_field_class' => 'vc_col-sm-6', ), array( 'type' => 'penci_number', 'param_name' => 'bq_mar_top', 'heading' => __( 'Blockquote margin top', 'penci-framework' ), 'value' => '', 'std' => '', 'suffix' => 'px', 'min' => 1, ), array( 'type' => 'penci_number', 'param_name' => 'bq_max_width', 'heading' => __( 'Blockquote max width', 'penci-framework' ), 'value' => '', 'std' => '', 'suffix' => 'px', 'min' => 1, ), array( 'type' => 'penci_number', 'param_name' => 'bq_mar_bottom', 'heading' => __( 'Blockquote margin bottom', 'penci-framework' ), 'value' => '', 'std' => '', 'suffix' => 'px', 'min' => 1, ), array( 'type' => 'penci_number', 'param_name' => 'icon_bq_mar_b', 'heading' => __( 'Icon Blockquote margin bottom', 'penci-framework' ), 'value' => '', 'std' => '', 'suffix' => 'px', 'min' => 1, 'dependency' => array('element' => '_design_style', 'value' => array( 's1' ) ), ), array( 'type' => 'penci_number', 'param_name' => 'avatar_wh', 'heading' => __( 'Avatar width/height', 'penci-framework' ), 'value' => '', 'std' => '', 'suffix' => 'px', 'min' => 1, 'edit_field_class' => 'vc_col-sm-6', ), array( 'type' => 'penci_number', 'param_name' => 'avatar_mar_top', 'heading' => __( 'Avatar margin top', 'penci-framework' ), 'value' => '', 'std' => '', 'suffix' => 'px', 'min' => 1, 'edit_field_class' => 'vc_col-sm-6', ), array( 'type' => 'penci_number', 'param_name' => 'avatar_mar_bottom', 'heading' => __( 'Avatar margin bottom', 'penci-framework' ), 'value' => '', 'std' => '', 'suffix' => 'px', 'min' => 1, 'edit_field_class' => 'vc_col-sm-6', ), array( 'type' => 'penci_number', 'param_name' => 'name_mar_bottom', 'heading' => __( 'Name margin bottom', 'penci-framework' ), 'value' => '', 'std' => '', 'suffix' => 'px', 'min' => 1, 'edit_field_class' => 'vc_col-sm-6', ), // Color array( 'type' => 'colorpicker', 'heading' => esc_html__( 'Blockquote background color', 'penci-framework' ), 'param_name' => 'bq_bg_color', 'group' => $group_color, 'edit_field_class' => 'vc_col-sm-6', ), array( 'type' => 'colorpicker', 'heading' => esc_html__( 'Blockquote border top color', 'penci-framework' ), 'param_name' => 'bq_bo_top_color', 'group' => $group_color, 'edit_field_class' => 'vc_col-sm-6', ), array( 'type' => 'colorpicker', 'heading' => esc_html__( 'Blockquote icon color', 'penci-framework' ), 'param_name' => 'bg_icon_color', 'group' => $group_color, 'edit_field_class' => 'vc_col-sm-6', 'dependency' => array('element' => '_design_style', 'value' => array( 's1' ) ), ), array( 'type' => 'colorpicker', 'heading' => esc_html__( 'Blockquote text color', 'penci-framework' ), 'param_name' => 'bq_text_color', 'group' => $group_color, 'edit_field_class' => 'vc_col-sm-6', ), array( 'type' => 'colorpicker', 'heading' => esc_html__( 'Name color', 'penci-framework' ), 'param_name' => 'name_color', 'group' => $group_color, 'edit_field_class' => 'vc_col-sm-6', ), array( 'type' => 'colorpicker', 'heading' => esc_html__( 'Company color', 'penci-framework' ), 'param_name' => 'company_color', 'group' => $group_color, 'edit_field_class' => 'vc_col-sm-6', ), array( 'type' => 'colorpicker', 'heading' => esc_html__( 'Rating color', 'penci-framework' ), 'param_name' => 'rating_color', 'group' => $group_color, 'edit_field_class' => 'vc_col-sm-6', 'dependency' => array( 'element' => '_design_style', 'value' => array( 's3' ) ), ), ), Penci_Framework_Shortcode_Params::block_option_typo( array( 'prefix' => 'blockquote', 'title' => esc_html__( 'Blockquote settings' ), 'google_fonts' => Penci_Helper_Shortcode::get_font_family( 'roboto' ), 'font-size' => '14px', ) ), Penci_Framework_Shortcode_Params::block_option_typo( array( 'prefix' => 'name', 'title' => esc_html__( 'Name settings' ), 'google_fonts' => Penci_Helper_Shortcode::get_font_family( 'roboto' ), 'font-size' => '14px', ) ), Penci_Framework_Shortcode_Params::block_option_typo( array( 'prefix' => 'company', 'title' => esc_html__( 'Company settings' ), 'google_fonts' => Penci_Helper_Shortcode::get_font_family( 'roboto' ), 'font-size' => '14px', ) ) ), 'js_view' => 'VcPenciShortcodeView', );
|