table_settings_block.inc.php
64.1 KB
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
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
<?php defined('ABSPATH') or die('Access denied.'); ?>
<?php
/**
* Template for Table Settings widget
* @author Alexander Gilmanov
* @since 13.10.2016
*/
?>
<div class="card wdt-table-settings">
<!-- Preloader -->
<?php include WDT_TEMPLATE_PATH . 'admin/common/preloader.inc.php'; ?>
<!-- /Preloader -->
<div class="card-header wdt-admin-card-header ch-alt ">
<img id="wpdt-inline-logo" style="width: 60px;height: 50px;"
src="<?php echo WDT_ROOT_URL; ?>assets/img/logo-large.png"/>
<h2 class="pull-left">
<div class="fg-line wdt-table-name">
<input type="text" class="form-control input-sm" value="New wpDataTable" id="wdt-table-title-edit">
<i class="zmdi zmdi-edit"></i>
</div>
<small class="m-t-5"><?php _e('wpDataTable name, click to edit', 'wpdatatables'); ?></small>
</h2>
<button class="btn btn-primary bgm-gray hidden wdt-copy-shortcode" id="wdt-table-id" data-toggle="tooltip"
data-placement="top"
title="<?php _e('Click to copy shortcode', 'wpdatatables'); ?>">[wpdatatable id=23]
</button>
<div class="clear"></div>
<ul class="actions p-t-5">
<li>
<button class="btn bgm-gray btn-icon btn-lg waves-effect waves-circle waves-float wdt-collapse-table-settings <?php if (isset($_GET['collapsed'])) { ?>collapsed <?php } else { ?>expanded <?php } ?>"
title="<?php _e('Collapse and expand widget', 'wpdatatables'); ?>" data-toggle="tooltip">
<i class="zmdi zmdi-chevron-<?php if (isset($_GET['collapsed'])) { ?>down <?php } else { ?>up <?php } ?>"></i>
</button>
</li>
<li>
<button class="btn bgm-red btn-icon btn-lg waves-effect waves-circle waves-float wdt-backend-close"
title="<?php _e('Cancel', 'wpdatatables'); ?>" data-toggle="tooltip">
<i class="zmdi zmdi-close"></i>
</button>
</li>
<li>
<button disabled="disabled"
class="btn bgm-green btn-icon btn-lg waves-effect waves-circle waves-float wdt-apply"
title="<?php _e('Save', 'wpdatatables'); ?>" data-toggle="tooltip">
<i class="zmdi zmdi-check"></i>
</button>
</li>
</ul>
</div>
<!-- /.card-header -->
<div class="card-body card-padding" <?php if (isset($_GET['collapsed'])) { ?> style="display: none" <?php } ?>>
<div role="tabpanel">
<ul class="tab-nav" role="tablist">
<li class="active main-table-settings-tab">
<a href="#main-table-settings" aria-controls="main-table-settings" role="tab"
data-toggle="tab"><?php _e('Data source', 'wpdatatables'); ?></a>
</li>
<li class="display-settings-tab hidden">
<a href="#display-settings" aria-controls="display-settings" role="tab"
data-toggle="tab"><?php _e('Display', 'wpdatatables'); ?></a>
</li>
<li class="table-sorting-filtering-settings-tab hidden">
<a href="#table-sorting-filtering-settings" aria-controls="table-sorting-filtering-settings"
role="tab" data-toggle="tab"><?php _e('Sorting and filtering', 'wpdatatables'); ?></a>
</li>
<li class="editing-settings-tab hidden">
<a href="#editing-settings" aria-controls="editing-settings" role="tab"
data-toggle="tab"><?php _e('Editing', 'wpdatatables'); ?></a>
</li>
<li class="table-tools-settings-tab hidden">
<a href="#table-tools-settings" aria-controls="table-tools-settings" role="tab"
data-toggle="tab"><?php _e('Table Tools', 'wpdatatables'); ?></a>
</li>
<li class="placeholders-settings-tab hidden">
<a href="#placeholders-settings" aria-controls="placeholders-settings" role="tab"
data-toggle="tab"><?php _e('Placeholders', 'wpdatatables'); ?></a>
</li>
<?php do_action('wdt_add_table_configuration_tab'); ?>
</ul>
<!-- /ul .tab-nav -->
<div class="tab-content">
<!-- Main table settings -->
<div role="tabpanel" class="tab-pane active" id="main-table-settings">
<div class="row">
<div class="col-sm-6 wdt-input-data-source-type">
<h4 class="c-black m-b-20">
<?php _e('Input data source type', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('Please choose a type of the input data source - it can be a MySQL query, a file, or an URL. Only MySQL query-based tables can use server-side processing', 'wpdatatables'); ?>"></i>
</h4>
<!-- input source type selection -->
<div class="form-group">
<div class="fg-line">
<div class="select">
<select class="selectpicker" id="wdt-table-type">
<option value=""><?php _e('Select a data source type', 'wpdatatables'); ?></option>
<option value="mysql"><?php _e('MySQL query', 'wpdatatables'); ?></option>
<option value="csv"><?php _e('CSV file', 'wpdatatables'); ?></option>
<option value="xls"><?php _e('Excel file', 'wpdatatables'); ?></option>
<option value="google_spreadsheet"><?php _e('Google Spreadsheet', 'wpdatatables'); ?></option>
<option value="xml"><?php _e('XML file', 'wpdatatables'); ?></option>
<option value="json"><?php _e('JSON file', 'wpdatatables'); ?></option>
<option value="serialized"><?php _e('Serialized PHP array', 'wpdatatables'); ?></option>
<?php do_action('wdt_add_table_type_option'); ?>
</select>
</div>
</div>
</div>
<!-- /input source type selection -->
</div>
<div class="col-sm-6 input-path-block hidden">
<h4 class="c-black m-b-20">
<?php _e('Input file path or URL', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('Upload your file or provide the full URL here. For CSV or Excel input sources only URLs or paths from same domain are supported. For Google Spreadsheets: please do not forget to publish the spreadsheet before pasting the URL.', 'wpdatatables'); ?>"></i>
</h4>
<!-- input URL or path -->
<div class="form-group">
<div class="fg-line col-sm-9 p-0">
<input type="text" id="wdt-input-url" class="form-control input-sm"
placeholder="<?php _e('Paste URL or path, or click Browse to choose', 'wpdatatables'); ?>">
</div>
<div class="col-sm-3">
<button class="btn bgm-blue waves-effect" id="wdt-browse-button">
<?php _e('Browse...', 'wpdatatables'); ?>
</button>
</div>
</div>
<!-- /input URL or path -->
</div>
<?php do_action('wdt_add_data_source_elements'); ?>
<div class="col-sm-6 hidden wdt-server-side-processing">
<!-- Server side processing toggle -->
<h4 class="c-black m-b-20">
<?php _e('Server-side processing', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('If it is turned on, all sorting, filtering, pagination and other data interaction will be done by MySQL server. This feature is recommended if you have more than 2000-3000 rows. Mandatory for editable tables.', 'wpdatatables'); ?>"></i>
</h4>
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-server-side"
class="ts-label"><?php _e('Enable server-side processing', 'wpdatatables'); ?></label>
<input id="wdt-server-side" class="wdt-server-side" type="checkbox" hidden="hidden" checked="checked">
<label for="wdt-server-side" class="ts-helper"></label>
</div>
<!-- /Server side processing toggle -->
</div>
</div>
<!-- /.row -->
<div class="row">
<div class="col-sm-6 hidden mysql-settings-block">
<h4 class="c-black m-b-20">
<?php _e('MySQL Query', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('Enter the text of your MySQL query here - please make sure it returns actual data first. You can use a number of placeholders to make the dataset in the table flexible and be able to return different sets of data by calling it with different shortcodes.', 'wpdatatables'); ?>"></i>
</h4>
<pre id="wdt-mysql-query" style="width: 100%; height: 250px"></pre>
</div>
<div class="col-sm-6 hidden wdt-auto-refresh">
<h4 class="c-black m-b-20 m-t-20">
<?php _e('Auto-refresh', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('If you enter a non-zero value, table will auto-refresh to show actual data with a given interval of seconds. Leave zero or empty not to use auto-refresh.', 'wpdatatables'); ?>"></i>
</h4>
<div class="fg-line">
<input type="number" class="form-control"
placeholder="<?php _e('Auto-refresh interval in seconds (zero or blank to disable)', 'wpdatatables'); ?>"
id="wdt-auto-refresh">
</div>
</div>
</div>
<!-- /.row -->
</div>
<!-- /Main table settings -->
<!-- Table display settings -->
<div role="tabpanel" class="tab-pane fade" id="display-settings">
<div class="row">
<div class="col-sm-4 m-b-20">
<h4 class="c-black m-b-20">
<?php _e('Table title', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-popover-content="#table-title-hint"
data-toggle="html-popover" data-trigger="hover" data-placement="right"></i>
</h4>
<!-- Hidden popover with image hint -->
<div class="hidden" id="table-title-hint">
<div class="popover-heading">
<?php _e('Show table title', 'wpdatatables'); ?>
</div>
<div class="popover-body">
<div class="thumbnail">
<img src="<?php echo WDT_ASSETS_PATH ?>img/hint-pictures/table_title.png"/>
</div>
<?php _e('Enable this to show the table title in a h3 block above the table, disable to hide.', 'wpdatatables'); ?>
</div>
</div>
<!-- /Hidden popover with image hint -->
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-show-title"
class="ts-label"><?php _e('Show table title on the page', 'wpdatatables'); ?></label>
<input id="wdt-show-title" type="checkbox" hidden="hidden" checked="checked">
<label for="wdt-show-title" class="ts-helper"></label>
</div>
</div>
<div class="col-sm-4 m-b-20 wdt-responsive-block">
<h4 class="c-black m-b-20">
<?php _e('Responsiveness', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-popover-content="#table-responsive-hint"
data-toggle="html-popover" data-trigger="hover" data-placement="right"></i>
</h4>
<!-- Hidden popover with image hint -->
<div class="hidden" id="table-responsive-hint">
<div class="popover-heading">
<?php _e('Responsive design', 'wpdatatables'); ?>
</div>
<div class="popover-body">
<div class="thumbnail">
<img src="<?php echo WDT_ASSETS_PATH ?>img/hint-pictures/responsive.png"/>
</div>
<?php _e('Enable this to allow responsiveness in the table.', 'wpdatatables'); ?>
<strong><?php _e('Please do not forget to define which columns will be hidden on mobiles and tablets in the column settings!', 'wpdatatables'); ?></strong>
</div>
</div>
<!-- /Hidden popover with image hint -->
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-responsive"
class="ts-label"><?php _e('Allow collapsing on mobiles and tablets', 'wpdatatables'); ?></label>
<input id="wdt-responsive" type="checkbox" hidden="hidden" checked="checked">
<label for="wdt-responsive" class="ts-helper"></label>
</div>
</div>
<div class="col-sm-4 m-b-20 wdt-hide-until-load-block">
<h4 class="c-black m-b-20">
<?php _e('Hide until loaded', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('Enable to make whole table hidden until it is initialized to prevent unformatted data flashing', 'wpdatatables'); ?>"></i>
</h4>
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-hide-until-loaded"
class="ts-label"><?php _e('Hide the table before it is fully loaded', 'wpdatatables'); ?></label>
<input id="wdt-hide-until-loaded" type="checkbox" hidden="hidden" checked="checked">
<label for="wdt-hide-until-loaded" class="ts-helper"></label>
</div>
</div>
</div>
<!-- /.row -->
<div class="row">
<div class="col-sm-4 wdt-default-rows-per-page">
<h4 class="c-black m-b-20">
<?php _e('Default rows per page', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-popover-content="#rows-per-page-hint"
data-toggle="html-popover" data-trigger="hover" data-placement="right"></i>
</h4>
<!-- Hidden popover with image hint -->
<div class="hidden" id="rows-per-page-hint">
<div class="popover-heading">
<?php _e('Rows per page', 'wpdatatables'); ?>
</div>
<div class="popover-body">
<div class="thumbnail">
<img src="<?php echo WDT_ASSETS_PATH ?>img/hint-pictures/rows_per_page.png"/>
</div>
<?php _e('How many rows to show per page by default.', 'wpdatatables'); ?>
</div>
</div>
<!-- /Hidden popover with image hint -->
<!-- Rows per page selection -->
<div class="form-group">
<div class="fg-line">
<div class="select">
<select class="form-control selectpicker" id="wdt-rows-per-page">
<option value="1">1</option>
<option value="5">5</option>
<option value="10">10</option>
<option value="25">25</option>
<option value="50">50</option>
<option value="100">100</option>
<option value="-1"><?php _e('All', 'wpdatatables'); ?></option>
</select>
</div>
</div>
</div>
<!-- /rows per page selection -->
</div>
<div class="col-sm-4 m-b-20 wdt-rows-per-page-block">
<h4 class="c-black m-b-20">
<?php _e('Rows per page', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-popover-content="#show-rows-per-page-hint"
data-toggle="html-popover" data-trigger="hover" data-placement="right"></i>
</h4>
<!-- Hidden popover with image hint -->
<div class="hidden" id="show-rows-per-page-hint">
<div class="popover-heading">
<?php _e('Show X entries', 'wpdatatables'); ?>
</div>
<div class="popover-body">
<div class="thumbnail">
<img src="<?php echo WDT_ASSETS_PATH ?>img/hint-pictures/rows_per_page.png"/>
</div>
<?php _e('Enable/disable this to show/hide "Show X entries" per page dropdown on the frontend.', 'wpdatatables'); ?>
</div>
</div>
<!-- /Hidden popover with image hint -->
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-show-rows-per-page"
class="ts-label"><?php _e('Show "Show X entries" dropdown', 'wpdatatables'); ?></label>
<input id="wdt-show-rows-per-page" type="checkbox" hidden="hidden" checked="checked">
<label for="wdt-show-rows-per-page" class="ts-helper"></label>
</div>
</div>
<div class="col-sm-4 m-b-20 wdt-scrollable-block">
<h4 class="c-black m-b-20">
<?php _e('Scrollable', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-popover-content="#scrollable-hint"
data-toggle="html-popover" data-trigger="hover" data-placement="right"></i>
</h4>
<!-- Hidden popover with image hint -->
<div class="hidden" id="scrollable-hint">
<div class="popover-heading">
<?php _e('Scrollable table', 'wpdatatables'); ?>
</div>
<div class="popover-body">
<div class="thumbnail">
<img src="<?php echo WDT_ASSETS_PATH ?>img/hint-pictures/scrollable.png"/>
</div>
<?php _e('Enable this to enable a horizontal scrollbar below the table.', 'wpdatatables'); ?>
<strong><?php _e('This should be turned off if you want to set columns width manually.', 'wpdatatables'); ?></strong>
</div>
</div>
<!-- /Hidden popover with image hint -->
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-scrollable"
class="ts-label"><?php _e('Show a horizontal scrollbar', 'wpdatatables'); ?></label>
<input id="wdt-scrollable" type="checkbox" hidden="hidden">
<label for="wdt-scrollable" class="ts-helper"></label>
</div>
</div>
</div>
<!-- /.row -->
<div class="row">
<div class="col-sm-4 m-b-20">
<h4 class="c-black m-b-20">
<?php _e('Info block', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-popover-content="#info-block-hint"
data-toggle="html-popover" data-trigger="hover" data-placement="right"></i>
</h4>
<!-- Hidden popover with image hint -->
<div class="hidden" id="info-block-hint">
<div class="popover-heading">
<?php _e('Info block', 'wpdatatables'); ?>
</div>
<div class="popover-body">
<div class="thumbnail">
<img src="<?php echo WDT_ASSETS_PATH ?>img/hint-pictures/info_block.png"/>
</div>
<?php _e('Enable to show a block of information about the number of records below the table.', 'wpdatatables'); ?>
</div>
</div>
<!-- /Hidden popover with image hint -->
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-info-block"
class="ts-label"><?php _e('Show information block below the table', 'wpdatatables'); ?></label>
<input id="wdt-info-block" type="checkbox" hidden="hidden" checked="checked">
<label for="wdt-info-block" class="ts-helper"></label>
</div>
</div>
<div class="col-sm-4 m-b-20 limit-table-width-settings-block">
<h4 class="c-black m-b-20">
<?php _e('Limit table width', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-popover-content="#limit-width-hint"
data-toggle="html-popover" data-trigger="hover" data-placement="right"></i>
</h4>
<!-- Hidden popover with image hint -->
<div class="hidden" id="limit-width-hint">
<div class="popover-heading">
<?php _e('Limit table width', 'wpdatatables'); ?>
</div>
<div class="popover-body">
<div class="thumbnail">
<img src="<?php echo WDT_ASSETS_PATH ?>img/hint-pictures/limit_width.png"/>
</div>
<?php _e('Enable this to restrict table width to page width.', 'wpdatatables'); ?>
<strong><?php _e('This should be turned on if you want to set columns width manually. Should be on to use word wrapping.', 'wpdatatables'); ?></strong>
</div>
</div>
<!-- /Hidden popover with image hint -->
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-limit-layout"
class="ts-label"><?php _e('Limit table width to page width', 'wpdatatables'); ?></label>
<input id="wdt-limit-layout" type="checkbox" hidden="hidden">
<label for="wdt-limit-layout" class="ts-helper"></label>
</div>
</div>
<div class="col-sm-4 m-b-20 word-wrap-settings-block hidden">
<h4 class="c-black m-b-20">
<?php _e('Word wrap', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-popover-content="#word-wrap-hint"
data-toggle="html-popover" data-trigger="hover" data-placement="right"></i>
</h4>
<!-- Hidden popover with image hint -->
<div class="hidden" id="word-wrap-hint">
<div class="popover-heading">
<?php _e('Word wrap', 'wpdatatables'); ?>
</div>
<div class="popover-body">
<div class="thumbnail">
<img src="<?php echo WDT_ASSETS_PATH ?>img/hint-pictures/word_wrap.png"/>
</div>
<?php _e('Enable this to wrap long strings into multiple lines and stretch the cells height.', 'wpdatatables'); ?>
</div>
</div>
<!-- /Hidden popover with image hint -->
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-word-wrap"
class="ts-label"><?php _e('Wrap words to newlines', 'wpdatatables'); ?></label>
<input id="wdt-word-wrap" type="checkbox" hidden="hidden">
<label for="wdt-word-wrap" class="ts-helper"></label>
</div>
</div>
</div>
<!-- /.row -->
</div>
<!-- /Table display settings -->
<!-- Table sorting and filtering settings -->
<div role="tabpanel" class="tab-pane fade" id="table-sorting-filtering-settings">
<!-- .row -->
<div class="row">
<div class="col-sm-4 m-b-20">
<h4 class="c-black m-b-20">
<?php _e('Advanced column filters', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-popover-content="#advanced-filter-hint"
data-toggle="html-popover" data-trigger="hover" data-placement="right"></i>
</h4>
<!-- Hidden popover with image hint -->
<div class="hidden" id="advanced-filter-hint">
<div class="popover-heading">
<?php _e('Advanced filter', 'wpdatatables'); ?>
</div>
<div class="popover-body">
<div class="thumbnail">
<img src="<?php echo WDT_ASSETS_PATH ?>img/hint-pictures/advanced_filter.png"/>
</div>
<?php _e('Enable to show an advanced filter for each of the columns, filters can be shown in table footer, header or in a separate form.', 'wpdatatables'); ?>
</div>
</div>
<!-- /Hidden popover with image hint -->
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-advanced-filter"
class="ts-label"><?php _e('Enable advanced column filters', 'wpdatatables'); ?></label>
<input id="wdt-advanced-filter" type="checkbox" hidden="hidden" checked="checked">
<label for="wdt-advanced-filter" class="ts-helper"></label>
</div>
</div>
<div class="col-sm-4 m-b-20">
<h4 class="c-black m-b-20">
<?php _e('Sorting', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-popover-content="#sorting-hint"
data-toggle="html-popover" data-trigger="hover" data-placement="right"></i>
</h4>
<!-- Hidden popover with image hint -->
<div class="hidden" id="sorting-hint">
<div class="popover-heading">
<?php _e('Sorting', 'wpdatatables'); ?>
</div>
<div class="popover-body">
<div class="thumbnail">
<img src="<?php echo WDT_ASSETS_PATH ?>img/hint-pictures/sorting.png"/>
</div>
<?php _e('If this is enabled, each column header will be clickable; clicking will sort the whole table by the content of this column cells ascending or descending.', 'wpdatatables'); ?>
</div>
</div>
<!-- /Hidden popover with image hint -->
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-global-sorting"
class="ts-label"><?php _e('Allow sorting for the table', 'wpdatatables'); ?></label>
<input id="wdt-global-sorting" type="checkbox" hidden="hidden" checked="checked">
<label for="wdt-global-sorting" class="ts-helper"></label>
</div>
</div>
<div class="col-sm-4 m-b-20">
<h4 class="c-black m-b-20">
<?php _e('Main search block', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-popover-content="#global-search-hint"
data-toggle="html-popover" data-trigger="hover" data-placement="right"></i>
</h4>
<!-- Hidden popover with image hint -->
<div class="hidden" id="global-search-hint">
<div class="popover-heading">
<?php _e('Global search', 'wpdatatables'); ?>
</div>
<div class="popover-body">
<div class="thumbnail">
<img src="<?php echo WDT_ASSETS_PATH ?>img/hint-pictures/global_search.png"/>
</div>
<?php _e('If this is enabled, a search block will be displayed on the top right of the table, allowing to search through whole table with a single input.', 'wpdatatables'); ?>
</div>
</div>
<!-- /Hidden popover with image hint -->
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-global-search"
class="ts-label"><?php _e('Enable search block', 'wpdatatables'); ?></label>
<input id="wdt-global-search" type="checkbox" hidden="hidden">
<label for="wdt-global-search" class="ts-helper"></label>
</div>
</div>
</div>
<!-- /.row -->
<!-- row -->
<div class="row">
<div class="col-sm-4 m-b-20 filtering-form-block">
<h4 class="c-black m-b-20">
<?php _e('Filters in a form', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-popover-content="#filter-in-form-hint"
data-toggle="html-popover" data-trigger="hover" data-placement="right"></i>
</h4>
<!-- Hidden popover with image hint -->
<div class="hidden" id="filter-in-form-hint">
<div class="popover-heading">
<?php _e('Filter in form', 'wpdatatables'); ?>
</div>
<div class="popover-body">
<div class="thumbnail">
<img src="<?php echo WDT_ASSETS_PATH ?>img/hint-pictures/filter_in_form.png"/>
</div>
<?php _e('Enable to show the advanced column filter in a form above the table, instead of showing in the table footer/header.', 'wpdatatables'); ?>
</div>
</div>
<!-- /Hidden popover with image hint -->
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-filter-in-form"
class="ts-label"><?php _e('Show filters in a form above the table', 'wpdatatables'); ?></label>
<input id="wdt-filter-in-form" type="checkbox" hidden="hidden">
<label for="wdt-filter-in-form" class="ts-helper"></label>
</div>
</div>
<div class="col-sm-4 m-b-20 wdt-clear-filters-block filtering-form-block">
<h4 class="c-black m-b-20">
<?php _e('Clear filters button', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-popover-content="#wdt-clear-filters-hint"
data-toggle="html-popover" data-trigger="hover" data-placement="right"></i>
</h4>
<!-- Hidden popover with image hint -->
<div class="hidden" id="wdt-clear-filters-hint">
<div class="popover-heading">
<?php _e('Clear filters', 'wpdatatables'); ?>
</div>
<div class="popover-body">
<?php _e('Enable to show the clear filters button.', 'wpdatatables'); ?><br/><br/>
<?php _e('If filter in form is enabled, clear button will be rendered after the last filter.', 'wpdatatables'); ?>
<br/>
<div class="thumbnail">
<img src="<?php echo WDT_ASSETS_PATH ?>img/hint-pictures/clear_filters_1.png"/>
</div>
<?php _e('Otherwise, clear filter button will be rendered above the table next to "Table Tools" buttons.', 'wpdatatables'); ?>
<br/><br/>
<div class="thumbnail">
<img src="<?php echo WDT_ASSETS_PATH ?>img/hint-pictures/clear_filters_2.png"/>
</div>
</div>
</div>
<!-- /Hidden popover with image hint -->
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-clear-filters"
class="ts-label"><?php _e('Show clear filters button', 'wpdatatables'); ?></label>
<input id="wdt-clear-filters" type="checkbox" hidden="hidden">
<label for="wdt-clear-filters" class="ts-helper"></label>
</div>
</div>
<?php do_action('wdt_add_sorting_and_filtering_element'); ?>
</div>
<!-- /.row -->
</div>
<!-- /Table sorting and filtering settings -->
<!-- Table editing settings -->
<div role="tabpanel" class="tab-pane fade" id="editing-settings">
<div class="row">
<div class="col-sm-4 m-b-20">
<h4 class="c-black m-b-20">
<?php _e('Allow editing', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-popover-content="#front-end-editing-hint"
data-toggle="html-popover" data-trigger="hover" data-placement="right"></i>
</h4>
<!-- Hidden popover with image hint -->
<div class="hidden" id="front-end-editing-hint">
<div class="popover-heading">
<?php _e('Front-end editing', 'wpdatatables'); ?>
</div>
<div class="popover-body">
<div class="thumbnail">
<img src="<?php echo WDT_ASSETS_PATH ?>img/hint-pictures/front_end_editing.png"/>
</div>
<?php _e('Allow editing the table from the front-end.', 'wpdatatables'); ?>
</div>
</div>
<!-- /Hidden popover with image hint -->
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-editable"
class="ts-label"><?php _e('Allow front-end editing', 'wpdatatables'); ?></label>
<input id="wdt-editable" type="checkbox" hidden="hidden">
<label for="wdt-editable" class="ts-helper"></label>
</div>
</div>
<div class="col-sm-4 m-b-20 editing-settings-block hidden">
<h4 class="c-black m-b-20">
<?php _e('Popover edit block', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-popover-content="#popover-tools-hint"
data-toggle="html-popover" data-trigger="hover" data-placement="right"></i>
</h4>
<!-- Hidden popover with image hint -->
<div class="hidden" id="popover-tools-hint">
<div class="popover-heading">
<?php _e('Popover tools', 'wpdatatables'); ?>
</div>
<div class="popover-body">
<div class="thumbnail">
<img src="<?php echo WDT_ASSETS_PATH ?>img/hint-pictures/popover_tools_hint.png"/>
</div>
<?php _e('If this is enabled, the New, Edit and Delete buttons will appear in a popover when you click on any row, instead of Table Tools block above the table.', 'wpdatatables'); ?>
</div>
</div>
<!-- /Hidden popover with image hint -->
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-popover-tools"
class="ts-label"><?php _e('Editing buttons in a popover', 'wpdatatables'); ?></label>
<input id="wdt-popover-tools" type="checkbox" hidden="hidden">
<label for="wdt-popover-tools" class="ts-helper"></label>
</div>
</div>
<div class="col-sm-4 m-b-20 editing-settings-block hidden">
<h4 class="c-black m-b-20">
<?php _e('In-line editing', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-popover-content="#inline-editing-hint"
data-toggle="html-popover" data-trigger="hover" data-placement="right"></i>
</h4>
<!-- Hidden popover with image hint -->
<div class="hidden" id="inline-editing-hint">
<div class="popover-heading">
<?php _e('In-line editing', 'wpdatatables'); ?>
</div>
<div class="popover-body">
<div class="thumbnail">
<img src="<?php echo WDT_ASSETS_PATH ?>img/hint-pictures/inline_editing_hint.png"/>
</div>
<?php _e('If this is enabled, front-end users will be able to edit cells by double-clicking them, not only with the editor dialog.', 'wpdatatables'); ?>
</div>
</div>
<!-- /Hidden popover with image hint -->
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-inline-editable"
class="ts-label"><?php _e('Allow in-line editing', 'wpdatatables'); ?></label>
<input id="wdt-inline-editable" type="checkbox" hidden="hidden">
<label for="wdt-inline-editable" class="ts-helper"></label>
</div>
</div>
</div>
<!-- /.row -->
<!-- .row -->
<div class="row">
<div class="col-sm-4 m-b-20 editing-settings-block hidden">
<h4 class="c-black m-b-20">
<?php _e('MySQL table name for editing', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="bottom"
title="<?php _e('Name of the MySQL table which will be updated when edited from front-end.', 'wpdatatables'); ?>"></i>
</h4>
<div class="fg-line">
<input type="text" class="form-control"
placeholder="<?php _e('MySQL table name', 'wpdatatables'); ?>"
id="wdt-mysql-table-name">
</div>
</div>
<div class="col-sm-4 m-b-20 editing-settings-block hidden">
<h4 class="c-black m-b-20">
<?php _e('ID column for editing', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('Choose the column values from which will be used as row identifiers. MUST be a unique auto-increment integer on MySQL side so insert/edit/delete would work correctly! wpDataTables will guess the correct column if it is called "id" or "ID" on MySQL side.', 'wpdatatables'); ?>"></i>
</h4>
<div class="select">
<select class="form-control selectpicker" id="wdt-id-editing-column">
</select>
</div>
</div>
<div class="col-sm-4 m-b-20 editing-settings-block hidden">
<h4 class="c-black m-b-20">
<?php _e('Editor roles', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('If you want only specific user roles to be able to edit the table, choose in this dropdown. Leave unchecked to allow editing for everyone.', 'wpdatatables'); ?>"></i>
</h4>
<div class="select">
<select class="form-control selectpicker" multiple="multiple"
title="<?php _e('Everyone', 'wpdatatables'); ?>" id="wdt-editor-roles">
<?php foreach ($wdtUserRoles as $wdtUserRole) {
/** @noinspection $wdtUserRoles */ ?>
<option value="<?php echo $wdtUserRole['name'] ?>"><?php echo $wdtUserRole['name'] ?></option>
<?php } ?>
</select>
</div>
</div>
</div>
<!-- /.row -->
<!-- .row -->
<div class="row">
<div class="col-sm-4 m-b-20 editing-settings-block hidden">
<h4 class="c-black m-b-20">
<?php _e('Users see and edit only own data', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-popover-content="#own-rows-hint"
data-toggle="html-popover" data-trigger="hover" data-placement="left"></i>
</h4>
<!-- Hidden popover with image hint -->
<div class="hidden" id="own-rows-hint">
<div class="popover-heading">
<?php _e('Users see and edit only their own data', 'wpdatatables'); ?>
</div>
<div class="popover-body">
<div class="thumbnail">
<img src="<?php echo WDT_ASSETS_PATH ?>img/hint-pictures/own_rows_hint.png"/>
</div>
<?php _e('If this is enabled, users will see and edit only the rows that are related to them or were created by them (associated using the User ID column).', 'wpdatatables'); ?>
</div>
</div>
<!-- /Hidden popover with image hint -->
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-edit-only-own-rows"
class="ts-label"><?php _e('Limit editing to own data only', 'wpdatatables'); ?></label>
<input id="wdt-edit-only-own-rows" type="checkbox" hidden="hidden">
<label for="wdt-edit-only-own-rows" class="ts-helper"></label>
</div>
</div>
<div class="col-sm-4 m-b-20 own-rows-editing-settings-block hidden">
<h4 class="c-black m-b-20">
<?php _e('User ID column', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('Choose the column values from which will be used as User identifiers. References the ID from WordPress Users table (wp_users), MUST be defined as an integer on MySQL side.', 'wpdatatables'); ?>"></i>
</h4>
<div class="select">
<select class="form-control selectpicker" id="wdt-user-id-column">
</select>
</div>
</div>
</div>
<!-- /.row -->
</div>
<!-- /Table editing settings -->
<!-- Table tools settings -->
<div role="tabpanel" class="tab-pane fade" id="table-tools-settings">
<!-- .row -->
<div class="row">
<div class="col-sm-4 m-b-20">
<h4 class="c-black m-b-20">
<?php _e('Table Tools', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-popover-content="#table-tools-hint"
data-toggle="html-popover" data-trigger="hover" data-placement="right"></i>
</h4>
<!-- Hidden popover with image hint -->
<div class="hidden" id="table-tools-hint">
<div class="popover-heading">
<?php _e('Table tools', 'wpdatatables'); ?>
</div>
<div class="popover-body">
<div class="thumbnail">
<img src="<?php echo WDT_ASSETS_PATH ?>img/hint-pictures/table_tools_hint.png"/>
</div>
<?php _e('If this is enabled, a toolbar with useful tools will be shown above the table', 'wpdatatables'); ?>
</div>
</div>
<!-- /Hidden popover with image hint -->
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-table-tools"
class="ts-label"><?php _e('Enable Table Tools', 'wpdatatables'); ?></label>
<input id="wdt-table-tools" type="checkbox" hidden="hidden">
<label for="wdt-table-tools" class="ts-helper"></label>
</div>
</div>
<div class="col-sm-4 m-b-20 table-tools-settings-block hidden">
<h4 class="c-black m-b-20">
<?php _e('Buttons', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('Choose which buttons to show in the Table Tools block.', 'wpdatatables'); ?>"></i>
</h4>
<div class="select">
<select class="form-control selectpicker" multiple="multiple"
id="wdt-table-tools-config">
<option value="columns"><?php _e('Columns visibility', 'wpdatatables'); ?></option>
<option value="print"><?php _e('Print', 'wpdatatables'); ?></option>
<option value="excel"><?php _e('Excel', 'wpdatatables'); ?></option>
<option value="csv"><?php _e('CSV', 'wpdatatables'); ?></option>
<option value="copy"><?php _e('Copy', 'wpdatatables'); ?></option>
<option value="pdf"><?php _e('PDF', 'wpdatatables'); ?></option>
</select>
</div>
</div>
</div>
<!-- /.row -->
</div>
<!-- /Table tools settings -->
<!-- Placeholders settings -->
<div role="tabpanel" class="tab-pane fade" id="placeholders-settings">
<div class="row">
<div class="col-md-12 m-b-20">
<small><?php _e('Placeholders can be understood as predefined ‘search and replace‘ templates; that will be replaced with some actual values at the execution time; usually this is used for MySQL queries, but you can use it for XMl,JSON and PHP serialized array. ', 'wpdatatables'); ?></small>
</div>
</div>
<!-- .row -->
<div class="row">
<div class="col-sm-4 m-b-20">
<h4 class="c-black m-b-20">
%VAR1%
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('This placeholder will be replaced with any value that you will provide in a shortcode. Provide a default value here that will be used for table generation and when a different one is not defined in the shortcode.', 'wpdatatables'); ?>"></i>
</h4>
<div class="fg-line form-group">
<input id="wdt-var1-placeholder" type="text" class="form-control input-sm"
placeholder="<?php _e('Default for table generation', 'wpdatatables'); ?>">
</div>
</div>
<div class="col-sm-4 m-b-20">
<h4 class="c-black m-b-20">
%VAR2%
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('This placeholder will be replaced with any value that you will provide in a shortcode. Provide a default value here that will be used for table generation and when a different one is not defined in the shortcode.', 'wpdatatables'); ?>"></i>
</h4>
<div class="fg-line form-group">
<input id="wdt-var2-placeholder" type="text" class="form-control input-sm"
placeholder="<?php _e('Default for table generation', 'wpdatatables'); ?>">
</div>
</div>
<div class="col-sm-4 m-b-20">
<h4 class="c-black m-b-20">
%VAR3%
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('This placeholder will be replaced with any value that you will provide in a shortcode. Provide a default value here that will be used for table generation and when a different one is not defined in the shortcode.', 'wpdatatables'); ?>"></i>
</h4>
<div class="fg-line form-group">
<input id="wdt-var3-placeholder" type="text" class="form-control input-sm"
placeholder="<?php _e('Default for table generation', 'wpdatatables'); ?>">
</div>
</div>
</div>
<!-- /.row -->
<!-- .row -->
<div class="row">
<div class="col-sm-4 m-b-20">
<h4 class="c-black m-b-20">
%CURRENT_USER_ID%
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('This placeholder will be replaced with the ID of currently logged in user. Provide a value here to be used for table generation', 'wpdatatables'); ?>"></i>
</h4>
<div class="fg-line form-group">
<input id="wdt-user-id-placeholder" type="text"
value="<?php echo get_current_user_id(); ?>" class="form-control input-sm"
placeholder="<?php _e('Default for table generation', 'wpdatatables'); ?>">
</div>
</div>
<div class="col-sm-4 m-b-20">
<h4 class="c-black m-b-20">
%CURRENT_USER_LOGIN%
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('This placeholder will be replaced with the login of currently logged in user. Provide a value here to be used for table generation', 'wpdatatables'); ?>"></i>
</h4>
<div class="fg-line form-group">
<?php $wdt_current_user = wp_get_current_user(); ?>
<input id="wdt-user-login-placeholder" type="text"
value="<?php echo $wdt_current_user->user_login; ?>"
class="form-control input-sm"
placeholder="<?php _e('Default for table generation', 'wpdatatables'); ?>">
</div>
</div>
<div class="col-sm-4 m-b-20">
<h4 class="c-black m-b-20">
%WPDB%
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('This placeholder will be replaced with the current prefix of WordPress database. Provide a value here to be used for table generation', 'wpdatatables'); ?>"></i>
</h4>
<div class="fg-line form-group">
<?php global $wpdb; ?>
<input id="wdt-wpdb-placeholder" type="text" value="<?php echo $wpdb->prefix; ?>"
class="form-control input-sm"
placeholder="<?php _e('Default for table generation', 'wpdatatables'); ?>">
</div>
</div>
</div>
<!-- /.row -->
<!-- .row -->
<div class="row">
<div class="col-sm-4 m-b-20">
<h4 class="c-black m-b-20">
%CURRENT_POST_ID%
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('This placeholder will be replaced with the ID of current post. Provide a value here to be used for table generation', 'wpdatatables'); ?>"></i>
</h4>
<div class="fg-line form-group">
<input id="wdt-post-id-placeholder" type="text" value="" class="form-control input-sm"
placeholder="<?php _e('Default for table generation', 'wpdatatables'); ?>">
</div>
</div>
</div>
<!-- /.row -->
</div>
<!-- /Placeholders settings -->
<?php do_action('wdt_add_table_configuration_tabpanel'); ?>
</div>
<!-- /.tab-content - end of table settings tabs -->
<div class="row">
<div class="col-md-12">
<button class="btn btn-default btn-icon-text waves-effect wdt-documentation"
data-doc-page="table_settings">
<i class="zmdi zmdi-help-outline"></i> <?php _e('Documentation', 'wpdatatables'); ?>
</button>
<div class="pull-right">
<button class="btn btn-danger btn-icon-text waves-effect wdt-backend-close">
<i class="zmdi zmdi-close"></i> <?php _e('Cancel', 'wpdatatables'); ?>
</button>
<button class="btn btn-success btn-icon-text waves-effect wdt-apply" disabled="disabled">
<i class="zmdi zmdi-check"></i> <?php _e('Apply', 'wpdatatables'); ?>
</button>
</div>
</div>
<!-- /.col-md-12 -->
</div>
<!-- /.row -->
</div>
<!--/div role="tabpanel" -->
</div>
<!-- /.card-body -->
</div>
<!-- /.card /.wdt-table-settings -->