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