-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathonce.sql
2507 lines (2215 loc) · 115 KB
/
once.sql
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
-- phpMyAdmin SQL Dump
-- version 4.5.1
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Czas generowania: 22 Paź 2017, 18:39
-- Wersja serwera: 10.1.10-MariaDB
-- Wersja PHP: 5.5.30
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Baza danych: `once`
--
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_documentation`
--
CREATE TABLE `edit_documentation` (
`id` int(11) NOT NULL,
`project_id` int(11) NOT NULL DEFAULT '0',
`plugin_id` int(11) NOT NULL DEFAULT '0',
`title` varchar(255) NOT NULL DEFAULT '',
`ico` varchar(55) NOT NULL DEFAULT '',
`parent_id` int(11) NOT NULL DEFAULT '0',
`level` int(11) NOT NULL DEFAULT '0',
`position` int(11) NOT NULL DEFAULT '0',
`content` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_faq`
--
CREATE TABLE `edit_faq` (
`id` int(11) NOT NULL,
`project_id` int(11) NOT NULL DEFAULT '0',
`plugin_id` int(11) NOT NULL DEFAULT '0',
`question` varchar(255) NOT NULL DEFAULT '',
`ico` varchar(55) NOT NULL DEFAULT '',
`parent_id` int(11) NOT NULL DEFAULT '0',
`level` int(11) NOT NULL DEFAULT '0',
`position` int(11) NOT NULL DEFAULT '0',
`answer` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_frameworks`
--
CREATE TABLE `edit_frameworks` (
`id` int(11) NOT NULL,
`type_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(25) NOT NULL DEFAULT '',
`source` varchar(255) NOT NULL DEFAULT '',
`path` varchar(255) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Zrzut danych tabeli `edit_frameworks`
--
INSERT INTO `edit_frameworks` (`id`, `type_id`, `name`, `source`, `path`) VALUES
(1, 1, 'CodeIgniter', 'github.com/bcit-ci/CodeIgniter', ''),
(2, 1, 'Laravel', 'https://github.com/laravel/laravel', ''),
(3, 2, 'AngularJS', 'github.com/angular/angular.js/', ''),
(4, 2, 'Vue', 'github.com/vuejs/vue', ''),
(5, 3, 'Bootstrap', 'https://github.com/twbs/bootstrap', ''),
(6, 3, 'Foundation', 'http://foundation.zurb.com/sites/download.html/', '');
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_langs`
--
CREATE TABLE `edit_langs` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL DEFAULT '0',
`project_id` int(11) NOT NULL DEFAULT '0',
`type_id` int(11) NOT NULL DEFAULT '0',
`category_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(55) NOT NULL DEFAULT '',
`name_id` varchar(11) NOT NULL DEFAULT '',
`description` varchar(255) NOT NULL DEFAULT '',
`source` text NOT NULL,
`source_en` text NOT NULL,
`source_pl` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_langs_categories`
--
CREATE TABLE `edit_langs_categories` (
`id` int(11) NOT NULL,
`project_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL DEFAULT '',
`ico` varchar(55) NOT NULL DEFAULT '',
`parent_id` int(11) NOT NULL DEFAULT '0',
`level` int(11) NOT NULL DEFAULT '0',
`position` int(11) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_langs_types`
--
CREATE TABLE `edit_langs_types` (
`id` int(11) NOT NULL,
`name` varchar(55) NOT NULL DEFAULT '',
`desc` varchar(55) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Zrzut danych tabeli `edit_langs_types`
--
INSERT INTO `edit_langs_types` (`id`, `name`, `desc`) VALUES
(1, 'en', 'English'),
(2, 'pl', 'Polish'),
(3, 'cs', 'Czech'),
(4, 'es', 'Spanish'),
(5, 'pt', 'Portuguese'),
(6, 'bg', 'Bulgarian'),
(7, 'zh', 'Chinese'),
(8, 'hr', 'Croatian'),
(9, 'da', 'Danish'),
(10, 'nl', 'Dutch'),
(11, 'fr', 'French'),
(12, 'fi', 'Finnish'),
(13, 'et', 'Estonian'),
(14, 'ab', 'Abkhaz'),
(15, 'aa', 'Afar'),
(16, 'af', 'Afrikaans'),
(17, 'ak', 'Akan'),
(18, 'sq', 'Albanian'),
(19, 'am', 'Amharic'),
(20, 'ar', 'Arabic'),
(21, 'an', 'Aragonese'),
(22, 'hy', 'Armenian'),
(23, 'as', 'Assamese'),
(24, 'av', 'Avaric'),
(25, 'ae', 'Avestan'),
(26, 'ay', 'Aymara'),
(27, 'az', 'Azerbaijani'),
(28, 'bm', 'Bambara'),
(29, 'ba', 'Bashkir'),
(30, 'eu', 'Basque'),
(31, 'be', 'Belarusian'),
(32, 'bn', 'Bengali'),
(33, 'bh', 'Bihari'),
(34, 'bi', 'Bislama'),
(35, 'bs', 'Bosnian'),
(36, 'br', 'Breton'),
(37, 'my', 'Burmese'),
(38, 'ca', 'Catalan'),
(39, 'ch', 'Chamorro'),
(40, 'ce', 'Chechen'),
(41, 'ny', 'Chichewa'),
(42, 'cv', 'Chuvash'),
(43, 'kw', 'Cornish'),
(44, 'co', 'Corsican'),
(45, 'cr', 'Cree'),
(46, 'dv', 'Divehi'),
(47, 'dz', 'Dzongkha'),
(48, 'eo', 'Esperanto'),
(49, 'ee', 'Ewe'),
(50, 'fo', 'Faroese'),
(51, 'fj', 'Fijian'),
(52, 'ff', 'Fula'),
(53, 'gl', 'Galician'),
(54, 'ka', 'Georgian'),
(55, 'de', 'German'),
(56, 'el', 'Greek'),
(57, 'gn', 'Guaraní'),
(58, 'gu', 'Gujarati'),
(59, 'ht', 'Haitian'),
(60, 'ha', 'Hausa'),
(61, 'he', 'Hebrew'),
(62, 'hz', 'Herero'),
(63, 'hi', 'Hindi'),
(64, 'ho', 'Hiri Motu'),
(65, 'hu', 'Hungarian'),
(66, 'ia', 'Interlingua'),
(67, 'id', 'Indonesian'),
(68, 'ie', 'Interlingue'),
(69, 'ga', 'Irish'),
(70, 'ig', 'Igbo'),
(71, 'ik', 'Inupiaq'),
(72, 'io', 'Ido'),
(73, 'is', 'Icelandic'),
(74, 'it', 'Italian'),
(75, 'iu', 'Inuktitut'),
(76, 'ja', 'Japanese'),
(77, 'jv', 'Javanese'),
(78, 'kl', 'Kalaallisut'),
(79, 'kn', 'Kannada'),
(80, 'kr', 'Kanuri'),
(81, 'ks', 'Kashmiri'),
(82, 'kk', 'Kazakh'),
(83, 'km', 'Khmer'),
(84, 'ki', 'Kikuyu'),
(85, 'rw', 'Kinyarwanda'),
(86, 'ky', 'Kyrgyz'),
(87, 'kv', 'Komi'),
(88, 'kg', 'Kongo'),
(89, 'ko', 'Korean'),
(90, 'ku', 'Kurdish'),
(91, 'kj', 'Kwanyama'),
(92, 'la', 'Latin'),
(93, 'lb', 'Luxembourgish'),
(94, 'lg', 'Ganda'),
(95, 'li', 'Limburgish'),
(96, 'ln', 'Lingala'),
(97, 'lo', 'Lao'),
(98, 'lt', 'Lithuanian'),
(99, 'lu', 'Luba-Katanga'),
(100, 'lv', 'Latvian'),
(101, 'gv', 'Manx'),
(102, 'mk', 'Macedonian'),
(103, 'mg', 'Malagasy'),
(104, 'ms', 'Malay'),
(105, 'ml', 'Malayalam'),
(106, 'mt', 'Maltese'),
(107, 'mi', 'Māori'),
(108, 'mr', 'Marathi'),
(109, 'mh', 'Marshallese'),
(110, 'mn', 'Mongolian'),
(111, 'na', 'Nauru'),
(112, 'nv', 'Navajo'),
(113, 'nb', 'Norwegian Bokmål'),
(114, 'nd', 'North Ndebele'),
(115, 'ne', 'Nepali'),
(116, 'ng', 'Ndonga'),
(117, 'nn', 'Norwegian Nynorsk'),
(118, 'no', 'Norwegian'),
(119, 'ii', 'Nuosu'),
(120, 'nr', 'South Ndebele'),
(121, 'oc', 'Occitan'),
(122, 'oj', 'Ojibwe'),
(123, 'cu', 'Old Church Slavonic'),
(124, 'om', 'Oromo'),
(125, 'or', 'Oriya'),
(126, 'os', 'Ossetian'),
(127, 'pa', 'Panjabi'),
(128, 'pi', 'Pāli'),
(129, 'fa', 'Persian'),
(130, 'ps', 'Pashto'),
(131, 'qu', 'Quechua'),
(132, 'rm', 'Romansh'),
(133, 'rn', 'Kirundi'),
(134, 'ro', 'Romanian'),
(135, 'ru', 'Russian'),
(136, 'sa', 'Sanskrit'),
(137, 'sc', 'Sardinian'),
(138, 'sd', 'Sindhi'),
(139, 'se', 'Northern Sami'),
(140, 'sm', 'Samoan'),
(141, 'sg', 'Sango'),
(142, 'sr', 'Serbian'),
(143, 'gd', 'Scottish Gaelic'),
(144, 'sn', 'Shona'),
(145, 'si', 'Sinhala'),
(146, 'sk', 'Slovak'),
(147, 'sl', 'Slovene'),
(148, 'so', 'Somali'),
(149, 'st', 'Southern Sotho'),
(150, 'su', 'Sundanese'),
(151, 'sw', 'Swahili'),
(152, 'ss', 'Swati'),
(153, 'sv', 'Swedish'),
(154, 'ta', 'Tamil'),
(155, 'te', 'Telugu'),
(156, 'tg', 'Tajik'),
(157, 'th', 'Thai'),
(158, 'ti', 'Tigrinya'),
(159, 'bo', 'Tibetan Standard'),
(160, 'tk', 'Turkmen'),
(161, 'tl', 'Tagalog'),
(162, 'tn', 'Tswana'),
(163, 'to', 'Tonga'),
(164, 'tr', 'Turkish'),
(165, 'ts', 'Tsonga'),
(166, 'tt', 'Tatar'),
(167, 'tw', 'Twi'),
(168, 'ty', 'Tahitian'),
(169, 'ug', 'Uyghur'),
(170, 'uk', 'Ukrainian'),
(171, 'ur', 'Urdu'),
(172, 'uz', 'Uzbek'),
(173, 've', 'Venda'),
(174, 'vi', 'Vietnamese'),
(175, 'vo', 'Volapük'),
(176, 'wa', 'Walloon'),
(177, 'cy', 'Welsh'),
(178, 'wo', 'Wolof'),
(179, 'wy', 'Western Frisian'),
(180, 'xh', 'Xhosa'),
(181, 'yi', 'Yiddish'),
(182, 'yo', 'Yoruba'),
(183, 'za', 'Zhuang'),
(184, 'zu', 'Zulu');
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_layers`
--
CREATE TABLE `edit_layers` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL DEFAULT '0',
`project_id` int(11) NOT NULL DEFAULT '0',
`type_id` int(11) NOT NULL DEFAULT '0',
`category_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(55) NOT NULL DEFAULT '',
`default` tinyint(4) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_layers_cols`
--
CREATE TABLE `edit_layers_cols` (
`id` int(11) NOT NULL,
`project_id` int(11) NOT NULL DEFAULT '0',
`layer_id` int(11) NOT NULL DEFAULT '0',
`plugin_id` int(11) NOT NULL DEFAULT '0',
`col_id` int(11) NOT NULL DEFAULT '0',
`row_id` int(11) NOT NULL DEFAULT '0',
`size` int(11) NOT NULL DEFAULT '0',
`css_id` varchar(55) NOT NULL DEFAULT '',
`css_class` varchar(55) NOT NULL DEFAULT '',
`hidden` tinyint(4) NOT NULL DEFAULT '0',
`namespace` varchar(32) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_layers_rows`
--
CREATE TABLE `edit_layers_rows` (
`id` int(11) NOT NULL,
`project_id` int(11) NOT NULL DEFAULT '0',
`layer_id` int(11) NOT NULL DEFAULT '0',
`row_id` int(11) NOT NULL DEFAULT '0',
`css_id` varchar(55) NOT NULL DEFAULT '',
`css_class` varchar(55) NOT NULL DEFAULT '',
`container` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_mailbox`
--
CREATE TABLE `edit_mailbox` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL DEFAULT '0',
`type_id` int(11) NOT NULL DEFAULT '0',
`user_id_to` int(11) NOT NULL DEFAULT '0',
`author` varchar(32) NOT NULL DEFAULT '',
`email` varchar(32) NOT NULL DEFAULT '',
`title` varchar(255) NOT NULL DEFAULT '',
`message` text NOT NULL,
`time` int(11) NOT NULL DEFAULT '0',
`status` tinyint(4) NOT NULL DEFAULT '0',
`draft` tinyint(4) NOT NULL DEFAULT '0',
`stared` tinyint(4) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_mailbox_contacts`
--
CREATE TABLE `edit_mailbox_contacts` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL DEFAULT '0',
`project_id` int(11) NOT NULL DEFAULT '0',
`email` varchar(32) NOT NULL DEFAULT '',
`phone` varchar(15) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_mailbox_types`
--
CREATE TABLE `edit_mailbox_types` (
`id` int(11) NOT NULL,
`project_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(55) NOT NULL DEFAULT '',
`position` int(11) NOT NULL DEFAULT '0',
`perm` int(11) NOT NULL DEFAULT '0',
`ico` varchar(55) NOT NULL DEFAULT '',
`action` varchar(55) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Zrzut danych tabeli `edit_mailbox_types`
--
INSERT INTO `edit_mailbox_types` (`id`, `project_id`, `name`, `position`, `perm`, `ico`, `action`) VALUES
(1, 1, 'Inbox', 0, 0, 'fa fa-inbox', ''),
(2, 1, 'Sent', 0, 0, 'fa fa-mail-forward', ''),
(3, 1, 'Starred', 0, 0, 'fa fa-star', ''),
(4, 1, 'Junk', 0, 0, 'fa fa-folder', '');
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_menu`
--
CREATE TABLE `edit_menu` (
`id` int(11) NOT NULL,
`project_id` int(11) NOT NULL DEFAULT '0',
`plugin_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(55) NOT NULL DEFAULT '',
`ico` varchar(55) NOT NULL DEFAULT '',
`parent_id` int(11) NOT NULL DEFAULT '0',
`level` int(11) NOT NULL DEFAULT '0',
`position` int(11) NOT NULL DEFAULT '0',
`url` varchar(55) NOT NULL DEFAULT '',
`target` varchar(55) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_pages`
--
CREATE TABLE `edit_pages` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL DEFAULT '0',
`project_id` int(11) NOT NULL DEFAULT '0',
`type_id` int(11) NOT NULL DEFAULT '0',
`category_id` int(11) NOT NULL DEFAULT '0',
`layer_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(55) NOT NULL DEFAULT '',
`title` varchar(255) NOT NULL DEFAULT '',
`keywords` varchar(255) NOT NULL DEFAULT '',
`description` varchar(255) NOT NULL DEFAULT '',
`source` text NOT NULL,
`tags` text NOT NULL,
`stared` tinyint(4) NOT NULL DEFAULT '0',
`private` tinyint(4) NOT NULL DEFAULT '0',
`created` int(11) NOT NULL DEFAULT '0',
`default` tinyint(4) NOT NULL DEFAULT '0',
`updated` int(11) NOT NULL DEFAULT '0',
`password` varchar(255) NOT NULL DEFAULT '',
`logged` tinyint(4) NOT NULL DEFAULT '0',
`adult` tinyint(4) NOT NULL DEFAULT '0',
`admins` tinyint(4) NOT NULL DEFAULT '0',
`moderators` tinyint(4) NOT NULL DEFAULT '0',
`users` tinyint(4) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_pages_cols`
--
CREATE TABLE `edit_pages_cols` (
`id` int(11) NOT NULL,
`project_id` int(11) NOT NULL DEFAULT '0',
`page_id` int(11) NOT NULL DEFAULT '0',
`plugin_id` int(11) NOT NULL DEFAULT '0',
`row_id` int(11) NOT NULL DEFAULT '0',
`col_id` int(11) NOT NULL DEFAULT '0',
`size` int(11) NOT NULL DEFAULT '0',
`css_id` varchar(55) NOT NULL DEFAULT '',
`css_class` varchar(55) NOT NULL DEFAULT '',
`hidden` tinyint(4) NOT NULL DEFAULT '0',
`namespace` varchar(32) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_pages_rows`
--
CREATE TABLE `edit_pages_rows` (
`id` int(11) NOT NULL,
`project_id` int(11) NOT NULL DEFAULT '0',
`page_id` int(11) NOT NULL DEFAULT '0',
`row_id` int(11) NOT NULL DEFAULT '0',
`css_id` varchar(55) NOT NULL DEFAULT '',
`css_class` varchar(55) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_pages_types`
--
CREATE TABLE `edit_pages_types` (
`id` int(11) NOT NULL,
`project_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(55) NOT NULL DEFAULT '',
`position` int(11) NOT NULL DEFAULT '0',
`perm` int(11) NOT NULL DEFAULT '0',
`ico` varchar(55) NOT NULL DEFAULT '',
`action` varchar(55) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Zrzut danych tabeli `edit_pages_types`
--
INSERT INTO `edit_pages_types` (`id`, `project_id`, `name`, `position`, `perm`, `ico`, `action`) VALUES
(1, 1, 'Published', 0, 0, 'fa fa-inbox', ''),
(2, 1, 'Drafts', 0, 0, 'fa fa-pencil-square-o', ''),
(3, 1, 'Starred', 0, 0, 'fa fa-star', ''),
(4, 1, 'Junk', 0, 0, 'fa fa-folder', '');
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_plugins`
--
CREATE TABLE `edit_plugins` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL DEFAULT '0',
`project_id` int(11) NOT NULL DEFAULT '0',
`type_id` int(11) NOT NULL DEFAULT '0',
`category_id` int(11) NOT NULL DEFAULT '0',
`object_id` int(11) NOT NULL DEFAULT '0',
`version` int(11) NOT NULL DEFAULT '0',
`name` varchar(55) NOT NULL DEFAULT '',
`description` text NOT NULL,
`tags` varchar(255) NOT NULL DEFAULT '',
`author` varchar(55) NOT NULL DEFAULT '',
`author_url` varchar(255) NOT NULL DEFAULT '',
`visits` int(11) NOT NULL DEFAULT '0',
`comments` int(11) NOT NULL DEFAULT '0',
`price` float NOT NULL DEFAULT '0',
`downloads` int(11) NOT NULL DEFAULT '0',
`votes` int(11) NOT NULL DEFAULT '0',
`reports` int(11) NOT NULL DEFAULT '0',
`stared` tinyint(4) NOT NULL DEFAULT '0',
`created` int(11) NOT NULL DEFAULT '0',
`updated` int(11) NOT NULL DEFAULT '0',
`published` int(11) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Zrzut danych tabeli `edit_plugins`
--
INSERT INTO `edit_plugins` (`id`, `user_id`, `project_id`, `type_id`, `category_id`, `object_id`, `version`, `name`, `description`, `tags`, `author`, `author_url`, `visits`, `comments`, `price`, `downloads`, `votes`, `reports`, `stared`, `created`, `updated`, `published`) VALUES
(1, 1, 0, 0, 0, 1, 0, 'Once Snippets', 'The first OnceBuilder plugin that was made to speed up building web app with already existing html css and js code blocks! Feel free to send your opinion about Once project.', 'code blocks, code block builder, html blocks, css blocks, javascript, snippet, snippets, ready to use code, puzzle', '', 'oncebuilder.com', 0, 0, 0, 0, 0, 0, 0, 1505881045, 0, 1),
(2, 1, 0, 0, 0, 17, 0, 'Once Login', 'This module alows u put login window any where you wish! It works perfect with Once Register module.', 'php login, login window, login user, remind password, forget password', '', 'oncebuilder.com', 1, 0, 0, 0, 0, 0, 0, 1505881336, 0, 1),
(3, 1, 0, 0, 0, 18, 0, 'Once Signup', 'Click this module anywhere to setup your first or another signup page in 10 second guaranteed!', 'php register, php signup, register page, signup php, register php', '', 'oncebuilder.com', 1, 0, 0, 0, 0, 0, 0, 1505881555, 0, 1),
(4, 1, 0, 0, 0, 6, 0, 'Once Cookie Law', 'Cookie alert on EU', 'cookie law, eu cookie law, cookie plugin, cookie alert set it up in your page in less than 10s!', '', 'oncebuilder.com', 1, 0, 0, 0, 0, 0, 0, 1505881660, 0, 1);
--
-- Struktura tabeli dla tabeli `edit_plugins_categories`
--
CREATE TABLE `edit_plugins_categories` (
`id` int(11) NOT NULL,
`project_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL DEFAULT '',
`ico` varchar(255) NOT NULL DEFAULT '',
`parent_id` int(11) NOT NULL DEFAULT '0',
`level` int(11) NOT NULL DEFAULT '0',
`position` int(11) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Zrzut danych tabeli `edit_plugins_categories`
--
INSERT INTO `edit_plugins_categories` (`id`, `project_id`, `name`, `ico`, `parent_id`, `level`, `position`) VALUES
(3, 1, 'Navigations', 'fa fa-bars', 0, 0, 1),
(4, 1, 'Sliders', 'fa fa-caret-square-o-right', 0, 0, 3),
(5, 1, 'Posts', 'fa fa-comment-o', 0, 0, 5),
(8, 1, 'Dialogs', 'fa fa-rss-square', 0, 0, 4),
(9, 1, 'Galleries', 'fa fa-picture-o', 0, 0, 7),
(11, 1, 'Users', 'fa fa-user', 0, 0, 9),
(12, 1, 'Faqs', 'fa fa-question', 0, 0, 6),
(13, 1, 'Documentations', 'fa fa-pencil-square', 0, 0, 10),
(14, 1, 'Googles', 'fa fa-google-plus', 0, 0, 11),
(15, 1, 'Newsletters', 'fa fa-envelope', 0, 0, 2),
(16, 1, 'Products', 'fa fa-shopping-cart', 0, 0, 12),
(17, 1, 'Tables', 'fa fa-table', 0, 0, 13),
(18, 1, 'Forms', 'fa fa-list-alt', 0, 0, 0),
(19, 1, 'Misc', 'fa fa-flask', 0, 0, 14);
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_plugins_downloads`
--
CREATE TABLE `edit_plugins_downloads` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL DEFAULT '0',
`plugin_id` int(11) NOT NULL DEFAULT '0',
`mktime` tinyint(4) NOT NULL DEFAULT '0',
`user_ip` varchar(15) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_plugins_reports`
--
CREATE TABLE `edit_plugins_reports` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL DEFAULT '0',
`plugin_id` int(11) NOT NULL DEFAULT '0',
`mktime` int(11) NOT NULL DEFAULT '0',
`status` tinyint(4) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_plugins_visits`
--
CREATE TABLE `edit_plugins_visits` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL DEFAULT '0',
`plugin_id` int(11) NOT NULL DEFAULT '0',
`mktime` int(11) NOT NULL DEFAULT '0',
`user_ip` varchar(32) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_plugins_votes`
--
CREATE TABLE `edit_plugins_votes` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL DEFAULT '0',
`plugin_id` int(11) NOT NULL DEFAULT '0',
`mktime` int(11) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_posts`
--
CREATE TABLE `edit_posts` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL DEFAULT '0',
`project_id` int(11) NOT NULL DEFAULT '0',
`type_id` int(11) NOT NULL DEFAULT '0',
`category_id` int(11) NOT NULL DEFAULT '0',
`layer_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL DEFAULT '',
`title` varchar(55) NOT NULL DEFAULT '',
`keywords` varchar(255) NOT NULL DEFAULT '',
`description` varchar(255) NOT NULL DEFAULT '',
`source` text NOT NULL,
`tags` text NOT NULL,
`stared` tinyint(4) NOT NULL DEFAULT '0',
`private` tinyint(4) NOT NULL DEFAULT '0',
`created` int(11) NOT NULL DEFAULT '0',
`default` tinyint(4) NOT NULL DEFAULT '0',
`updated` int(11) NOT NULL DEFAULT '0',
`password` varchar(255) NOT NULL DEFAULT '',
`logged` tinyint(4) NOT NULL DEFAULT '0',
`adult` tinyint(4) NOT NULL DEFAULT '0',
`all` tinyint(4) NOT NULL DEFAULT '0',
`admins` tinyint(4) NOT NULL DEFAULT '0',
`moderators` tinyint(4) NOT NULL DEFAULT '0',
`users` tinyint(4) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_posts_types`
--
CREATE TABLE `edit_posts_types` (
`id` int(11) NOT NULL,
`project_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL DEFAULT '',
`position` int(11) NOT NULL DEFAULT '0',
`perm` int(11) NOT NULL DEFAULT '0',
`ico` varchar(55) NOT NULL DEFAULT '',
`action` varchar(255) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Zrzut danych tabeli `edit_posts_types`
--
INSERT INTO `edit_posts_types` (`id`, `project_id`, `name`, `position`, `perm`, `ico`, `action`) VALUES
(1, 1, 'Published', 0, 0, 'fa fa-inbox', ''),
(2, 1, 'Drafts', 1, 0, 'fa fa-pencil-square-o', ''),
(3, 1, 'Pedding', 2, 0, 'fa fa-mail-forward', ''),
(4, 1, 'Starred', 3, 0, 'fa fa-star', ''),
(5, 1, 'Junk', 4, 0, 'fa fa-folder', '');
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_referers`
--
CREATE TABLE `edit_referers` (
`id` int(11) NOT NULL,
`referer_id` int(11) NOT NULL DEFAULT '0',
`user_ip` varchar(16) NOT NULL DEFAULT ' ',
`referer_website` varchar(32) NOT NULL DEFAULT ' '
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_routes`
--
CREATE TABLE `edit_routes` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL DEFAULT '0',
`project_id` int(11) NOT NULL DEFAULT '0',
`type_id` int(11) NOT NULL DEFAULT '0',
`category_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(55) NOT NULL DEFAULT '',
`name_id` varchar(11) NOT NULL DEFAULT '',
`description` varchar(255) NOT NULL DEFAULT '',
`page_id` int(11) NOT NULL DEFAULT '0',
`source` text NOT NULL,
`source_en` text NOT NULL,
`source_pl` text NOT NULL,
`source_cs` text NOT NULL,
`source_es` text NOT NULL,
`source_pt` text NOT NULL,
`source_bg` text NOT NULL,
`source_zh` text NOT NULL,
`source_hr` text NOT NULL,
`source_da` text NOT NULL,
`source_aa` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_routes_categories`
--
CREATE TABLE `edit_routes_categories` (
`id` int(11) NOT NULL,
`project_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL DEFAULT '0',
`ico` varchar(255) NOT NULL DEFAULT '',
`parent_id` int(11) NOT NULL DEFAULT '0',
`level` int(11) NOT NULL DEFAULT '0',
`position` int(11) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_settings`
--
CREATE TABLE `edit_settings` (
`id` int(11) NOT NULL,
`project_id` int(11) NOT NULL DEFAULT '0',
`type_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(55) NOT NULL DEFAULT '',
`login` varchar(255) NOT NULL DEFAULT '',
`email` varchar(255) NOT NULL DEFAULT '',
`password` varchar(32) NOT NULL DEFAULT '',
`api_key` varchar(40) NOT NULL DEFAULT '',
`status` tinyint(4) NOT NULL DEFAULT '0',
`category_id` int(11) NOT NULL DEFAULT '0',
`description` varchar(255) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_settings_types`
--
CREATE TABLE `edit_settings_types` (
`id` int(11) NOT NULL,
`project_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL DEFAULT '0',
`position` int(11) NOT NULL DEFAULT '0',
`perm` tinyint(4) NOT NULL DEFAULT '0',
`ico` varchar(255) NOT NULL DEFAULT '',
`action` varchar(255) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Zrzut danych tabeli `edit_settings_types`
--
INSERT INTO `edit_settings_types` (`id`, `project_id`, `name`, `position`, `perm`, `ico`, `action`) VALUES
(1, 1, 'General settings', 0, 0, 'fa fa-gear', ''),
(2, 1, 'Remote server', 0, 0, 'fa fa-location-arrow', ''),
(7, 1, 'Social media', 0, 0, 'fa fa-facebook-square', ''),
(5, 1, 'Database', 0, 0, 'fa fa-hdd-o', ''),
(6, 1, 'Languages', 0, 0, 'fa fa-globe', '');
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `edit_snippets`
--
CREATE TABLE `edit_snippets` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL DEFAULT '0',
`project_id` int(11) NOT NULL DEFAULT '0',
`type_id` int(11) NOT NULL DEFAULT '0',
`category_id` int(11) NOT NULL DEFAULT '0',
`object_id` int(11) NOT NULL DEFAULT '0',
`version` int(11) NOT NULL DEFAULT '0',
`name` varchar(55) NOT NULL DEFAULT '',
`description` varchar(255) NOT NULL DEFAULT '',
`tags` varchar(255) NOT NULL DEFAULT '',
`author` varchar(255) NOT NULL DEFAULT '',
`author_url` varchar(255) NOT NULL DEFAULT '',
`licence` varchar(255) NOT NULL DEFAULT '',
`visits` int(11) NOT NULL DEFAULT '0',
`comments` int(11) NOT NULL DEFAULT '0',
`downloads` int(11) NOT NULL DEFAULT '0',
`votes` int(11) NOT NULL DEFAULT '0',
`reports` int(11) NOT NULL DEFAULT '0',
`stared` tinyint(4) NOT NULL DEFAULT '0',
`created` int(11) NOT NULL DEFAULT '0',
`updated` int(11) NOT NULL DEFAULT '0',
`published` int(11) NOT NULL DEFAULT '0',
`route` varchar(255) NOT NULL DEFAULT '',
`file` varchar(255) NOT NULL DEFAULT '',
`source` varchar(255) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Zrzut danych tabeli `edit_snippets`
--
INSERT INTO `edit_snippets` (`id`, `user_id`, `project_id`, `type_id`, `category_id`, `object_id`, `version`, `name`, `description`, `tags`, `author`, `author_url`, `licence`, `visits`, `comments`, `downloads`, `votes`, `reports`, `stared`, `created`, `updated`, `published`, `route`, `file`, `source`) VALUES
(1, 1, 0, 0, 1, 1, 0, 'OnceBuilder Contact Form', '', 'bootstrap, bootstrap blocks, code snippets, code blocks, snippets, short codes, contact form, contact snippet', 'OnceBuilder', 'oncebuilder.com', '', 422, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(2, 1, 0, 0, 7, 2, 0, 'Responsive multi level menu', '', 'responsive, menu, navigation, navigation tabbed, jquery, css, rwd, multi level menu, responsive menu', 'OnceBuilder', 'oncebuilder.com', '', 405, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(3, 0, 0, 0, 17, 130, 0, 'Simple start template on bootstrap', '', 'Boostram template, animation, user interface, bootstrap HTML, CSS, JS, code snippet', 'brojask', 'bootsnipp.com/brojask', '', 309, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(4, 0, 0, 0, 11, 60, 0, 'Bootstrap user profile', '', 'code snippets, bootstrap blocks, bootstrap, code blocks, snippets, bootstrap user profile, user profile, code snippets', 'mouse0270', 'twitter.com/mouse0270', '', 257, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(5, 0, 0, 0, 6, 157, 0, 'Login / registration form', '', 'login, forms, panel, registration, bootstrap, registration form, login form', 'calvinko', 'bootsnipp.com/calvinko', '', 242, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(6, 0, 0, 0, 5, 797, 0, 'Bootstrap User List', '', 'user list, social list, bootstrap list, bootstrap user list', 'DesignBootstrap', 'desisnbootstrap.com', '', 258, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(7, 0, 0, 0, 1, 80, 0, 'Bootstrap buttons', '', 'buttons, menu, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'Fstgeorge', 'bootsnipp.com/Fstgeorge', '', 292, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(8, 0, 0, 0, 11, 172, 0, 'Profile side bar menu', '', 'profile, sidebar, menu, user interface, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'keenthemes', 'bootsnipp.com/keenthemes', '', 412, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(9, 0, 0, 0, 9, 574, 0, 'Blog comments', '', 'bootstrap, snippet, blog,comments, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'Deyson Bejarano', 'bootdey.com/users/profile/Dey-Dey', '', 320, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(10, 0, 0, 0, 17, 399, 0, 'Responsive video display', '', 'responsive, layouts, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'mrmccormack', 'bootsnipp.com/mrmccormack', '', 288, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(11, 0, 0, 0, 7, 35, 0, 'Admin toolbar menu', '', 'toolbar, admin, menu, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'msurguy', 'twitter.com/msurguy', '', 288, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(12, 0, 0, 0, 17, 591, 0, 'Bootstrap Simple 404 error page', '', 'page 404, 404 template, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'Deyson Bejarano', 'bootdey.com/users/profile/Dey-Dey', '', 326, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(13, 0, 0, 0, 0, 0, 0, '', '', '', '', '', '', 51, 0, 0, 0, 0, 0, 0, 0, 0, '', '', ''),
(14, 0, 0, 0, 0, 0, 0, '', '', '', '', '', '', 27, 0, 0, 0, 0, 0, 0, 0, 0, '', '', ''),
(15, 0, 0, 0, 5, 647, 0, 'Table user list', '', 'bootstrap, snippet, table, user, list code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'Deyson Bejarano', 'bootdey.com/users/profile/Dey-Dey', '', 320, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(16, 0, 0, 0, 1, 231, 0, 'Bootstrap calendar', '', 'jQuery plugin, user interface, calendar, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'mouse0270', 'twitter.com/mouse0270', '', 325, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(17, 0, 0, 0, 17, 117, 0, 'Bootstrap search bar', '', 'search, forms, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'animeshmanglik', 'twitter.com/animeshmanglik', '', 247, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(18, 0, 0, 0, 17, 270, 0, 'Form set search / icons / buttons', '', 'search, icon fonts, buttons', 'imjohnlouie', 'bootsnipp.com/imjohnlouie', '', 247, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(19, 0, 0, 0, 17, 239, 0, 'Shop cart list', '', 'shop, cms, shop cart, cart, bootstrap snippet', 'msurguy', 'twitter.com/msurguy', '', 254, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(20, 0, 0, 0, 10, 311, 0, 'Pricing table based on bootstrap', '', 'table, responsive, price table, lists, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'outsideMyBox', 'bootsnipp.com/outsideMyBox', '', 336, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(21, 0, 0, 0, 6, 800, 0, 'Bootstrap login template', '', 'login box, login window, login page, login', 'DesignBootstrap', 'designbootstrap.com', '', 316, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(22, 0, 0, 0, 17, 230, 0, 'Material design icon with tittle', '', 'ico box, user interface, layouts, responsive, material design, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'eldragon87', 'twitter.com/eldragon87', '', 296, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(23, 0, 0, 0, 6, 421, 0, 'Bootstrap login panel', '', 'bootstrap, login panel, login box, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'jordi', 'bootsnipp.com/jordi', '', 282, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(24, 0, 0, 0, 16, 535, 0, 'Animated carousel', '', 'carousel, lists, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'BootsThemeClub', 'twitter.com/bootsthemeclub', '', 309, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(25, 0, 0, 0, 5, 434, 0, 'Admin panel mail box list', '', 'user interface, forms, lists, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'hardiksondagar', 'twitter.com/hardiksondagar', '', 269, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(26, 0, 0, 0, 11, 428, 0, 'Small social user profile', '', 'social, user, profile', 'msurguy', 'twitter.com/msurguy', '', 235, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(27, 0, 0, 0, 15, 427, 0, 'Bootstrap payment form and checkout', '', 'payment, panel, forms, checkout', 'BhaumikPatel', 'twitter.com/patel0phone', '', 295, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(28, 0, 0, 0, 17, 504, 0, 'Buttons controls with transition', '', 'buttons, user, controls, boostrap buttons', 'msurguy', 'twitter.com/msurguy', '', 252, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(29, 0, 0, 0, 11, 498, 0, 'Responsive social card profile', '', 'responsive, profile, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'codename065', 'bootsnipp.com/codename065', '', 352, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(30, 0, 0, 0, 17, 497, 0, 'Media control buttons', '', 'buttons, user interface, media buttons, control buttons', 'mrmccormack', 'bootsnipp.com/mrmccormack', '', 204, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(31, 0, 0, 0, 5, 496, 0, 'Estate listing with image', '', 'lists, responsive, images, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'bmoeller1', 'moz.com/community/users/4158419', '', 735, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(32, 0, 0, 0, 17, 466, 0, 'Material design buttons on hover effect', '', 'material design, buttons', 'opensourcematters', 'bootsnipp.com/opensourcematters', '', 289, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(33, 0, 0, 0, 15, 465, 0, 'Payment cart forms', '', 'payment, panel, forms, checkout', 'iosdsv', 'bootsnipp.com/iosdsv', '', 256, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(34, 0, 0, 0, 15, 463, 0, 'Shop cart interface with steps', '', 'shop, user interface, lists, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'AndrewEastwood', 'bootsnipp.com/AndrewEastwood', '', 317, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(35, 0, 0, 0, 1, 462, 0, 'No script alert', '', 'alert, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'kbjohnson90', 'twitter.com/kbjohnson90', '', 264, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(36, 0, 0, 0, 7, 436, 0, 'Bootstrap navigation with animation', '', 'navigation, animation, navigation with animation, boostrap navigation, navi, responsive navigation, responsive menu', 'maridlcrmn', 'twitter.com/maridlcrmn', '', 306, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(37, 0, 0, 0, 17, 437, 0, 'Block list with css blur effect', '', 'lists, blog, block, header, shopcode snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'BhaumikPatel', 'twitter.com/patel0phone', '', 272, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(38, 0, 0, 0, 5, 356, 0, 'Search result list', '', 'search, lists, layouts, listing, item listing', 'gutomoraes', 'bootsnipp.com/gutomoraes', '', 310, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(39, 0, 0, 0, 17, 355, 0, 'Strapdown - Easy Markup for Bootstrap', '', 'jQuery plugin, layouts, markup', 'mrmccormack', 'bootsnipp.com/mrmccormack', '', 341, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(40, 0, 0, 0, 17, 353, 0, 'Contol panel menu, with navigation', '', 'menu, header, navigation, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'iosdsv', 'bootsnipp.com/iosdsv', '', 293, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(41, 0, 0, 0, 17, 351, 0, 'Sticky footer example', '', 'footer, layouts, sticky footer, position fixed', 'mrmccormack', 'bootsnipp.com/mrmccormack', '', 278, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(42, 0, 0, 0, 17, 350, 0, 'Colorfull checkbox / radio boxes', '', 'checkbox, radio, radio boxes, check boxes, bootstrap design', 'tonetlds', 'github.com/tonetlds', '', 213, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(43, 0, 0, 0, 11, 63, 0, 'Profile user interface', '', 'jQuery plugin, profile, user interface, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'msurguy', 'twitter.com/msurguy', '', 253, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(44, 0, 0, 0, 17, 59, 0, 'Animated square buttons', '', 'buttons, square buttons', 'RowBootstrap', 'rowbootstrap.com', '', 203, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(45, 0, 0, 0, 6, 57, 0, 'Smallest login form', '', 'login, forms, login form', 'Mika', 'bootsnipp.com/Mika', '', 219, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(46, 0, 0, 0, 3, 19, 0, 'Bootstrap gallery thumbnails with social links', '', 'gallery, thumbnails, social thumbnails, galery thumb', 'mouse0270', 'twitter.com/mouse0270', '', 366, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(47, 0, 0, 0, 10, 610, 0, 'Bootstrap colored pricing table', '', 'colored, price list, price table, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'Deyson Bejarano', 'bootdey.com/users/profile/Dey-Dey', '', 243, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(48, 0, 0, 0, 12, 248, 0, 'Product listing carousel', '', 'carousel, table, lists, product list, listing with carousel', 'Cyruxx', 'github.com/Cyruxx', '', 315, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(49, 0, 0, 0, 17, 247, 0, 'Windows 8 style password reveal', '', 'user interface, forms, password form, form', 'stickerboy', 'bootsnipp.com/stickerboy', '', 223, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(50, 0, 0, 0, 17, 246, 0, 'Mobile-Friendly API Documentation', '', 'table, layouts, api documentation, document', 'travislaynewilson', 'twitter.com/travislayne', '', 259, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(51, 0, 0, 0, 17, 244, 0, 'Bootstrap multi level dropdown menu', '', 'menu, user, navbar, multi level dropdown, dropdown', 'msurguy', 'twitter.com/msurguy', '', 271, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(52, 0, 0, 0, 17, 243, 0, 'Colored buttons with icons', '', 'buttons, user interface, colored buttons', 'BhaumikPatel', 'twitter.com/patel0phone', '', 233, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(53, 0, 0, 0, 17, 446, 0, 'Comment minimal form', '', 'lists, comment list, comment box', 'JGoodwillieV', 'twitter.com/jgoodwilliev', '', 255, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(54, 0, 0, 0, 17, 445, 0, 'Metro grid layout with icons', '', 'metro layout, metro icons, metro grid', 'joao12ferreira', 'twitter.com/joao12ferreira', '', 278, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(55, 0, 0, 0, 11, 412, 0, 'Default profile card', '', 'profile, user, lists', 'BhaumikPatel', 'twitter.com/patel0phone', '', 219, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(56, 0, 0, 0, 5, 416, 0, 'Comment listing with user profile thumb', '', 'user interface, lists, tabs, form, comment form', 'maridlcrmn', 'twitter.com/maridlcrmn', '', 280, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(57, 0, 0, 0, 11, 410, 0, 'Default profile card with social buttons', '', 'user interface, profile, responsive, user, social buttons, upser profile', 'maridlcrmn', 'twitter.com/maridlcrmn', '', 249, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(58, 0, 0, 0, 5, 409, 0, 'Crowdfunding thumbs', '', 'lists, user, table, thumb listing, crowdfounding listiing', 'msurguy', 'twitter.com/msurguy', '', 231, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(59, 0, 0, 0, 1, 272, 0, 'Colored large buttons', '', 'buttons, controls, admin dashboard', 'msurguy', 'twitter.com/msurguy', '', 313, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(60, 99, 0, 0, 6, 60, 0, 'Cool Login Box (HTML5 & CSS3)', '', 'login box, login window, login page, login', 'Assad', 'facebook.com/sid.chaudhry.71', '', 382, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(61, 0, 0, 0, 7, 61, 0, 'Pure CSS Drop Down Menu', '', 'menu, navigation, responsive, animation', 'webdesignerhut', 'http://webdesignerhut.com/', '', 367, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(62, 0, 0, 0, 6, 237, 0, 'Bootstrap login form with background image', '', 'login, forms, user interface,, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'BhaumikPatel', 'twitter.com/patel0phone', '', 438, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(63, 0, 0, 0, 11, 204, 0, 'User profile interface tab', '', 'user interface, user, profile, lists, tabs, user profile, profile', 'jessicarhawkins08', 'bootsnipp.com/jessicarhawkins08', '', 355, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(64, 0, 0, 0, 17, 203, 0, 'Bootstrap alert list', '', 'alert, lists, alert, alert list, error', 'RodolfoSilva', 'bootsnipp.com/RodolfoSilva', '', 283, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(65, 0, 0, 0, 6, 202, 0, 'User login form', '', 'login, user, forms, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'BhaumikPatel', 'twitter.com/patel0phone', '', 324, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(66, 0, 0, 0, 17, 201, 0, 'Company footer layout', '', 'footer, layouts, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'blairanderson', 'github.com/blairanderson', '', 245, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(67, 0, 0, 0, 17, 200, 0, 'Page 404 with bootstrap', '', 'page 404, layout, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'msurguy', 'twitter.com/msurguy', '', 315, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(68, 0, 0, 0, 5, 199, 0, 'Boxed list', '', 'lists, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'Osom25', 'bootsnipp.com/Osom25', '', 292, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(69, 0, 0, 0, 17, 197, 0, 'Footer layout', '', 'footer, layouts, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'TXTCLASS', 'bootsnipp.com/TXTCLASS', '', 235, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(70, 0, 0, 0, 17, 206, 0, 'Dropdown buttons', '', 'menu, buttonsm code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'rodymol123', 'github.com/rodymol123', '', 278, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(71, 0, 0, 0, 15, 205, 0, 'Shop cart steps', '', 'lists, user interface, shop cart, shop steps', 'brkrobert', 'bootsnipp.com/brkrobert', '', 283, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(72, 0, 0, 0, 2, 196, 0, 'Modal login / register box', '', 'signup, login, forms, modal, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'TXTCLASS', 'bootsnipp.com/TXTCLASS', '', 352, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(73, 0, 0, 0, 11, 174, 0, 'Rate label', '', 'user interface, progress bar, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'BhaumikPatel', 'twitter.com/patel0phone', '', 204, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(74, 0, 0, 0, 5, 179, 0, 'Table / Fuzzy search example', '', 'jQuery plugin, search, lists, table, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'stidges', 'github.com/stidges', '', 323, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(75, 0, 0, 0, 3, 324, 0, 'Carousel product cart slider', '', 'cms, shop, ecommerce, carousel, cart slider, product slider', 'BhaumikPatel', 'twitter.com/patel0phone', '', 318, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(76, 0, 0, 0, 10, 770, 0, 'Bootstrap long pricing table', '', 'colored, price list, price table, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'DesignBootstrap', 'desisnbootstrap.com', '', 314, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(77, 0, 0, 0, 17, 769, 0, 'Bootstrap Subscribe Form', '', 'subscribe form, subscribe, form', 'DesignBootstrap', 'desisnbootstrap.com', '', 253, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(78, 0, 0, 0, 5, 768, 0, 'Bootstrap Order List', '', 'order list, admin, cms, table list', 'DesignBootstrap', 'desisnbootstrap.com', '', 419, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(79, 0, 0, 0, 17, 763, 0, 'Bootstrap features list template', '', 'features list, icon list, icons, icon boxes, icon box', 'DesignBootstrap', 'desisnbootstrap.com', '', 343, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(80, 0, 0, 0, 17, 737, 0, 'Bootstrap Dashboard Boxes', '', 'admin, cms, boxes, admin boxes', 'DesignBootstrap', 'desisnbootstrap.com', '', 224, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(81, 0, 0, 0, 17, 785, 0, 'Bootstrap Notice Board', '', 'admin, cms, boxes, notice list', 'DesignBootstrap', 'desisnbootstrap.com', '', 847, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(82, 0, 0, 0, 5, 706, 0, 'Order history', '', 'snippets, bootstrap, css, html, lists, user interface, e-commerce', 'Jan Vorisek', 'snipplicious.com', '', 317, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(83, 0, 0, 0, 11, 707, 0, 'User profile', '', 'snippets, bootstrap, css, html, user interface, user profile, profile', 'Jan Vorisek', 'snipplicious.com', '', 334, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(84, 0, 0, 0, 4, 692, 0, 'Colored boxes', '', 'code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'Deyson Bejarano', 'bootdey.com/users/profile/Dey-Dey', '', 296, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(85, 0, 0, 0, 6, 694, 0, 'User login', '', 'login box, login window, login page, login', 'Deyson Bejarano', 'bootdey.com/users/profile/Dey-Dey', '', 260, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(86, 0, 0, 0, 3, 690, 0, 'Image Columns with bootstrap', '', 'images, thumbnails, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'Deyson Bejarano', 'bootdey.com/users/profile/Dey-Dey', '', 308, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(87, 0, 0, 0, 12, 696, 0, 'Users products based on tabs', '', 'bootstrap,snippet,users,products,todo', 'Deyson Bejarano', 'bootdey.com/users/profile/Dey-Dey', '', 347, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(88, 0, 0, 0, 3, 632, 0, 'Shopping cart', '', 'shopping, cart, list,products, user interface, lists, code snippets, bootstrap blocks, bootstrap, code blocks', 'Deyson Bejarano', 'bootdey.com/users/profile/Dey-Dey', '', 304, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(89, 0, 0, 0, 7, 435, 0, 'Responsive side navigation menu with animation', '', 'menu, navigation, responsive, animation', 'joseanmola', 'twitter.com/joseanmola', '', 740, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(90, 0, 0, 0, 7, 433, 0, 'Navbar search', '', 'navbar, search', 'mouse0270', 'twitter.com/mouse0270', '', 298, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(91, 0, 0, 0, 3, 724, 0, 'Simple portfolio', '', 'snippets, bootstrap, css, html, images, user interface', 'Jan Vorisek', 'snipplicious.com', '', 339, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(92, 0, 0, 0, 11, 723, 0, 'Edit Profile Page', '', 'snippets, bootstrap, css, html, user interface, forms', 'Jan Vorisek', 'snipplicious.com', '', 328, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(93, 0, 0, 0, 9, 718, 0, 'Forum Posts', '', 'snippets, bootstrap, css, html, user interface', 'Jan Vorisek', 'snipplicious.com', '', 280, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(94, 0, 0, 0, 3, 717, 0, 'Creative portfolio with hover effect', '', 'snippets, bootstrap, css, html, images, effects', 'Jan Vorisek', 'snipplicious.com', '', 339, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(95, 0, 0, 0, 6, 716, 0, 'Trendy login form', '', 'snippets, bootstrap, css, html, forms, login form, login', 'Jan Vorisek', 'snipplicious.com', '', 281, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(96, 0, 0, 0, 10, 715, 0, 'Pricing tables', 'Simple pricing tables based on Bootstrap panels with few lines of CSS.', 'snippets, bootstrap, css, html, tables', 'Jan Vorisek', 'snipplicious.com', '', 312, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(97, 0, 0, 0, 5, 714, 0, 'Users list', 'User management with accordion to show details about users.', 'snippets, bootstrap, css, html, user interface', 'Jan Vorisek', 'snipplicious.com', '', 289, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(98, 0, 0, 0, 6, 726, 0, 'Simple login form', 'Simple sign in form using default Bootstrap classes and Font Awesome icons. This is a minimalist solution for any website.', 'snippets, bootstrap, css, html, forms, user interface', 'Jan Vorisek', 'snipplicious.com', '', 284, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(99, 0, 0, 0, 14, 712, 0, 'Colored Sign In Form', 'Colored login form made to impress! This amazing piece of design is a lot different from all the other sign in forms. Give it a try!', 'snippets, bootstrap, css, html, forms, user interface, effects', 'Jan Vorisek', 'snipplicious.com', '', 397, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(100, 0, 0, 0, 15, 711, 0, 'Another shopping cart', 'Summary in a shopping card. Usable for any ecommerce website using Bootstrap', 'snippets, bootstrap, css, html, e-commerce, lists, user interface', 'Jan Vorisek', 'snipplicious.com', '', 279, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(101, 0, 0, 0, 17, 101, 0, 'jQuery Accordion Demo', 'A simple content accordion built with jQuery', 'accordion, panels, accordion panels', 'webdesignerhut', 'http://webdesignerhut.com/', '', 319, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(102, 0, 0, 0, 10, 319, 0, 'Pricing table with feature', '', 'price table, shop, table, responsive, price table, lists, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'BhaumikPatel', 'twitter.com/patel0phone', '', 332, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(103, 0, 0, 0, 16, 317, 0, 'Responsive bootstrap carousel', '', 'carousel, layouts, slider', 'BhaumikPatel', 'twitter.com/patel0phone', '', 372, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(104, 0, 0, 0, 17, 316, 0, 'Shop boxes with hover efect', '', 'shop, lists, panel, user interface,snippets, bootstrap, css, html', 'ErikAlserda', 'bootsnipp.com/ErikAlserda', '', 316, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(105, 0, 0, 0, 14, 318, 0, 'Registration form with terms', '', 'registration, forms, registration layout, registrationbox, registration window, registration page', 'MSBG', 'bootsnipp.com/MSBG', '', 343, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(106, 0, 0, 0, 17, 300, 0, 'Icons with text and animation effect', '', 'animation, icon boxes, image rounded, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'roxguel', 'bootsnipp.com/roxguel', '', 281, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(107, 0, 0, 0, 3, 260, 0, 'Bootstrap thumbnail gallery', '', 'gallery, thumbnails, image, image galery, thumbs,', 'mouse0270', 'twitter.com/mouse0270', '', 322, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(108, 0, 0, 0, 6, 261, 0, 'Login box with social buttons', '', 'login, social, social login, login buttons, login form', 'azhagu', 'bootsnipp.com/azhagu', '', 367, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(109, 0, 0, 0, 11, 704, 0, 'Bootstrap snippet Instagram user profile', '', 'user profile, profile header, profile', 'Deyson Bejarano', 'bootdey.com/users/profile/Dey-Dey', '', 364, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(110, 0, 0, 0, 2, 110, 0, 'Cool modal dialog with animation effect', '', 'dialog, modal dialog, animation, transition', 'roundcubee', 'roundcubee.blogspot.com/', '', 425, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(111, 0, 0, 0, 6, 703, 0, 'Bootstrap site login page', '', 'login, site, page, home, login box, login window, login page, login', 'Deyson Bejarano', 'bootdey.com/users/profile/Dey-Dey', '', 336, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(112, 0, 0, 0, 5, 701, 0, 'Home presentation layout with slider', '', 'carousel, layouts, slider', 'Deyson Bejarano', 'bootdey.com/users/profile/Dey-Dey', '', 299, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(113, 0, 0, 0, 6, 699, 0, 'Login box with social icons', '', 'login box, login window, login page, login', 'Deyson Bejarano', 'bootdey.com/users/profile/Dey-Dey', '', 341, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(114, 0, 0, 0, 17, 691, 0, 'Dashboard user count colored circle boxes', '', 'colored, image,dashboard, boxes, circle, css, framework', 'Deyson Bejarano', 'bootdey.com/users/profile/Dey-Dey', '', 376, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(115, 0, 0, 0, 5, 688, 0, 'Recent comments admin panel dashboard', '', 'comment list, recent comments, comments, code snippets, bootstrap blocks, bootstrap, code blocks, snippets', 'Deyson Bejarano', 'bootdey.com/users/profile/Dey-Dey', '', 350, 0, 0, 0, 0, 0, 0, 0, 1, '', '', ''),
(116, 0, 0, 0, 1, 0, 0, '', '', '', '', '', '', 1, 0, 0, 0, 0, 0, 0, 0, 0, '', '', ''),