PluginProbe
Easy Bootstrap Shortcode / 3.7
Easy Bootstrap Shortcode v3.7
trunk 2.4.0 2.5 3.4 3.5 3.6 3.7 4.0.0 4.4 4.5 4.5.4 5.0.0 5.0.1 5.0.2
← All changes | shortcode/functions.php +27 -631 4.53.7 View file →
@@ -1,343 +1,48 @@
1 1 <?php
2 -/*
3 - * Add Bootstrap container class if no bootstrap option chosen in css inclusion
4 - */
2 +
5 3 // Add Shortcode buttons in TinyMCE
6 -$css = get_option( 'EBS_BOOTSTRAP_CSS_LOCATION', 1 );
7 -if($css==3){
8 - define('EBS_CONTAINER_CLASS',' oscitas-bootstrap-container');
9 - define('EBS_POPOVER_TEMPLATE','<div class="popover'.EBS_CONTAINER_CLASS.'"><div class="arrow'.EBS_CONTAINER_CLASS.'"></div><h3 class="popover-title'.EBS_CONTAINER_CLASS.'"></h3><div class="popover-content'.EBS_CONTAINER_CLASS.' "></div></div>');
10 - define('EBS_TOOLTIP_TEMPLATE','<div class="tooltip'.EBS_CONTAINER_CLASS.'"><div class="tooltip-arrow'.EBS_CONTAINER_CLASS.'"></div><div class="tooltip-inner'.EBS_CONTAINER_CLASS.'"></div></div>');
11 -} else{
12 - define('EBS_CONTAINER_CLASS','');
13 - define('EBS_POPOVER_TEMPLATE','');
14 - define('EBS_TOOLTIP_TEMPLATE','');
15 -}
4 +$elements = array(
5 + 'toggles',
6 + 'tabs',
7 + 'lists',
8 + 'deslist',
9 + 'buttons',
10 + 'btngrptool',
11 + 'btngrp',
12 + 'notifications',
13 + 'wpcolumns',
14 + 'tables',
15 + 'tooltip',
16 + 'iconhead',
17 + 'panel',
18 + 'oscpopover',
19 + 'dropdown',
20 + 'labels',
21 + 'well',
22 + 'thumbnail',
23 + 'icon',
24 + 'image',
25 + 'progressbar',
26 +
27 +);
16 28
17 -/*
18 - * EBS shortcode list
19 - */
20 -//$elements = array(
21 -// 'toggles',
22 -// 'animation',
23 -// 'tabs',
24 -// 'lists',
25 -// 'deslist',
26 -// 'buttons',
27 -// 'btngrptool',
28 -// 'btngrp',
29 -// 'notifications',
30 -// 'wpcolumns',
31 -// 'tables',
32 -// 'tooltip',
33 -// 'iconhead',
34 -// 'panel',
35 -// 'oscpopover',
36 -// 'dropdown',
37 -// 'labels',
38 -// 'well',
39 -// 'thumbnail',
40 -// 'icon',
41 -// 'image',
42 -// 'progressbar',
43 -// 'servicebox',
44 -// 'slider',
45 -// 'badge',
46 -//
47 -//);
48 -
49 -$elements = ebs_shortcodes();
50 -
51 -$elements = array_keys($elements);
52 -//print_r($elements);
53 -
54 -
55 -function ebs_groups($grps=array()){
56 - $grps=array('basic'=>array(
57 - 'name'=>'Basic Elements',
58 - 'icon'=>'elements.png'
59 - ),'interactive'=>array('name'=>'Interactive', 'icon'=>'interaction.png'),'content'=>array('name'=>'Content', 'icon'=>'content.png'),
60 - 'miscellaneous'=>array('name'=>'Miscellaneous', 'icon'=>'misc.png'),'columns'=>array('name'=>'Columns', 'icon'=>'column.png')
61 - );
62 - return $grps;
63 -}
64 -function ebs_shortcodes($shortcodes=array())
65 -{
66 - $shortcodes = array(
67 - 'toggles' => array('group' => 'interactive',
68 - 'name' => 'Accordion',
69 - 'width' => 980,
70 - 'height' => '',
71 - ),
72 - 'tabs' => array('group' => 'interactive',
73 - 'name' => 'Tabs',
74 - 'width' => 1170,
75 - 'height' => '',
76 - ),
77 -
78 - 'lists' => array('group' => 'content',
79 - 'name' => 'List',
80 - 'width' => 930,
81 - 'height' => '',
82 - ),
83 - 'buttons' => array('group' => 'basic',
84 - 'name' => 'Button',
85 - 'width' => 930,
86 - 'height' => '',
87 - ),
88 - 'notifications' => array('group' => 'basic',
89 - 'name' => 'Notifications',
90 - 'width' => '',
91 - 'height' => '',
92 - ),
93 - 'wpcolumns' => array('group' => 'columns',
94 - 'name' => 'Columns',
95 - 'width' => 1094,
96 - 'height' => '',
97 - ),
98 - 'tables' => array('group' => 'interactive',
99 - 'name' => 'Tables',
100 - 'width' => '',
101 - 'height' => '',
102 - ),
103 - 'tooltip' => array('group' => 'basic',
104 - 'name' => 'Tooltip',
105 - 'width' => '',
106 - 'height' => '',
107 - ),
108 -
109 - 'iconhead' => array('group' => 'content',
110 - 'name' => 'Icon Heading',
111 - 'width' => 930,
112 - 'height' => '',
113 - ),
114 - 'panel' => array('group' => 'interactive',
115 - 'name' => 'Panel',
116 - 'width' => '',
117 - 'height' => '',
118 - ),
119 - 'oscpopover' => array('group' => 'basic',
120 - 'name' => 'Popover',
121 - 'width' => '',
122 - 'height' => '',
123 - ),
124 - 'oscpopups' => array('group' => 'basic',
125 - 'name' => 'Popups',
126 - 'width' => '',
127 - 'height' => '',
128 - ),
129 - 'dropdown' => array('group' => 'basic',
130 - 'name' => 'Button Dropdown',
131 - 'width' => '',
132 - 'height' => '',
133 - ),
134 - 'labels' => array('group' => 'content',
135 - 'name' => 'Label',
136 - 'width' => '',
137 - 'height' => '',
138 - ),
139 - 'well' => array('group' => 'content',
140 - 'name' => 'Well',
141 - 'width' => '',
142 - 'height' => '',
143 - ),
144 - 'thumbnail' => array('group' => 'miscellaneous',
145 - 'name' => 'Responsive Image',
146 - 'width' => 930,
147 - 'height' => '',
148 - ),
149 - 'icon' => array('group' => 'miscellaneous',
150 - 'name' => 'Icon',
151 - 'width' => 930,
152 - 'height' => '',
153 - ),
154 - 'image' => array('group' => 'miscellaneous',
155 - 'name' => 'Image Effects',
156 - 'width' => 930,
157 - 'height' => '',
158 - ),
159 - 'progressbar' => array('group' => 'basic',
160 - 'name' => 'Progress Bar',
161 - 'width' => 930,
162 - 'height' => '',
163 - ),
164 - 'btngrp' => array('group' => 'basic',
165 - 'name' => 'Button Group',
166 - 'width' => 1200,
167 - 'height' => '',
168 - ),
169 - 'btngrptool' => array('group' => 'basic',
170 - 'name' => 'Button Group Toolbar',
171 - 'width' => '',
172 - 'height' => '',
173 - ),
174 - 'deslist' => array('group' => 'content',
175 - 'name' => 'Description List',
176 - 'width' => '',
177 - 'height' => '',
178 - ),
179 - 'slider' => array('group' => 'interactive',
180 - 'name' => 'Slider',
181 - 'width' => 1100,
182 - 'height' => '',
183 - ),
184 - 'jumbotron' => array('group' => 'content',
185 - 'name' => 'Jumbotron',
186 - 'width' => '',
187 - 'height' => '',
188 - ),
189 - 'badge' => array('group' => 'miscellaneous',
190 - 'name' => 'Badge',
191 - 'width' => '',
192 - 'height' => '',
193 - ),
194 - 'blur' => array('group' => 'miscellaneous',
195 - 'name' => 'Blur',
196 - 'width' => '',
197 - 'height' => '',
198 - ),
199 -
200 -
201 - 'video' => array('group' => 'interactive',
202 - 'name' => 'Video',
203 - 'width' => '',
204 - 'height' => '',
205 - ),
206 - 'gmaps' => array('group' => 'interactive',
207 - 'name' => 'Google Map',
208 - 'width' => '',
209 - 'height' => '',
210 - ),
211 - 'boxesframes' => array('group' => 'miscellaneous',
212 - 'name' => 'Boxframe',
213 - 'width' => 930,
214 - 'height' => '',
215 - ),
216 - 'rule' => array('group' => 'interactive',
217 - 'name' => 'Horizontal Rule',
218 - 'width' => '',
219 - 'height' => '',
220 - ),
221 - 'pricingtable' => array('group' => 'interactive',
222 - 'name' => 'Pricing Table',
223 - 'width' => 1220,
224 - 'height' => '',
225 - ),
226 - 'testimonial' => array('group' => 'basic',
227 - 'name' => 'Testimonial',
228 - 'width' => '',
229 - 'height' => '',
230 - ),
231 - 'sectionhead' => array('group' => 'content',
232 - 'name' => 'Section Heading',
233 - 'width' => '',
234 - 'height' => '',
235 - ),
236 -// 'social' => array('group' => 'social',
237 -// 'name' => 'Social',
238 -// 'width' => 930,
239 -// 'height' => '',
240 -// ),
241 - 'dropcaps' => array('group' => 'content',
242 - 'name' => 'Dropcap',
243 - 'width' => 930,
244 - 'height' => '',
245 - ),
246 - 'separator' => array('group' => 'content',
247 - 'name' => 'Separator',
248 - 'width' => 930,
249 - 'height' => '',
250 - ),
251 - 'lead' => array('group' => 'content',
252 - 'name' => 'Lead',
253 - 'width' => '',
254 - 'height' => '',
255 - ),
256 - 'pageheader' => array('group' => 'content',
257 - 'name' => 'Page Header',
258 - 'width' => 930,
259 - 'height' => '',
260 - ),
261 - 'servicebox' => array('group' => 'content',
262 - 'name' => 'Servicebox',
263 - 'width' => 930,
264 - 'height' => '',
265 - ),
266 - 'highlights' => array('group' => 'content',
267 - 'name' => 'Highlights',
268 - 'width' => '',
269 - 'height' => '',
270 - ),
271 - 'widget' => array('group' => 'miscellaneous',
272 - 'name' => 'Widget',
273 - 'width' => 950,
274 - 'height' => 400,
275 - ),
276 - 'pagination' => array('group' => 'miscellaneous',
277 - 'name' => 'Pagination Shortcode',
278 - 'width' => '',
279 - 'height' => '',
280 - ),
281 - 'carousel' => array('group' => 'interactive',
282 - 'name' => 'Carousel',
283 - 'width' => 930,
284 - 'height' => '',
285 - ),
286 - 'animation' => array('group' => 'miscellaneous',
287 - 'name' => 'Animation Shortcode',
288 - 'width' => 930,
289 - 'height' => '',
290 - ),
291 - 'vertical_space' => array('group' => 'miscellaneous',
292 - 'name' => 'Vertical Space',
293 - 'width' => '',
294 - 'height' => '',
295 - )
296 - );
297 -
298 -
299 - return $shortcodes;
300 -}
301 -
302 -
303 -
304 -/*
305 - * include each shortcode php file
306 - */
307 29 foreach ($elements as $element) {
308 30 include( $element . '/plugin_shortcode.php');
309 31 }
310 32
311 33 add_action('init', 'osc_add_ebs_buttons_to_tinymce');
312 -/*
313 - * Add each shortcode js to tinymce editor and create button for it
314 - */
34 +
315 35 function osc_add_ebs_buttons_to_tinymce() {
316 - $ebsp_editor_opt=get_option('EBS_EDITOR_OPT','icon');
317 36 if (!current_user_can('edit_posts') && !current_user_can('edit_pages'))
318 37 return;
319 38
320 39 if (get_user_option('rich_editing') == 'true') {
321 40 add_filter("mce_external_plugins", "osc_add_ebs_plugin");
322 - if($ebsp_editor_opt=='icon'){
323 - add_filter('mce_buttons_3', 'osc_register_ebs_button',1375.261);
324 - } else{
325 - add_filter('mce_buttons', 'osc_register_ebs_dropdown',1375.261);
326 - }
41 + add_filter('mce_buttons_3', 'osc_register_ebs_button');
327 42 }
328 43 }
329 44
330 -/*
331 - * Create EBS dropdown button
332 - */
333 -function osc_register_ebs_dropdown($buttons){
334 - $buttons[] = 'oscitas_main_dropdown_button';
335 - return $buttons;
336 -}
337 -/*
338 - * Create EBS button for each shortcode
339 - */
340 45 function osc_register_ebs_button($buttons) {
341 46 global $elements;
342 47 foreach ($elements as $element) {
343 48 $buttons[] = 'oscitas' . $element;
@@ -344,320 +49,11 @@
344 49 }
345 50 return $buttons;
346 51 }
347 52
348 -/*
349 - * Include shortcode js
350 - */
351 53 function osc_add_ebs_plugin($plugin_array) {
352 54 global $elements;
353 55 foreach ($elements as $element) {
354 56 $plugin_array['oscitas' . $element] = plugins_url('', __FILE__) . '/' . $element . '/' . $element . '_plugin.js';
355 57 }
356 - $version=floatval(get_bloginfo('version'));
357 - if($version<3.9){
358 - $plugin_array['oscitas_main_dropdown']=EBS_PLUGIN_URL.'js/oscitas_main_dropdown.js';
359 - } else{
360 - $plugin_array['oscitas_main_dropdown']=EBS_PLUGIN_URL.'js/oscitas_dropdown_3_9.js';
361 - }
362 - //print_r($plugin_array);
363 58 return $plugin_array;
364 -
365 59 }
366 -
367 -/*
368 - * Provide shortcode prefix support
369 - */
370 -function ebs_backward_compatibility_callback($shortcode,$callback){
371 -
372 -$val=get_option('EBS_SHORTCODE_PREFIX','');
373 - add_shortcode($val.$shortcode, $callback);
374 -
375 -}
376 -
377 -
378 -add_action( 'admin_enqueue_scripts', 'ebs_js_translation_assets' );
379 -function ebs_js_translation_assets($hook) {
380 - wp_enqueue_script( 'ebs-js-translation-scripts', plugin_dir_url(dirname( __FILE__ )) . '/js/osc-localize.js' );
381 - wp_localize_script( 'ebs-js-translation-scripts', 'ebsjstrans', array(
382 -
383 - 'addnewitem' => __( 'Add New Item', 'easy-bootstrap-shortcodes' ),
384 - 'alignment' => __( 'Alignment', 'easy-bootstrap-shortcodes' ),
385 - 'arrow' => __( 'Arrow', 'easy-bootstrap-shortcodes' ),
386 - 'auto' => __( 'Auto', 'easy-bootstrap-shortcodes' ),
387 - 'animated' => __( 'Animated', 'easy-bootstrap-shortcodes' ),
388 - 'add' => __( 'Add', 'easy-bootstrap-shortcodes' ),
389 - 'active' => __( 'Active', 'easy-bootstrap-shortcodes' ),
390 - 'alternate' => __( 'Alternate', 'easy-bootstrap-shortcodes' ),
391 - 'accordionnumber' => __( 'Accordion Number', 'easy-bootstrap-shortcodes' ),
392 - '' => __( '', 'easy-bootstrap-shortcodes' ),
393 -
394 -
395 -
396 -
397 - 'bgcolor' => __( 'Background Color', 'easy-bootstrap-shortcodes' ),
398 - 'bg' => __( 'Background', 'easy-bootstrap-shortcodes' ),
399 - 'badge' => __( 'Badge', 'easy-bootstrap-shortcodes' ),
400 - 'btngrpftrs' => __( 'Button Group Features', 'easy-bootstrap-shortcodes' ),
401 - 'button' => __( 'Button', 'easy-bootstrap-shortcodes' ),
402 - 'bottom' => __( 'Bottom', 'easy-bootstrap-shortcodes' ),
403 - 'btngrp_items' => __( 'Button Group Items', 'easy-bootstrap-shortcodes' ),
404 - 'bar' => __( 'Bar', 'easy-bootstrap-shortcodes' ),
405 - 'border' => __( 'Border', 'easy-bootstrap-shortcodes' ),
406 - 'bullets' => __( 'Bullets', 'easy-bootstrap-shortcodes' ),
407 - 'bordered' => __( 'Bordered', 'easy-bootstrap-shortcodes' ),
408 - '' => __( '', 'easy-bootstrap-shortcodes' ),
409 -
410 -
411 -
412 -
413 - 'customclass' => __( 'Custom Class', 'easy-bootstrap-shortcodes' ),
414 - 'color' => __( 'Color', 'easy-bootstrap-shortcodes' ),
415 - 'content' => __( 'Content', 'easy-bootstrap-shortcodes' ),
416 - 'close' => __( 'Close', 'easy-bootstrap-shortcodes' ),
417 - 'circle' => __( 'Circle', 'easy-bootstrap-shortcodes' ),
418 - 'check' => __( 'Check', 'easy-bootstrap-shortcodes' ),
419 - 'click' => __( 'Click', 'easy-bootstrap-shortcodes' ),
420 - 'custom' => __( 'Custom', 'easy-bootstrap-shortcodes' ),
421 - 'controls' => __( 'Controls', 'easy-bootstrap-shortcodes' ),
422 - 'cyclic' => __( 'Cyclic', 'easy-bootstrap-shortcodes' ),
423 - 'caption' => __( 'Caption', 'easy-bootstrap-shortcodes' ),
424 - 'columns' => __( 'Columns', 'easy-bootstrap-shortcodes' ),
425 - 'column' => __( 'Column', 'easy-bootstrap-shortcodes' ),
426 - 'clear' => __( 'Clear', 'easy-bootstrap-shortcodes' ),
427 - '' => __( '', 'easy-bootstrap-shortcodes' ),
428 -
429 -
430 -
431 -
432 -
433 - 'default' => __( 'Default', 'easy-bootstrap-shortcodes' ),
434 - 'danger' => __( 'Danger', 'easy-bootstrap-shortcodes' ),
435 - 'description' => __( 'Description', 'easy-bootstrap-shortcodes' ),
436 - 'dropdown' => __( 'Drop Down', 'easy-bootstrap-shortcodes' ),
437 - 'dropup' => __( 'Drop Up', 'easy-bootstrap-shortcodes' ),
438 - 'dotted' => __( 'Dotted', 'easy-bootstrap-shortcodes' ),
439 - 'dashed' => __( 'Dashed', 'easy-bootstrap-shortcodes' ),
440 - 'double' => __( 'Double', 'easy-bootstrap-shortcodes' ),
441 - 'diagonal' => __( 'Diagonal', 'easy-bootstrap-shortcodes' ),
442 - 'doublethickthin' => __( 'Double Thick Thin', 'easy-bootstrap-shortcodes' ),
443 - 'doublefadecorner' => __( 'Double Fade Corner', 'easy-bootstrap-shortcodes' ),
444 - 'division' => __( 'Division', 'easy-bootstrap-shortcodes' ),
445 - '' => __( '', 'easy-bootstrap-shortcodes' ),
446 -
447 -
448 -
449 -
450 -
451 - 'exsmall' => __( 'Ex-small', 'easy-bootstrap-shortcodes' ),
452 - 'enternumval' => __( 'Enter a numeric value', 'easy-bootstrap-shortcodes' ),
453 - 'effect' => __( 'Effect', 'easy-bootstrap-shortcodes' ),
454 - '' => __( '', 'easy-bootstrap-shortcodes' ),
455 -
456 -
457 -
458 -
459 -
460 - 'floatright' => __( 'Float Right', 'easy-bootstrap-shortcodes' ),
461 - 'features' => __( 'Features', 'easy-bootstrap-shortcodes' ),
462 - 'font' => __( 'Font', 'easy-bootstrap-shortcodes' ),
463 - 'footer' => __( 'Footer', 'easy-bootstrap-shortcodes' ),
464 - 'fadecorner' => __( 'Fade Corner', 'easy-bootstrap-shortcodes' ),
465 - 'foreground' => __( 'Foreground', 'easy-bootstrap-shortcodes' ),
466 - 'for' => __( 'For', 'easy-bootstrap-shortcodes' ),
467 - 'four' => __( 'Four', 'easy-bootstrap-shortcodes' ),
468 - 'five' => __( 'Five', 'easy-bootstrap-shortcodes' ),
469 - '' => __( '', 'easy-bootstrap-shortcodes' ),
470 -
471 -
472 -
473 -
474 -
475 - 'grp' => __( 'Group', 'easy-bootstrap-shortcodes' ),
476 - 'goes' => __( 'Goes', 'easy-bootstrap-shortcodes' ),
477 - '' => __( '', 'easy-bootstrap-shortcodes' ),
478 -
479 -
480 -
481 -
482 -
483 - 'horizontal' => __( 'Horizontal', 'easy-bootstrap-shortcodes' ),
484 - 'heading' => __( 'Heading', 'easy-bootstrap-shortcodes' ),
485 - 'hover' => __( 'Hover', 'easy-bootstrap-shortcodes' ),
486 - 'here' => __( 'Here', 'easy-bootstrap-shortcodes' ),
487 - 'hide' => __( 'Hide', 'easy-bootstrap-shortcodes' ),
488 - '' => __( '', 'easy-bootstrap-shortcodes' ),
489 -
490 -
491 -
492 -
493 - 'insert' => __( 'Insert', 'easy-bootstrap-shortcodes' ),
494 - 'information' => __( 'Information', 'easy-bootstrap-shortcodes' ),
495 - 'icon' => __( 'Icon', 'easy-bootstrap-shortcodes' ),
496 - 'item' => __( 'Item', 'easy-bootstrap-shortcodes' ),
497 - 'image' => __( 'Image', 'easy-bootstrap-shortcodes' ),
498 - 'include' => __( 'Include', 'easy-bootstrap-shortcodes' ),
499 - 'interval' => __( 'Interval', 'easy-bootstrap-shortcodes' ),
500 - '' => __( '', 'easy-bootstrap-shortcodes' ),
501 -
502 -
503 -
504 -
505 -
506 - 'justified' => __( 'Justified', 'easy-bootstrap-shortcodes' ),
507 - 'jumbotron' => __( 'Jumbotron', 'easy-bootstrap-shortcodes' ),
508 - '' => __( '', 'easy-bootstrap-shortcodes' ),
509 -
510 -
511 -
512 -
513 -
514 - 'large' => __( 'Large', 'easy-bootstrap-shortcodes' ),
515 - 'link' => __( 'Link', 'easy-bootstrap-shortcodes' ),
516 - 'left' => __( 'Left', 'easy-bootstrap-shortcodes' ),
517 - 'list' => __( 'List', 'easy-bootstrap-shortcodes' ),
518 - 'label' => __( 'Label', 'easy-bootstrap-shortcodes' ),
519 - '' => __( '', 'easy-bootstrap-shortcodes' ),
520 -
521 -
522 -
523 -
524 -
525 - 'makeblock' => __( 'Make block', 'easy-bootstrap-shortcodes' ),
526 - 'minus' => __( 'Minus', 'easy-bootstrap-shortcodes' ),
527 - 'margin' => __( 'Margin', 'easy-bootstrap-shortcodes' ),
528 - 'more' => __( 'More', 'easy-bootstrap-shortcodes' ),
529 - 'me' => __( 'Me', 'easy-bootstrap-shortcodes' ),
530 - 'medium' => __( 'Medium', 'easy-bootstrap-shortcodes' ),
531 - '' => __( '', 'easy-bootstrap-shortcodes' ),
532 -
533 -
534 -
535 -
536 -
537 - 'newwindow' => __( 'Open in New Window', 'easy-bootstrap-shortcodes' ),
538 - 'newtarget' => __( 'Open in new window', 'easy-bootstrap-shortcodes' ),
539 - 'noof' => __( 'No of', 'easy-bootstrap-shortcodes' ),
540 - 'notification' => __( 'Notification', 'easy-bootstrap-shortcodes' ),
541 - 'navigation' => __( 'Navigation', 'easy-bootstrap-shortcodes' ),
542 - 'new' => __( 'New', 'easy-bootstrap-shortcodes' ),
543 - '' => __( '', 'easy-bootstrap-shortcodes' ),
544 -
545 -
546 -
547 -
548 - 'option' => __( 'Option', 'easy-bootstrap-shortcodes' ),
549 - 'on' => __( 'On', 'easy-bootstrap-shortcodes' ),
550 - 'offset' => __( 'Offset', 'easy-bootstrap-shortcodes' ),
551 - 'one' => __( 'One', 'easy-bootstrap-shortcodes' ),
552 - '' => __( '', 'easy-bootstrap-shortcodes' ),
553 -
554 -
555 -
556 -
557 - 'primary' => __( 'Primary', 'easy-bootstrap-shortcodes' ),
558 - 'plus' => __( 'Plus', 'easy-bootstrap-shortcodes' ),
559 - 'popover' => __( 'Popover', 'easy-bootstrap-shortcodes' ),
560 - 'panel' => __( 'Panel', 'easy-bootstrap-shortcodes' ),
561 - 'progress' => __( 'Progress', 'easy-bootstrap-shortcodes' ),
562 - 'pause' => __( 'Pause', 'easy-bootstrap-shortcodes' ),
563 - '' => __( '', 'easy-bootstrap-shortcodes' ),
564 -
565 -
566 -
567 -
568 - 'rel' => __( 'Rel', 'easy-bootstrap-shortcodes' ),
569 - 'right' => __( 'Right', 'easy-bootstrap-shortcodes' ),
570 - 'rounded' => __( 'Rounded', 'easy-bootstrap-shortcodes' ),
571 - 'rule' => __( 'Rule', 'easy-bootstrap-shortcodes' ),
572 - 'radius' => __( 'Radius', 'easy-bootstrap-shortcodes' ),
573 - 'read' => __( 'Read', 'easy-bootstrap-shortcodes' ),
574 - 'rows' => __( 'Rows', 'easy-bootstrap-shortcodes' ),
575 - 'row' => __( 'Row', 'easy-bootstrap-shortcodes' ),
576 - 'responsive' => __( 'Responsive', 'easy-bootstrap-shortcodes' ),
577 - '' => __( '', 'easy-bootstrap-shortcodes' ),
578 -
579 -
580 -
581 -
582 - 'size' => __( 'Size', 'easy-bootstrap-shortcodes' ),
583 - 'style' => __( 'Style', 'easy-bootstrap-shortcodes' ),
584 - 'small' => __( 'Small', 'easy-bootstrap-shortcodes' ),
585 - 'simple' => __( 'Simple', 'easy-bootstrap-shortcodes' ),
586 - 'success' => __( 'Success', 'easy-bootstrap-shortcodes' ),
587 - 'select' => __( 'Select', 'easy-bootstrap-shortcodes' ),
588 - 'split' => __( 'Split', 'easy-bootstrap-shortcodes' ),
589 - 'shape' => __( 'Shape', 'easy-bootstrap-shortcodes' ),
590 - 'show' => __( 'Show', 'easy-bootstrap-shortcodes' ),
591 - 'stripped' => __( 'Stripped', 'easy-bootstrap-shortcodes' ),
592 - 'striped' => __( 'Striped', 'easy-bootstrap-shortcodes' ),
593 - 'shadow' => __( 'Shadow', 'easy-bootstrap-shortcodes' ),
594 - 'servicebox' => __( 'Service Box', 'easy-bootstrap-shortcodes' ),
595 - 'slider' => __( 'Slider', 'easy-bootstrap-shortcodes' ),
596 - 'slides' => __( 'Slides', 'easy-bootstrap-shortcodes' ),
597 - 'self' => __( 'Self', 'easy-bootstrap-shortcodes' ),
598 - 'screen' => __( 'Screen', 'easy-bootstrap-shortcodes' ),
599 - 'specification' => __( 'Specification', 'easy-bootstrap-shortcodes' ),
600 - '' => __( '', 'easy-bootstrap-shortcodes' ),
601 -
602 -
603 -
604 - 'type' => __( 'Type', 'easy-bootstrap-shortcodes' ),
605 - 'title' => __( 'Title', 'easy-bootstrap-shortcodes' ),
606 - 'text' => __( 'Text', 'easy-bootstrap-shortcodes' ),
607 - 'thumbnail' => __( 'Thumbnail', 'easy-bootstrap-shortcodes' ),
608 - 'top' => __( 'Top', 'easy-bootstrap-shortcodes' ),
609 - 'trigger' => __( 'Trigger', 'easy-bootstrap-shortcodes' ),
610 - 'thick' => __( 'Thick', 'easy-bootstrap-shortcodes' ),
611 - 'thin' => __( 'Thin', 'easy-bootstrap-shortcodes' ),
612 - 'table' => __( 'Table', 'easy-bootstrap-shortcodes' ),
613 - 'tabnum' => __( 'Tab number', 'easy-bootstrap-shortcodes' ),
614 - 'tab' => __( 'Tab', 'easy-bootstrap-shortcodes' ),
615 - 'target' => __( 'Target', 'easy-bootstrap-shortcodes' ),
616 - 'toggle' => __( 'Toggle', 'easy-bootstrap-shortcodes' ),
617 - 'tooltip' => __( 'Tooltip', 'easy-bootstrap-shortcodes' ),
618 - 'two' => __( 'Two', 'easy-bootstrap-shortcodes' ),
619 - 'three' => __( 'Three', 'easy-bootstrap-shortcodes' ),
620 - 'toggle' => __( 'Toggle', 'easy-bootstrap-shortcodes' ),
621 - '' => __( '', 'easy-bootstrap-shortcodes' ),
622 -
623 -
624 - 'upload' => __( 'Upload', 'easy-bootstrap-shortcodes' ),
625 - '' => __( '', 'easy-bootstrap-shortcodes' ),
626 -
627 -
628 -
629 - 'vertical' => __( 'Vertical', 'easy-bootstrap-shortcodes' ),
630 - 'value' => __( 'Value', 'easy-bootstrap-shortcodes' ),
631 - '' => __( '', 'easy-bootstrap-shortcodes' ),
632 -
633 - 'warning' => __( 'Warning', 'easy-bootstrap-shortcodes' ),
634 - 'wave' => __( 'Wave', 'easy-bootstrap-shortcodes' ),
635 - 'width' => __( 'Width', 'easy-bootstrap-shortcodes' ),
636 - 'well' => __( 'Well', 'easy-bootstrap-shortcodes' ),
637 - '' => __( '', 'easy-bootstrap-shortcodes' ),
638 -
639 -
640 - 'xsmall' => __( 'X-small', 'easy-bootstrap-shortcodes' ),
641 - '' => __( '', 'easy-bootstrap-shortcodes' ),
642 - '' => __( '', 'easy-bootstrap-shortcodes' ),
643 -
644 -
645 -
646 - 'your' => __( 'Your', 'easy-bootstrap-shortcodes' ),
647 -
648 - '' => __( '', 'easy-bootstrap-shortcodes' ),
649 - '' => __( '', 'easy-bootstrap-shortcodes' ),
650 - '' => __( '', 'easy-bootstrap-shortcodes' ),
651 -
652 -
653 - 'enterval0to100' => __( 'Enter a numeric value between 0 to 100, Default value is 50', 'easy-bootstrap-shortcodes' ),
654 - 'enternumvaleg20' => __( 'Enter a numeric value Ex. 20', 'easy-bootstrap-shortcodes' ),
655 - 'cantchange' => __( "Can't Change, exceeds the limit", 'easy-bootstrap-shortcodes' ),
656 - 'youcanselect' => __( 'You can select different column style for different screens such as medium, small(e.g < 992px), x-small(e.g < 768px)', 'easy-bootstrap-shortcodes' ),
657 - '' => __( '', 'easy-bootstrap-shortcodes' ),
658 -
659 -
660 - ));
661 -
662 - // '+ebsjstrans.+'
663 -}