Version Description
- Font awesome now included
- Spacing fix on hero block
- Support methods for the WooCommerce addon
- Security fix on CSV export
- Removed obsolete fonts
- PHP 5.6 check
Download this release
Release Info
Developer | satollo |
Plugin | Newsletter |
Version | 6.5.4 |
Comparing to | |
See all releases |
Code changes from version 6.5.3 to 6.5.4
- admin.css +34 -56
- css/fields.css +1 -1
- css/widgets.css +1 -1
- emails/blocks/hero/block.php +2 -2
- emails/edit.php +1 -1
- emails/emails.php +1 -1
- emails/tnp-composer/index-v2.php +2 -2
- emails/tnp-composer/index.php +2 -2
- includes/composer.php +200 -0
- includes/controls.php +10 -10
- includes/fields.php +14 -2
- includes/mailer.php +1 -1
- includes/module.php +1 -1
- main/index.php +13 -13
- main/smtp.php +1 -1
- plugin.php +9 -2
- readme.txt +10 -1
- statistics/index.php +4 -4
- statistics/view.php +4 -4
- style.css +4 -0
- subscription/lists.php +1 -1
- subscription/options.php +1 -1
- subscription/subscription.php +7 -3
- subscription/template.php +2 -2
- tnp-header.php +37 -35
- users/users.php +7 -0
- vendor/fa/LICENSE.txt +34 -0
- vendor/fa/css/all.min.css +5 -0
- vendor/fa/webfonts/fa-brands-400.woff +0 -0
- vendor/fa/webfonts/fa-brands-400.woff2 +0 -0
- vendor/fa/webfonts/fa-regular-400.woff +0 -0
- vendor/fa/webfonts/fa-regular-400.woff2 +0 -0
- vendor/fa/webfonts/fa-solid-900.woff +0 -0
- vendor/fa/webfonts/fa-solid-900.woff2 +0 -0
- vendor/fonts/CircularStd-Bold.eot +0 -0
- vendor/fonts/CircularStd-Bold.ttf +0 -0
- vendor/fonts/CircularStd-Bold.woff +0 -0
- vendor/fonts/CircularStd-Bold.woff2 +0 -0
- vendor/fonts/CircularStd-Medium.eot +0 -0
- vendor/fonts/CircularStd-Medium.ttf +0 -0
- vendor/fonts/CircularStd-Medium.woff +0 -0
- vendor/fonts/CircularStd-Medium.woff2 +0 -0
admin.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
-
@import url('
|
2 |
-
@import url('
|
3 |
Â
@import url('css/dropdown.css');
|
4 |
Â
@import url('vendor/jquery-ui/jquery-ui.min.css');
|
5 |
Â
@import url('css/fields.css');
|
@@ -13,8 +13,6 @@
|
|
13 |
Â
box-sizing: border-box;
|
14 |
Â
}
|
15 |
Â
|
16 |
-
|
17 |
-
|
18 |
Â
/* Color picker patch */
|
19 |
Â
#tnp-wrap .iris-picker, #tnp-wrap .iris-picker * {
|
20 |
Â
-moz-box-sizing: content-box;
|
@@ -103,26 +101,6 @@
|
|
103 |
Â
|
104 |
Â
|
105 |
Â
|
106 |
-
/* Global Fonts */
|
107 |
-
|
108 |
-
@font-face {
|
109 |
-
font-family: "Circular Std";
|
110 |
-
src: url("vendor/fonts/CircularStd-Medium.woff") format("woff"),
|
111 |
-
url("vendor/fonts/CircularStd-Medium.woff2") format("woff2"),
|
112 |
-
url("vendor/fonts/CircularStd-Medium.eot") format("embedded-opentype"),
|
113 |
-
url("vendor/fonts/CircularStd-Medium.ttf") format("truetype");
|
114 |
-
|
115 |
-
}
|
116 |
-
|
117 |
-
@font-face {
|
118 |
-
font-family: "Circular Std";
|
119 |
-
font-weight: bold;
|
120 |
-
src: url("vendor/fonts/CircularStd-Bold.woff") format("woff"),
|
121 |
-
url("vendor/fonts/CircularStd-Bold.woff2") format("woff2"),
|
122 |
-
url("vendor/fonts/CircularStd-Bold.eot") format("embedded-opentype"),
|
123 |
-
url("vendor/fonts/CircularStd-Bold.ttf") format("truetype");
|
124 |
-
}
|
125 |
-
|
126 |
Â
#tnp-wrap,
|
127 |
Â
#tnp-header,
|
128 |
Â
#tnp-body p,
|
@@ -131,7 +109,7 @@
|
|
131 |
Â
#tnp-body input,
|
132 |
Â
#tnp-body select,
|
133 |
Â
#tnp-body textarea {
|
134 |
-
font-family:
|
135 |
Â
-webkit-font-smoothing: antialiased; /* Chrome, Safari */
|
136 |
Â
-moz-osx-font-smoothing: grayscale; /* Firefox */
|
137 |
Â
}
|
@@ -140,7 +118,7 @@
|
|
140 |
Â
#tnp-body h2,
|
141 |
Â
#tnp-body h3,
|
142 |
Â
#tnp-body h4 {
|
143 |
-
font-family:
|
144 |
Â
-webkit-font-smoothing: antialiased; /* Chrome, Safari */
|
145 |
Â
-moz-osx-font-smoothing: grayscale; /* Firefox */
|
146 |
Â
}
|
@@ -154,7 +132,7 @@
|
|
154 |
Â
text-align: left;
|
155 |
Â
font-size: 12px;
|
156 |
Â
color: #fff;
|
157 |
-
font-family:
|
158 |
Â
}
|
159 |
Â
|
160 |
Â
#tnp-header input {
|
@@ -163,7 +141,7 @@
|
|
163 |
Â
|
164 |
Â
#tnp-header a {
|
165 |
Â
text-decoration: none;
|
166 |
-
/*font-family:
|
167 |
Â
color: white;
|
168 |
Â
letter-spacing: 0.1em;
|
169 |
Â
}
|
@@ -352,7 +330,7 @@
|
|
352 |
Â
|
353 |
Â
#tnp-body .widefat thead {
|
354 |
Â
background-color: #3498DB;
|
355 |
-
font-family:
|
356 |
Â
color: #fff !important;
|
357 |
Â
}
|
358 |
Â
|
@@ -548,7 +526,7 @@ table.clicks {
|
|
548 |
Â
box-shadow: none;
|
549 |
Â
background-color: #27AE60;
|
550 |
Â
padding: 8px;
|
551 |
-
font-family:
|
552 |
Â
font-size: 13px;
|
553 |
Â
color: #fff;
|
554 |
Â
cursor: pointer;
|
@@ -689,13 +667,13 @@ table.clicks {
|
|
689 |
Â
color: #FD5F65;
|
690 |
Â
text-transform: uppercase;
|
691 |
Â
letter-spacing: 0.2em;
|
692 |
-
/*font-family:
|
693 |
Â
font-size: 10px;
|
694 |
Â
border: 1px red solid;
|
695 |
Â
}
|
696 |
Â
|
697 |
Â
.tip-content {
|
698 |
-
/*font-family:
|
699 |
Â
font-weight: 500;
|
700 |
Â
font-size: 11px;
|
701 |
Â
color: #999999;
|
@@ -716,7 +694,7 @@ p.description {
|
|
716 |
Â
}
|
717 |
Â
|
718 |
Â
.tnp-theme-preview p {
|
719 |
-
font-family:
|
720 |
Â
font-size: 13px;
|
721 |
Â
letter-spacing: 0.2em;
|
722 |
Â
color: #fff;
|
@@ -814,7 +792,7 @@ p.description {
|
|
814 |
Â
|
815 |
Â
#tnp-heading h2 {
|
816 |
Â
color: #fff;
|
817 |
-
font-family:
|
818 |
Â
letter-spacing: 0.1rem;
|
819 |
Â
font-size: 1.1rem;
|
820 |
Â
line-height: 1.8rem;
|
@@ -827,7 +805,7 @@ p.description {
|
|
827 |
Â
|
828 |
Â
#tnp-heading h3 {
|
829 |
Â
color: #27AE60;
|
830 |
-
font-family:
|
831 |
Â
letter-spacing: 0.1rem;
|
832 |
Â
font-size: .8rem;
|
833 |
Â
line-height: 1.8rem;
|
@@ -856,7 +834,7 @@ p.description {
|
|
856 |
Â
padding: 6px 11px;
|
857 |
Â
text-decoration: none;
|
858 |
Â
text-transform: capitalize;
|
859 |
-
font-family:
|
860 |
Â
margin-left: 10px;
|
861 |
Â
font-size: 0.75rem;
|
862 |
Â
font-weight: 300;
|
@@ -898,7 +876,7 @@ p.description {
|
|
898 |
Â
}
|
899 |
Â
|
900 |
Â
#dashboard-widgets .postbox-container .postbox h3 {
|
901 |
-
font-family:
|
902 |
Â
letter-spacing: 0.05rem;
|
903 |
Â
background-color: #415b76;
|
904 |
Â
color: #fff;
|
@@ -955,7 +933,7 @@ p.description {
|
|
955 |
Â
text-decoration: none;
|
956 |
Â
color: #fff;
|
957 |
Â
display: block;
|
958 |
-
font-family:
|
959 |
Â
padding: 5px 10px;
|
960 |
Â
}
|
961 |
Â
|
@@ -966,7 +944,7 @@ p.description {
|
|
966 |
Â
margin-top: 10px;
|
967 |
Â
padding: 20px 10px 10px 40px;
|
968 |
Â
background-color: #28313C;
|
969 |
-
font-family:
|
970 |
Â
}
|
971 |
Â
|
972 |
Â
#tnp-footer div {
|
@@ -1025,7 +1003,7 @@ p.description {
|
|
1025 |
Â
border: none;
|
1026 |
Â
box-shadow: none;
|
1027 |
Â
color: #fff;
|
1028 |
-
font-family:
|
1029 |
Â
margin: 0px 2px;
|
1030 |
Â
width: auto;
|
1031 |
Â
}
|
@@ -1034,7 +1012,7 @@ p.description {
|
|
1034 |
Â
background-color: #3498db;
|
1035 |
Â
box-shadow: none;
|
1036 |
Â
color: #fff;
|
1037 |
-
font-family:
|
1038 |
Â
margin: 0px 2px;
|
1039 |
Â
}
|
1040 |
Â
|
@@ -1069,7 +1047,7 @@ span.wp-media-buttons-icon:before {
|
|
1069 |
Â
|
1070 |
Â
.tnp-paginator {
|
1071 |
Â
color: #fff;
|
1072 |
-
font-family:
|
1073 |
Â
margin: 10px 0px;
|
1074 |
Â
}
|
1075 |
Â
|
@@ -1107,7 +1085,7 @@ span.wp-media-buttons-icon:before {
|
|
1107 |
Â
|
1108 |
Â
.tnp-subscribers-search {
|
1109 |
Â
color: #fff;
|
1110 |
-
font-family:
|
1111 |
Â
background-color: #2C3E50;
|
1112 |
Â
padding: 20px;
|
1113 |
Â
border-radius: 5px;
|
@@ -1256,7 +1234,7 @@ table.widefat {
|
|
1256 |
Â
*/
|
1257 |
Â
|
1258 |
Â
#tnp-body .ui-widget {
|
1259 |
-
font-family:
|
1260 |
Â
}
|
1261 |
Â
|
1262 |
Â
#tnp-body #tabs {
|
@@ -1311,7 +1289,7 @@ table.widefat {
|
|
1311 |
Â
#tnp-body .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
|
1312 |
Â
background: #fff !important;
|
1313 |
Â
font-weight: normal;
|
1314 |
-
font-family:
|
1315 |
Â
}
|
1316 |
Â
|
1317 |
Â
|
@@ -1322,7 +1300,7 @@ table.widefat {
|
|
1322 |
Â
#tnp-body .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
|
1323 |
Â
border: none;
|
1324 |
Â
background: #ECF0F1;
|
1325 |
-
font-family:
|
1326 |
Â
}
|
1327 |
Â
|
1328 |
Â
|
@@ -1353,7 +1331,7 @@ table.widefat {
|
|
1353 |
Â
}
|
1354 |
Â
|
1355 |
Â
.tnp-extension-premium-box h3 {
|
1356 |
-
font-family:
|
1357 |
Â
padding: 5px 8px !important;
|
1358 |
Â
border-radius: 3px;
|
1359 |
Â
display: inline-block;
|
@@ -1367,7 +1345,7 @@ table.widefat {
|
|
1367 |
Â
}
|
1368 |
Â
|
1369 |
Â
.tnp-extension-free-box h3 {
|
1370 |
-
font-family:
|
1371 |
Â
padding: 5px 8px !important;
|
1372 |
Â
border-radius: 3px;
|
1373 |
Â
display: inline-block;
|
@@ -1381,7 +1359,7 @@ table.widefat {
|
|
1381 |
Â
}
|
1382 |
Â
|
1383 |
Â
.tnp-integration-box h3 {
|
1384 |
-
font-family:
|
1385 |
Â
padding: 5px 8px !important;
|
1386 |
Â
border-radius: 3px;
|
1387 |
Â
display: inline-block;
|
@@ -1399,7 +1377,7 @@ table.widefat {
|
|
1399 |
Â
position: absolute;
|
1400 |
Â
width: 100%;
|
1401 |
Â
padding: 12px;
|
1402 |
-
font-family:
|
1403 |
Â
}
|
1404 |
Â
|
1405 |
Â
.tnp-extension-free-action {
|
@@ -1407,7 +1385,7 @@ table.widefat {
|
|
1407 |
Â
position: absolute;
|
1408 |
Â
width: 100%;
|
1409 |
Â
padding: 12px;
|
1410 |
-
font-family:
|
1411 |
Â
}
|
1412 |
Â
|
1413 |
Â
.tnp-integration-action {
|
@@ -1415,7 +1393,7 @@ table.widefat {
|
|
1415 |
Â
position: absolute;
|
1416 |
Â
width: 100%;
|
1417 |
Â
padding: 12px;
|
1418 |
-
font-family:
|
1419 |
Â
}
|
1420 |
Â
|
1421 |
Â
|
@@ -1570,7 +1548,7 @@ img.tnp-extensions-free-badge {
|
|
1570 |
Â
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
|
1571 |
Â
border: none;
|
1572 |
Â
background: #ECF0F1;
|
1573 |
-
font-family:
|
1574 |
Â
}
|
1575 |
Â
|
1576 |
Â
|
@@ -1951,7 +1929,7 @@ input:checked + .slider:before {
|
|
1951 |
Â
}
|
1952 |
Â
|
1953 |
Â
.tnp-suggest-button {
|
1954 |
-
font-family:
|
1955 |
Â
margin-left: 8px;
|
1956 |
Â
border-radius: 3px;
|
1957 |
Â
background-color: #2980B9;
|
@@ -2002,7 +1980,7 @@ input:checked + .slider:before {
|
|
2002 |
Â
font-size: 16px;
|
2003 |
Â
color: #fff;
|
2004 |
Â
padding: 0px 70px 20px 20px;
|
2005 |
-
font-family:
|
2006 |
Â
border-bottom: 1px solid #282828;
|
2007 |
Â
}
|
2008 |
Â
|
@@ -2022,7 +2000,7 @@ input:checked + .slider:before {
|
|
2022 |
Â
.tnp-subject-category {
|
2023 |
Â
color: #565656;
|
2024 |
Â
margin: 25px 0px 10px 0px;
|
2025 |
-
/* font-family:
|
2026 |
Â
font-size: 12px;
|
2027 |
Â
text-transform: uppercase;
|
2028 |
Â
letter-spacing: 0.1em;
|
1 |
+
@import url('https://use.typekit.net/jlj2wjy.css');
|
2 |
+
@import url('vendor/fa/css/all.min.css');
|
3 |
Â
@import url('css/dropdown.css');
|
4 |
Â
@import url('vendor/jquery-ui/jquery-ui.min.css');
|
5 |
Â
@import url('css/fields.css');
|
13 |
Â
box-sizing: border-box;
|
14 |
Â
}
|
15 |
Â
|
Â
|
|
Â
|
|
16 |
Â
/* Color picker patch */
|
17 |
Â
#tnp-wrap .iris-picker, #tnp-wrap .iris-picker * {
|
18 |
Â
-moz-box-sizing: content-box;
|
101 |
Â
|
102 |
Â
|
103 |
Â
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
104 |
Â
#tnp-wrap,
|
105 |
Â
#tnp-header,
|
106 |
Â
#tnp-body p,
|
109 |
Â
#tnp-body input,
|
110 |
Â
#tnp-body select,
|
111 |
Â
#tnp-body textarea {
|
112 |
+
font-family: soleil, sans-serif;
|
113 |
Â
-webkit-font-smoothing: antialiased; /* Chrome, Safari */
|
114 |
Â
-moz-osx-font-smoothing: grayscale; /* Firefox */
|
115 |
Â
}
|
118 |
Â
#tnp-body h2,
|
119 |
Â
#tnp-body h3,
|
120 |
Â
#tnp-body h4 {
|
121 |
+
font-family: soleil, sans-serif;
|
122 |
Â
-webkit-font-smoothing: antialiased; /* Chrome, Safari */
|
123 |
Â
-moz-osx-font-smoothing: grayscale; /* Firefox */
|
124 |
Â
}
|
132 |
Â
text-align: left;
|
133 |
Â
font-size: 12px;
|
134 |
Â
color: #fff;
|
135 |
+
font-family: soleil, sans-serif;
|
136 |
Â
}
|
137 |
Â
|
138 |
Â
#tnp-header input {
|
141 |
Â
|
142 |
Â
#tnp-header a {
|
143 |
Â
text-decoration: none;
|
144 |
+
/*font-family: soleil,sans-serif;*/
|
145 |
Â
color: white;
|
146 |
Â
letter-spacing: 0.1em;
|
147 |
Â
}
|
330 |
Â
|
331 |
Â
#tnp-body .widefat thead {
|
332 |
Â
background-color: #3498DB;
|
333 |
+
font-family: soleil, sans-serif;
|
334 |
Â
color: #fff !important;
|
335 |
Â
}
|
336 |
Â
|
526 |
Â
box-shadow: none;
|
527 |
Â
background-color: #27AE60;
|
528 |
Â
padding: 8px;
|
529 |
+
font-family: soleil, sans-serif;
|
530 |
Â
font-size: 13px;
|
531 |
Â
color: #fff;
|
532 |
Â
cursor: pointer;
|
667 |
Â
color: #FD5F65;
|
668 |
Â
text-transform: uppercase;
|
669 |
Â
letter-spacing: 0.2em;
|
670 |
+
/*font-family: soleil;*/
|
671 |
Â
font-size: 10px;
|
672 |
Â
border: 1px red solid;
|
673 |
Â
}
|
674 |
Â
|
675 |
Â
.tip-content {
|
676 |
+
/*font-family: soleil;*/
|
677 |
Â
font-weight: 500;
|
678 |
Â
font-size: 11px;
|
679 |
Â
color: #999999;
|
694 |
Â
}
|
695 |
Â
|
696 |
Â
.tnp-theme-preview p {
|
697 |
+
font-family: soleil;
|
698 |
Â
font-size: 13px;
|
699 |
Â
letter-spacing: 0.2em;
|
700 |
Â
color: #fff;
|
792 |
Â
|
793 |
Â
#tnp-heading h2 {
|
794 |
Â
color: #fff;
|
795 |
+
font-family: soleil, sans-serif;
|
796 |
Â
letter-spacing: 0.1rem;
|
797 |
Â
font-size: 1.1rem;
|
798 |
Â
line-height: 1.8rem;
|
805 |
Â
|
806 |
Â
#tnp-heading h3 {
|
807 |
Â
color: #27AE60;
|
808 |
+
font-family: soleil, sans-serif;
|
809 |
Â
letter-spacing: 0.1rem;
|
810 |
Â
font-size: .8rem;
|
811 |
Â
line-height: 1.8rem;
|
834 |
Â
padding: 6px 11px;
|
835 |
Â
text-decoration: none;
|
836 |
Â
text-transform: capitalize;
|
837 |
+
font-family: soleil, sans-serif;
|
838 |
Â
margin-left: 10px;
|
839 |
Â
font-size: 0.75rem;
|
840 |
Â
font-weight: 300;
|
876 |
Â
}
|
877 |
Â
|
878 |
Â
#dashboard-widgets .postbox-container .postbox h3 {
|
879 |
+
font-family: soleil, sans-serif;
|
880 |
Â
letter-spacing: 0.05rem;
|
881 |
Â
background-color: #415b76;
|
882 |
Â
color: #fff;
|
933 |
Â
text-decoration: none;
|
934 |
Â
color: #fff;
|
935 |
Â
display: block;
|
936 |
+
font-family: soleil, sans-serif;
|
937 |
Â
padding: 5px 10px;
|
938 |
Â
}
|
939 |
Â
|
944 |
Â
margin-top: 10px;
|
945 |
Â
padding: 20px 10px 10px 40px;
|
946 |
Â
background-color: #28313C;
|
947 |
+
font-family: soleil, sans-serif;
|
948 |
Â
}
|
949 |
Â
|
950 |
Â
#tnp-footer div {
|
1003 |
Â
border: none;
|
1004 |
Â
box-shadow: none;
|
1005 |
Â
color: #fff;
|
1006 |
+
font-family: soleil,sans-serif;
|
1007 |
Â
margin: 0px 2px;
|
1008 |
Â
width: auto;
|
1009 |
Â
}
|
1012 |
Â
background-color: #3498db;
|
1013 |
Â
box-shadow: none;
|
1014 |
Â
color: #fff;
|
1015 |
+
font-family: soleil,sans-serif;
|
1016 |
Â
margin: 0px 2px;
|
1017 |
Â
}
|
1018 |
Â
|
1047 |
Â
|
1048 |
Â
.tnp-paginator {
|
1049 |
Â
color: #fff;
|
1050 |
+
font-family: soleil,sans-serif;
|
1051 |
Â
margin: 10px 0px;
|
1052 |
Â
}
|
1053 |
Â
|
1085 |
Â
|
1086 |
Â
.tnp-subscribers-search {
|
1087 |
Â
color: #fff;
|
1088 |
+
font-family: soleil, sans-serif;
|
1089 |
Â
background-color: #2C3E50;
|
1090 |
Â
padding: 20px;
|
1091 |
Â
border-radius: 5px;
|
1234 |
Â
*/
|
1235 |
Â
|
1236 |
Â
#tnp-body .ui-widget {
|
1237 |
+
font-family: soleil, sans-serif;
|
1238 |
Â
}
|
1239 |
Â
|
1240 |
Â
#tnp-body #tabs {
|
1289 |
Â
#tnp-body .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
|
1290 |
Â
background: #fff !important;
|
1291 |
Â
font-weight: normal;
|
1292 |
+
font-family: soleil, sans-serif;
|
1293 |
Â
}
|
1294 |
Â
|
1295 |
Â
|
1300 |
Â
#tnp-body .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
|
1301 |
Â
border: none;
|
1302 |
Â
background: #ECF0F1;
|
1303 |
+
font-family: soleil, sans-serif;
|
1304 |
Â
}
|
1305 |
Â
|
1306 |
Â
|
1331 |
Â
}
|
1332 |
Â
|
1333 |
Â
.tnp-extension-premium-box h3 {
|
1334 |
+
font-family: soleil, sans-serif;
|
1335 |
Â
padding: 5px 8px !important;
|
1336 |
Â
border-radius: 3px;
|
1337 |
Â
display: inline-block;
|
1345 |
Â
}
|
1346 |
Â
|
1347 |
Â
.tnp-extension-free-box h3 {
|
1348 |
+
font-family: soleil, sans-serif;
|
1349 |
Â
padding: 5px 8px !important;
|
1350 |
Â
border-radius: 3px;
|
1351 |
Â
display: inline-block;
|
1359 |
Â
}
|
1360 |
Â
|
1361 |
Â
.tnp-integration-box h3 {
|
1362 |
+
font-family: soleil, sans-serif;
|
1363 |
Â
padding: 5px 8px !important;
|
1364 |
Â
border-radius: 3px;
|
1365 |
Â
display: inline-block;
|
1377 |
Â
position: absolute;
|
1378 |
Â
width: 100%;
|
1379 |
Â
padding: 12px;
|
1380 |
+
font-family: soleil, sans-serif;
|
1381 |
Â
}
|
1382 |
Â
|
1383 |
Â
.tnp-extension-free-action {
|
1385 |
Â
position: absolute;
|
1386 |
Â
width: 100%;
|
1387 |
Â
padding: 12px;
|
1388 |
+
font-family: soleil, sans-serif;
|
1389 |
Â
}
|
1390 |
Â
|
1391 |
Â
.tnp-integration-action {
|
1393 |
Â
position: absolute;
|
1394 |
Â
width: 100%;
|
1395 |
Â
padding: 12px;
|
1396 |
+
font-family: soleil, sans-serif;
|
1397 |
Â
}
|
1398 |
Â
|
1399 |
Â
|
1548 |
Â
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
|
1549 |
Â
border: none;
|
1550 |
Â
background: #ECF0F1;
|
1551 |
+
font-family: soleil, sans-serif;
|
1552 |
Â
}
|
1553 |
Â
|
1554 |
Â
|
1929 |
Â
}
|
1930 |
Â
|
1931 |
Â
.tnp-suggest-button {
|
1932 |
+
font-family: soleil, sans-serif;
|
1933 |
Â
margin-left: 8px;
|
1934 |
Â
border-radius: 3px;
|
1935 |
Â
background-color: #2980B9;
|
1980 |
Â
font-size: 16px;
|
1981 |
Â
color: #fff;
|
1982 |
Â
padding: 0px 70px 20px 20px;
|
1983 |
+
font-family: soleil, sans-serif;
|
1984 |
Â
border-bottom: 1px solid #282828;
|
1985 |
Â
}
|
1986 |
Â
|
2000 |
Â
.tnp-subject-category {
|
2001 |
Â
color: #565656;
|
2002 |
Â
margin: 25px 0px 10px 0px;
|
2003 |
+
/* font-family: soleil; */
|
2004 |
Â
font-size: 12px;
|
2005 |
Â
text-transform: uppercase;
|
2006 |
Â
letter-spacing: 0.1em;
|
css/fields.css
CHANGED
@@ -74,7 +74,7 @@
|
|
74 |
Â
font-weight: 300;
|
75 |
Â
border-bottom: 1px solid #fff;
|
76 |
Â
margin: 25px 0px 10px 0px;
|
77 |
-
font-family:
|
78 |
Â
font-weight: 300;
|
79 |
Â
padding-bottom: 5px;
|
80 |
Â
color: #868686;
|
74 |
Â
font-weight: 300;
|
75 |
Â
border-bottom: 1px solid #fff;
|
76 |
Â
margin: 25px 0px 10px 0px;
|
77 |
+
font-family: soleil, sans-serif;
|
78 |
Â
font-weight: 300;
|
79 |
Â
padding-bottom: 5px;
|
80 |
Â
color: #868686;
|
css/widgets.css
CHANGED
@@ -24,7 +24,7 @@ class "tnp-widget"
|
|
24 |
Â
|
25 |
Â
/* Widget title */
|
26 |
Â
.tnp-widget h3 {
|
27 |
-
font-family:
|
28 |
Â
letter-spacing: 0.05rem;
|
29 |
Â
background-color: #2980B9;
|
30 |
Â
color: #fff!important;
|
24 |
Â
|
25 |
Â
/* Widget title */
|
26 |
Â
.tnp-widget h3 {
|
27 |
+
font-family: soleil, sans-serif;
|
28 |
Â
letter-spacing: 0.05rem;
|
29 |
Â
background-color: #2980B9;
|
30 |
Â
color: #fff!important;
|
emails/blocks/hero/block.php
CHANGED
@@ -105,7 +105,7 @@ if (!empty($options['image']['id'])) {
|
|
105 |
Â
}
|
106 |
Â
.hero-image {
|
107 |
Â
max-width: 100%!important;
|
108 |
-
display: block;
|
109 |
Â
border: 0px;
|
110 |
Â
}
|
111 |
Â
</style>
|
@@ -115,7 +115,7 @@ if (!empty($options['image']['id'])) {
|
|
115 |
Â
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
116 |
Â
<?php if ($media) { ?>
|
117 |
Â
<tr>
|
118 |
-
<td class="padding-copy tnpc-row-edit">
|
119 |
Â
<a href="<?php echo $url ?>" target="_blank" rel="noopener nofollow">
|
120 |
Â
<img src="<?php echo $media->url ?>" border="0" alt="<?php echo esc_attr($media->alt) ?>" width="<?php echo $media->width ?>" height="<?php echo $media->height ?>" inline-class="hero-image">
|
121 |
Â
</a>
|
105 |
Â
}
|
106 |
Â
.hero-image {
|
107 |
Â
max-width: 100%!important;
|
108 |
+
display: inline-block;
|
109 |
Â
border: 0px;
|
110 |
Â
}
|
111 |
Â
</style>
|
115 |
Â
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
116 |
Â
<?php if ($media) { ?>
|
117 |
Â
<tr>
|
118 |
+
<td class="padding-copy tnpc-row-edit" align="center" style="text-align: center; line-height: 0; padding-bottom: 20px;">
|
119 |
Â
<a href="<?php echo $url ?>" target="_blank" rel="noopener nofollow">
|
120 |
Â
<img src="<?php echo $media->url ?>" border="0" alt="<?php echo esc_attr($media->alt) ?>" width="<?php echo $media->width ?>" height="<?php echo $media->height ?>" inline-class="hero-image">
|
121 |
Â
</a>
|
emails/edit.php
CHANGED
@@ -297,7 +297,7 @@ if ($email['status'] != 'sent') {
|
|
297 |
Â
<?php } else { ?>
|
298 |
Â
|
299 |
Â
<a class="button-primary" href="<?php echo $module->get_editor_url($email_id, $editor_type)?>">
|
300 |
-
<i class="
|
301 |
Â
</a>
|
302 |
Â
|
303 |
Â
<?php } ?>
|
297 |
Â
<?php } else { ?>
|
298 |
Â
|
299 |
Â
<a class="button-primary" href="<?php echo $module->get_editor_url($email_id, $editor_type)?>">
|
300 |
+
<i class="fas fa-edit"></i> <?php _e('Edit', 'newsletter') ?>
|
301 |
Â
</a>
|
302 |
Â
|
303 |
Â
<?php } ?>
|
emails/emails.php
CHANGED
@@ -480,7 +480,7 @@ class NewsletterEmails extends NewsletterModule {
|
|
480 |
Â
}
|
481 |
Â
|
482 |
Â
return '<a class="button-primary" href="' . $edit_url . '">' .
|
483 |
-
'<i class="
|
484 |
Â
}
|
485 |
Â
|
486 |
Â
/** Returns the correct editor type for the provided newsletter. Contains backward compatibility code. */
|
480 |
Â
}
|
481 |
Â
|
482 |
Â
return '<a class="button-primary" href="' . $edit_url . '">' .
|
483 |
+
'<i class="fas fa-' . $icon_class . '"></i> ' . __('Edit', 'newsletter') . '</a>';
|
484 |
Â
}
|
485 |
Â
|
486 |
Â
/** Returns the correct editor type for the provided newsletter. Contains backward compatibility code. */
|
emails/tnp-composer/index-v2.php
CHANGED
@@ -67,9 +67,9 @@ $fields = new NewsletterFields($controls);
|
|
67 |
Â
<div class="tnpc-tabs">
|
68 |
Â
<button class="tablinks" onclick="openTab(event, 'tnpc-blocks')" id="defaultOpen"><?php _e('Blocks', 'newsletter') ?></button>
|
69 |
Â
<button class="tablinks" onclick="openTab(event, 'tnpc-global-styles')"><?php _e('Global Styles', 'newsletter') ?></button>
|
70 |
-
<button class="tablinks" onclick="openTab(event, 'tnpc-mobile-tab')"><i class="
|
71 |
Â
<?php if ($show_test) { ?>
|
72 |
-
<button class="tablinks" onclick="openTab(event, 'tnpc-test-tab')"><i class="
|
73 |
Â
<?php } ?>
|
74 |
Â
|
75 |
Â
</div>
|
67 |
Â
<div class="tnpc-tabs">
|
68 |
Â
<button class="tablinks" onclick="openTab(event, 'tnpc-blocks')" id="defaultOpen"><?php _e('Blocks', 'newsletter') ?></button>
|
69 |
Â
<button class="tablinks" onclick="openTab(event, 'tnpc-global-styles')"><?php _e('Global Styles', 'newsletter') ?></button>
|
70 |
+
<button class="tablinks" onclick="openTab(event, 'tnpc-mobile-tab')"><i class="fas fa-mobile"></i> <?php _e('Mobile Preview', 'newsletter') ?></button>
|
71 |
Â
<?php if ($show_test) { ?>
|
72 |
+
<button class="tablinks" onclick="openTab(event, 'tnpc-test-tab')"><i class="fas fa-paper-plane"></i> <?php _e('Test', 'newsletter') ?></button>
|
73 |
Â
<?php } ?>
|
74 |
Â
|
75 |
Â
</div>
|
emails/tnp-composer/index.php
CHANGED
@@ -66,9 +66,9 @@ $block_options = get_option('newsletter_main');
|
|
66 |
Â
|
67 |
Â
<div class="tnpc-tabs">
|
68 |
Â
<button class="tablinks" onclick="openTab(event, 'tnpc-blocks')" id="defaultOpen"><?php _e('Blocks', 'newsletter') ?></button>
|
69 |
-
<button class="tablinks" onclick="openTab(event, 'tnpc-mobile-tab')"><i class="
|
70 |
Â
<?php if ($show_test) { ?>
|
71 |
-
<button class="tablinks" onclick="openTab(event, 'tnpc-test-tab')"><i class="
|
72 |
Â
<?php } ?>
|
73 |
Â
|
74 |
Â
</div>
|
66 |
Â
|
67 |
Â
<div class="tnpc-tabs">
|
68 |
Â
<button class="tablinks" onclick="openTab(event, 'tnpc-blocks')" id="defaultOpen"><?php _e('Blocks', 'newsletter') ?></button>
|
69 |
+
<button class="tablinks" onclick="openTab(event, 'tnpc-mobile-tab')"><i class="fas fa-mobile"></i> <?php _e('Mobile Preview', 'newsletter') ?></button>
|
70 |
Â
<?php if ($show_test) { ?>
|
71 |
+
<button class="tablinks" onclick="openTab(event, 'tnpc-test-tab')"><i class="fas fa-paper-plane"></i> <?php _e('Test', 'newsletter') ?></button>
|
72 |
Â
<?php } ?>
|
73 |
Â
|
74 |
Â
</div>
|
includes/composer.php
CHANGED
@@ -265,3 +265,203 @@ class TNP_Composer {
|
|
265 |
Â
}
|
266 |
Â
|
267 |
Â
}
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
265 |
Â
}
|
266 |
Â
|
267 |
Â
}
|
268 |
+
|
269 |
+
/**
|
270 |
+
* Generate multicolumn and responsive html template for email.
|
271 |
+
* Initialize class with max columns per row and start to add cells.
|
272 |
+
*/
|
273 |
+
class TNP_Composer_Grid_System {
|
274 |
+
/**
|
275 |
+
* @var TNP_Composer_Grid_Row[]
|
276 |
+
*/
|
277 |
+
private $rows;
|
278 |
+
|
279 |
+
/**
|
280 |
+
* @var int
|
281 |
+
*/
|
282 |
+
private $cells_per_row;
|
283 |
+
|
284 |
+
/**
|
285 |
+
* @var int
|
286 |
+
*/
|
287 |
+
private $cells_counter;
|
288 |
+
|
289 |
+
/**
|
290 |
+
* TNP_Composer_Grid_System constructor.
|
291 |
+
*
|
292 |
+
* @param int $columns_per_row Max columns per row
|
293 |
+
*/
|
294 |
+
public function __construct( $columns_per_row ) {
|
295 |
+
$this->cells_per_row = $columns_per_row;
|
296 |
+
$this->cells_counter = 0;
|
297 |
+
}
|
298 |
+
|
299 |
+
public function __toString() {
|
300 |
+
return $this->render();
|
301 |
+
}
|
302 |
+
|
303 |
+
/**
|
304 |
+
* Add cell to grid
|
305 |
+
*
|
306 |
+
* @param TNP_Composer_Grid_Cell $cell
|
307 |
+
*/
|
308 |
+
public function add_cell( $cell ) {
|
309 |
+
|
310 |
+
if ( $this->cells_counter % $this->cells_per_row === 0 ) {
|
311 |
+
$this->add_row( new TNP_Composer_Grid_Row() );
|
312 |
+
}
|
313 |
+
|
314 |
+
$row_idx = (int) floor( $this->cells_counter / $this->cells_per_row );
|
315 |
+
$this->rows[ $row_idx ]->add_cell( $cell );
|
316 |
+
$this->cells_counter ++;
|
317 |
+
|
318 |
+
}
|
319 |
+
|
320 |
+
private function add_row( $row ) {
|
321 |
+
$this->rows[] = $row;
|
322 |
+
}
|
323 |
+
|
324 |
+
public function render() {
|
325 |
+
|
326 |
+
$str = '';
|
327 |
+
foreach ( $this->rows as $row ) {
|
328 |
+
$str .= $row->render();
|
329 |
+
}
|
330 |
+
|
331 |
+
return $str;
|
332 |
+
}
|
333 |
+
}
|
334 |
+
|
335 |
+
/**
|
336 |
+
* Class TNP_Composer_Grid_Row
|
337 |
+
*/
|
338 |
+
class TNP_Composer_Grid_Row {
|
339 |
+
|
340 |
+
/**
|
341 |
+
* @var TNP_Composer_Grid_Cell[]
|
342 |
+
*/
|
343 |
+
private $cells;
|
344 |
+
|
345 |
+
public function __construct( ...$cells ) {
|
346 |
+
if ( ! empty( $cells ) ) {
|
347 |
+
foreach ( $cells as $cell ) {
|
348 |
+
$this->add_cell( $cell );
|
349 |
+
}
|
350 |
+
}
|
351 |
+
}
|
352 |
+
|
353 |
+
/**
|
354 |
+
* @param TNP_Composer_Grid_Cell $cell
|
355 |
+
*/
|
356 |
+
public function add_cell( $cell ) {
|
357 |
+
$this->cells[] = $cell;
|
358 |
+
}
|
359 |
+
|
360 |
+
public function render() {
|
361 |
+
$rendered_cells = '';
|
362 |
+
$column_percentage_width = round( 100 / $this->cells_count(), 0, PHP_ROUND_HALF_DOWN ) . '%';
|
363 |
+
foreach ( $this->cells as $cell ) {
|
364 |
+
$rendered_cells .= $cell->render( [ 'width' => $column_percentage_width ] );
|
365 |
+
}
|
366 |
+
|
367 |
+
$row_template = $this->get_template();
|
368 |
+
|
369 |
+
return str_replace( 'TNP_ROW_CONTENT_PH', $rendered_cells, $row_template );
|
370 |
+
}
|
371 |
+
|
372 |
+
private function cells_count() {
|
373 |
+
return count( $this->cells );
|
374 |
+
}
|
375 |
+
|
376 |
+
private function get_template() {
|
377 |
+
return "<table border='0'
|
378 |
+
cellpadding='0'
|
379 |
+
cellspacing='0'
|
380 |
+
width='100%'>
|
381 |
+
<tbody>
|
382 |
+
<tr>
|
383 |
+
<td>
|
384 |
+
TNP_ROW_CONTENT_PH
|
385 |
+
</td>
|
386 |
+
</tr>
|
387 |
+
</tbody>
|
388 |
+
</table>";
|
389 |
+
}
|
390 |
+
}
|
391 |
+
|
392 |
+
/**
|
393 |
+
* Class TNP_Composer_Grid_Cell
|
394 |
+
*/
|
395 |
+
class TNP_Composer_Grid_Cell {
|
396 |
+
/**
|
397 |
+
* @var string
|
398 |
+
*/
|
399 |
+
private $content;
|
400 |
+
|
401 |
+
/**
|
402 |
+
* @var array
|
403 |
+
*/
|
404 |
+
public $args;
|
405 |
+
|
406 |
+
public function __construct( $content = null, $args = [] ) {
|
407 |
+
$default_args = [
|
408 |
+
'width' => '100%',
|
409 |
+
'class' => '',
|
410 |
+
'align' => 'left',
|
411 |
+
'valign' => 'top'
|
412 |
+
];
|
413 |
+
|
414 |
+
$this->args = array_merge( $default_args, $args );
|
415 |
+
|
416 |
+
$this->content = $content ? $content : '';
|
417 |
+
}
|
418 |
+
|
419 |
+
public function add_content( $content ) {
|
420 |
+
$this->content .= $content;
|
421 |
+
}
|
422 |
+
|
423 |
+
public function render( $args ) {
|
424 |
+
$this->args = array_merge( $this->args, $args );
|
425 |
+
|
426 |
+
$column_template = $this->get_template();
|
427 |
+
$column = str_replace(
|
428 |
+
[
|
429 |
+
'TNP_ALIGN_PH',
|
430 |
+
'TNP_VALIGN_PH',
|
431 |
+
'TNP_WIDTH_PH',
|
432 |
+
'TNP_CLASS_PH',
|
433 |
+
'TNP_COLUMN_CONTENT_PH'
|
434 |
+
],
|
435 |
+
[
|
436 |
+
$this->args['align'],
|
437 |
+
$this->args['valign'],
|
438 |
+
$this->args['width'],
|
439 |
+
$this->args['class'],
|
440 |
+
$this->content
|
441 |
+
],
|
442 |
+
$column_template );
|
443 |
+
|
444 |
+
return $column;
|
445 |
+
}
|
446 |
+
|
447 |
+
private function get_template() {
|
448 |
+
return "<table border='0'
|
449 |
+
cellpadding='0'
|
450 |
+
cellspacing='0'
|
451 |
+
width='TNP_WIDTH_PH'
|
452 |
+
align='left'
|
453 |
+
class='responsive-table'>
|
454 |
+
<tbody>
|
455 |
+
<tr>
|
456 |
+
<td border='0'
|
457 |
+
style='padding: 20px 10px 40px;'
|
458 |
+
align='TNP_ALIGN_PH'
|
459 |
+
valign='TNP_VALIGN_PH'
|
460 |
+
class='TNP_CLASS_PH'>
|
461 |
+
TNP_COLUMN_CONTENT_PH
|
462 |
+
</td>
|
463 |
+
</tr>
|
464 |
+
</tbody>
|
465 |
+
</table>";
|
466 |
+
}
|
467 |
+
}
|
includes/controls.php
CHANGED
@@ -792,14 +792,14 @@ class NewsletterControls {
|
|
792 |
Â
* With translated "Save" label.
|
793 |
Â
*/
|
794 |
Â
function button_save($function = null) {
|
795 |
-
$this->button_primary('save', '<i class="
|
796 |
Â
}
|
797 |
Â
|
798 |
Â
function button_reset($data = '') {
|
799 |
Â
echo '<button class="button-secondary" onclick="this.form.btn.value=\'' . esc_attr($data) . '\';this.form.act.value=\'reset\';if (!confirm(\'';
|
800 |
Â
echo esc_attr(esc_js(__('Proceed?', 'newsletter')));
|
801 |
Â
echo '\')) return false;">';
|
802 |
-
echo '<i class="
|
803 |
Â
echo esc_html(__('Reset', 'newsletter'));
|
804 |
Â
echo '</button>';
|
805 |
Â
}
|
@@ -809,13 +809,13 @@ class NewsletterControls {
|
|
809 |
Â
}
|
810 |
Â
|
811 |
Â
function button_configure($url) {
|
812 |
-
echo '<a href="', esc_attr($url), '" class="button-primary"><i class="
|
813 |
Â
}
|
814 |
Â
|
815 |
Â
function button_back($url) {
|
816 |
Â
echo '<a href="';
|
817 |
Â
echo esc_attr($url);
|
818 |
-
echo '" class="button-primary"><i class="
|
819 |
Â
_e('Back', 'newsletter');
|
820 |
Â
echo '</a>';
|
821 |
Â
}
|
@@ -828,7 +828,7 @@ class NewsletterControls {
|
|
828 |
Â
echo '<button class="button-secondary" onclick="this.form.btn.value=\'' . esc_attr($data) . '\';this.form.act.value=\'copy\';if (!confirm(\'';
|
829 |
Â
echo esc_attr(esc_js(__('Proceed?', 'newsletter')));
|
830 |
Â
echo '\')) return false;">';
|
831 |
-
echo '<i class="
|
832 |
Â
echo esc_html(__('Duplicate', 'newsletter'));
|
833 |
Â
echo '</button>';
|
834 |
Â
}
|
@@ -841,7 +841,7 @@ class NewsletterControls {
|
|
841 |
Â
echo '<button class="button-secondary" onclick="this.form.btn.value=\'' . esc_attr($data) . '\';this.form.act.value=\'delete\';if (!confirm(\'';
|
842 |
Â
echo esc_attr(esc_js(__('Proceed?', 'newsletter')));
|
843 |
Â
echo '\')) return false;">';
|
844 |
-
echo '<i class="
|
845 |
Â
echo esc_html(__('Delete', 'newsletter'));
|
846 |
Â
echo '</button>';
|
847 |
Â
}
|
@@ -1120,7 +1120,7 @@ class NewsletterControls {
|
|
1120 |
Â
function preferences_select($name = 'preference', $empty_label = null) {
|
1121 |
Â
$lists = $this->get_list_options($empty_label);
|
1122 |
Â
$this->select($name, $lists);
|
1123 |
-
echo ' <a href="admin.php?page=newsletter_subscription_lists" target="_blank"><i class="
|
1124 |
Â
}
|
1125 |
Â
|
1126 |
Â
function lists_select($name = 'list', $empty_label = null) {
|
@@ -1595,15 +1595,15 @@ class NewsletterControls {
|
|
1595 |
Â
* @param string $label
|
1596 |
Â
*/
|
1597 |
Â
static function help($url, $label = '') {
|
1598 |
-
echo '<a href="', $url, '" target="_blank" title="', esc_attr($label), '"><i class="
|
1599 |
Â
}
|
1600 |
Â
|
1601 |
Â
static function idea($url, $label = '') {
|
1602 |
-
echo '<a href="', $url, '" target="_blank" title="', esc_attr($label), '"><i class="
|
1603 |
Â
}
|
1604 |
Â
|
1605 |
Â
static function field_help($url, $text = '') {
|
1606 |
-
echo '<a href="', $url, '" target="_blank" style="text-decoration: none" title="' . esc_attr(__('Read more', 'newsletter')) . '"><i class="
|
1607 |
Â
}
|
1608 |
Â
|
1609 |
Â
/**
|
792 |
Â
* With translated "Save" label.
|
793 |
Â
*/
|
794 |
Â
function button_save($function = null) {
|
795 |
+
$this->button_primary('save', '<i class="fas fa-save"></i> ' . __('Save', 'newsletter'), $function);
|
796 |
Â
}
|
797 |
Â
|
798 |
Â
function button_reset($data = '') {
|
799 |
Â
echo '<button class="button-secondary" onclick="this.form.btn.value=\'' . esc_attr($data) . '\';this.form.act.value=\'reset\';if (!confirm(\'';
|
800 |
Â
echo esc_attr(esc_js(__('Proceed?', 'newsletter')));
|
801 |
Â
echo '\')) return false;">';
|
802 |
+
echo '<i class="fas fa-reply"></i> ';
|
803 |
Â
echo esc_html(__('Reset', 'newsletter'));
|
804 |
Â
echo '</button>';
|
805 |
Â
}
|
809 |
Â
}
|
810 |
Â
|
811 |
Â
function button_configure($url) {
|
812 |
+
echo '<a href="', esc_attr($url), '" class="button-primary"><i class="fas fa-cog"></i>', _e('Configure', 'newsletter'), '</a>';
|
813 |
Â
}
|
814 |
Â
|
815 |
Â
function button_back($url) {
|
816 |
Â
echo '<a href="';
|
817 |
Â
echo esc_attr($url);
|
818 |
+
echo '" class="button-primary"><i class="fas fa-chevron-left"></i> ';
|
819 |
Â
_e('Back', 'newsletter');
|
820 |
Â
echo '</a>';
|
821 |
Â
}
|
828 |
Â
echo '<button class="button-secondary" onclick="this.form.btn.value=\'' . esc_attr($data) . '\';this.form.act.value=\'copy\';if (!confirm(\'';
|
829 |
Â
echo esc_attr(esc_js(__('Proceed?', 'newsletter')));
|
830 |
Â
echo '\')) return false;">';
|
831 |
+
echo '<i class="fas fa-copy"></i> ';
|
832 |
Â
echo esc_html(__('Duplicate', 'newsletter'));
|
833 |
Â
echo '</button>';
|
834 |
Â
}
|
841 |
Â
echo '<button class="button-secondary" onclick="this.form.btn.value=\'' . esc_attr($data) . '\';this.form.act.value=\'delete\';if (!confirm(\'';
|
842 |
Â
echo esc_attr(esc_js(__('Proceed?', 'newsletter')));
|
843 |
Â
echo '\')) return false;">';
|
844 |
+
echo '<i class="fas fa-times"></i> ';
|
845 |
Â
echo esc_html(__('Delete', 'newsletter'));
|
846 |
Â
echo '</button>';
|
847 |
Â
}
|
1120 |
Â
function preferences_select($name = 'preference', $empty_label = null) {
|
1121 |
Â
$lists = $this->get_list_options($empty_label);
|
1122 |
Â
$this->select($name, $lists);
|
1123 |
+
echo ' <a href="admin.php?page=newsletter_subscription_lists" target="_blank"><i class="fas fa-edit"></i></a>';
|
1124 |
Â
}
|
1125 |
Â
|
1126 |
Â
function lists_select($name = 'list', $empty_label = null) {
|
1595 |
Â
* @param string $label
|
1596 |
Â
*/
|
1597 |
Â
static function help($url, $label = '') {
|
1598 |
+
echo '<a href="', $url, '" target="_blank" title="', esc_attr($label), '"><i class="fas fa-question-circle-o"></i></a>';
|
1599 |
Â
}
|
1600 |
Â
|
1601 |
Â
static function idea($url, $label = '') {
|
1602 |
+
echo '<a href="', $url, '" target="_blank" title="', esc_attr($label), '"><i class="fas fa-lightbulb-o"></i></a>';
|
1603 |
Â
}
|
1604 |
Â
|
1605 |
Â
static function field_help($url, $text = '') {
|
1606 |
+
echo '<a href="', $url, '" target="_blank" style="text-decoration: none" title="' . esc_attr(__('Read more', 'newsletter')) . '"><i class="fas fa-question-circle"></i> ', $text, '</a>';
|
1607 |
Â
}
|
1608 |
Â
|
1609 |
Â
/**
|
includes/fields.php
CHANGED
@@ -375,10 +375,22 @@ class NewsletterFields {
|
|
375 |
Â
$this->_close();
|
376 |
Â
}
|
377 |
Â
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
378 |
Â
public function terms($taxonomy, $label = '', $attrs = array()) {
|
379 |
-
$name
|
380 |
-
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
381 |
Â
$label = __('Terms', 'newsletter');
|
Â
|
|
382 |
Â
$attrs = $this->_merge_attrs($attrs);
|
383 |
Â
$this->_open('tnp-categories');
|
384 |
Â
$this->_label($label);
|
375 |
Â
$this->_close();
|
376 |
Â
}
|
377 |
Â
|
378 |
+
/**
|
379 |
+
* The field name is preset to tax_$taxonomy. A different name can be specified
|
380 |
+
* with the attribute 'name'.
|
381 |
+
* @param type $taxonomy
|
382 |
+
* @param type $label
|
383 |
+
* @param type $attrs
|
384 |
+
*/
|
385 |
Â
public function terms($taxonomy, $label = '', $attrs = array()) {
|
386 |
+
if (isset($attrs['name'])) {
|
387 |
+
$name = $attrs['name'];
|
388 |
+
} else {
|
389 |
+
$name = 'tax_' . $taxonomy;
|
390 |
+
}
|
391 |
+
if (empty($label)) {
|
392 |
Â
$label = __('Terms', 'newsletter');
|
393 |
+
}
|
394 |
Â
$attrs = $this->_merge_attrs($attrs);
|
395 |
Â
$this->_open('tnp-categories');
|
396 |
Â
$this->_label($label);
|
includes/mailer.php
CHANGED
@@ -412,7 +412,7 @@ class NewsletterDefaultSMTPMailer extends NewsletterMailer {
|
|
412 |
Â
}
|
413 |
Â
|
414 |
Â
function get_description() {
|
415 |
-
return 'Internal SMTP
|
416 |
Â
}
|
417 |
Â
|
418 |
Â
/**
|
412 |
Â
}
|
413 |
Â
|
414 |
Â
function get_description() {
|
415 |
+
return 'Internal SMTP';
|
416 |
Â
}
|
417 |
Â
|
418 |
Â
/**
|
includes/module.php
CHANGED
@@ -922,7 +922,7 @@ class NewsletterModule {
|
|
922 |
Â
* @global type $wpdb
|
923 |
Â
* @param string|int|object|array $id_or_email
|
924 |
Â
* @param string $format
|
925 |
-
* @return TNP_User
|
926 |
Â
*/
|
927 |
Â
function get_user($id_or_email, $format = OBJECT) {
|
928 |
Â
global $wpdb;
|
922 |
Â
* @global type $wpdb
|
923 |
Â
* @param string|int|object|array $id_or_email
|
924 |
Â
* @param string $format
|
925 |
+
* @return TNP_User|null
|
926 |
Â
*/
|
927 |
Â
function get_user($id_or_email, $format = OBJECT) {
|
928 |
Â
global $wpdb;
|
main/index.php
CHANGED
@@ -90,7 +90,7 @@ $labels = array_reverse( $labels );
|
|
90 |
Â
<div id="tnp-dash-statistics" class="postbox">
|
91 |
Â
<h3><?php _e( 'Statistics', 'newsletter' ) ?>
|
92 |
Â
<a href="<?php echo NewsletterStatistics::instance()->get_index_url() ?>">
|
93 |
-
<i class="
|
94 |
Â
</a>
|
95 |
Â
</h3>
|
96 |
Â
<div class="inside">
|
@@ -242,7 +242,7 @@ $labels = array_reverse( $labels );
|
|
242 |
Â
<h3><?php _e( 'Documentation', 'newsletter' ) ?>
|
243 |
Â
<a href="https://www.thenewsletterplugin.com/plugins/newsletter/newsletter-documentation"
|
244 |
Â
target="_blank">
|
245 |
-
<i class="
|
246 |
Â
</a>
|
247 |
Â
</h3>
|
248 |
Â
<div class="inside">
|
@@ -255,21 +255,21 @@ $labels = array_reverse( $labels );
|
|
255 |
Â
<a class="orange"
|
256 |
Â
href="https://www.thenewsletterplugin.com/plugins/newsletter/newsletter-documentation/email-sending-issues"
|
257 |
Â
target="_blank">
|
258 |
-
<i class="
|
259 |
Â
</a>
|
260 |
Â
</div>
|
261 |
Â
|
262 |
Â
<div>
|
263 |
Â
<a class="blue" href="https://www.thenewsletterplugin.com/support/video-tutorials"
|
264 |
Â
target="_blank">
|
265 |
-
<i class="
|
266 |
Â
</a>
|
267 |
Â
</div>
|
268 |
Â
<div>
|
269 |
Â
<a class="purple"
|
270 |
Â
href="https://www.thenewsletterplugin.com/plugins/newsletter/newsletter-preferences"
|
271 |
Â
target="_blank">
|
272 |
-
<i class="
|
273 |
Â
</a>
|
274 |
Â
</div>
|
275 |
Â
</div>
|
@@ -284,10 +284,10 @@ $labels = array_reverse( $labels );
|
|
284 |
Â
<div id="tnp-dash-newsletters" class="postbox">
|
285 |
Â
<h3><?php _e( 'Newsletters', 'newsletter' ) ?>
|
286 |
Â
<a href="<?php echo $emails_module->get_admin_page_url( 'index' ); ?>">
|
287 |
-
<i class="
|
288 |
Â
</a>
|
289 |
Â
<a href="<?php echo $emails_module->get_admin_page_url( 'theme' ); ?>">
|
290 |
-
<i class="
|
291 |
Â
</a>
|
292 |
Â
</h3>
|
293 |
Â
<div class="inside">
|
@@ -310,7 +310,7 @@ $labels = array_reverse( $labels );
|
|
310 |
Â
<?php $emails_module->show_email_progress_bar( $email, array( 'scheduled' => true ) ) ?>
|
311 |
Â
</td>
|
312 |
Â
<td style="white-space:nowrap"><?php if ($email->status == 'sent') {
|
313 |
-
echo '<a class="button-primary" href="' . $statistics_module->get_statistics_url($email->id) . '"><i class="
|
314 |
Â
} else {
|
315 |
Â
echo $emails_module->get_edit_button($email);
|
316 |
Â
} ?></td>
|
@@ -325,7 +325,7 @@ $labels = array_reverse( $labels );
|
|
325 |
Â
<div id="tnp-dash-premium" class="postbox">
|
326 |
Â
<h3><?php _e( 'Premium', 'newsletter' ) ?>
|
327 |
Â
<a href="https://www.thenewsletterplugin.com/extensions" target="_blank">
|
328 |
-
<i class="
|
329 |
Â
</a>
|
330 |
Â
</h3>
|
331 |
Â
<div class="inside">
|
@@ -353,10 +353,10 @@ $labels = array_reverse( $labels );
|
|
353 |
Â
<div id="tnp-dash-subscribers" class="postbox">
|
354 |
Â
<h3><?php _e( 'Last Subscribers', 'newsletter' ) ?>
|
355 |
Â
<a href="<?php echo $users_module->get_admin_page_url( 'index' ); ?>">
|
356 |
-
<i class="
|
357 |
Â
</a>
|
358 |
Â
<a href="<?php echo $users_module->get_admin_page_url( 'new' ); ?>">
|
359 |
-
<i class="
|
360 |
Â
</a>
|
361 |
Â
</h3>
|
362 |
Â
<div class="inside">
|
@@ -371,11 +371,11 @@ $labels = array_reverse( $labels );
|
|
371 |
Â
<a class="button-primary tnp-button-white"
|
372 |
Â
title="<?php _e( 'Edit', 'newsletter' ) ?>"
|
373 |
Â
href="<?php echo $users_module->get_admin_page_url( 'edit' ); ?>&id=<?php echo $s->id; ?>"><i
|
374 |
-
class="
|
375 |
Â
<a title="<?php _e( 'Profile', 'newsletter' ) ?>"
|
376 |
Â
href="<?php echo home_url( '/' ) ?>?na=p&nk=<?php echo $s->id . '-' . $s->token; ?>"
|
377 |
Â
class="button-primary tnp-button-white" target="_blank"><i
|
378 |
-
class="
|
379 |
Â
</td>
|
380 |
Â
</tr>
|
381 |
Â
<?php } ?>
|
90 |
Â
<div id="tnp-dash-statistics" class="postbox">
|
91 |
Â
<h3><?php _e( 'Statistics', 'newsletter' ) ?>
|
92 |
Â
<a href="<?php echo NewsletterStatistics::instance()->get_index_url() ?>">
|
93 |
+
<i class="fas fa-chart-bar"></i> <?php _e( 'Statistics', 'newsletter' ) ?>
|
94 |
Â
</a>
|
95 |
Â
</h3>
|
96 |
Â
<div class="inside">
|
242 |
Â
<h3><?php _e( 'Documentation', 'newsletter' ) ?>
|
243 |
Â
<a href="https://www.thenewsletterplugin.com/plugins/newsletter/newsletter-documentation"
|
244 |
Â
target="_blank">
|
245 |
+
<i class="fas fa-life-ring"></i> <?php _e( 'Read all', 'newsletter' ) ?>
|
246 |
Â
</a>
|
247 |
Â
</h3>
|
248 |
Â
<div class="inside">
|
255 |
Â
<a class="orange"
|
256 |
Â
href="https://www.thenewsletterplugin.com/plugins/newsletter/newsletter-documentation/email-sending-issues"
|
257 |
Â
target="_blank">
|
258 |
+
<i class="fas fa-exclamation-triangle"></i> <?php _e( 'Problem sending messages? Start here!', 'newsletter' ) ?>
|
259 |
Â
</a>
|
260 |
Â
</div>
|
261 |
Â
|
262 |
Â
<div>
|
263 |
Â
<a class="blue" href="https://www.thenewsletterplugin.com/support/video-tutorials"
|
264 |
Â
target="_blank">
|
265 |
+
<i class="fas fa-youtube-play"></i> <?php _e( 'All Video Tutorials', 'newsletter' ) ?>
|
266 |
Â
</a>
|
267 |
Â
</div>
|
268 |
Â
<div>
|
269 |
Â
<a class="purple"
|
270 |
Â
href="https://www.thenewsletterplugin.com/plugins/newsletter/newsletter-preferences"
|
271 |
Â
target="_blank">
|
272 |
+
<i class="fas fa-question-circle"></i> <?php _e( 'Learn how to segment your suscribers', 'newsletter' ) ?>
|
273 |
Â
</a>
|
274 |
Â
</div>
|
275 |
Â
</div>
|
284 |
Â
<div id="tnp-dash-newsletters" class="postbox">
|
285 |
Â
<h3><?php _e( 'Newsletters', 'newsletter' ) ?>
|
286 |
Â
<a href="<?php echo $emails_module->get_admin_page_url( 'index' ); ?>">
|
287 |
+
<i class="fas fa-list"></i> <?php _e( 'List', 'newsletter' ) ?>
|
288 |
Â
</a>
|
289 |
Â
<a href="<?php echo $emails_module->get_admin_page_url( 'theme' ); ?>">
|
290 |
+
<i class="fas fa-plus-square"></i> <?php _e( 'New', 'newsletter' ) ?>
|
291 |
Â
</a>
|
292 |
Â
</h3>
|
293 |
Â
<div class="inside">
|
310 |
Â
<?php $emails_module->show_email_progress_bar( $email, array( 'scheduled' => true ) ) ?>
|
311 |
Â
</td>
|
312 |
Â
<td style="white-space:nowrap"><?php if ($email->status == 'sent') {
|
313 |
+
echo '<a class="button-primary" href="' . $statistics_module->get_statistics_url($email->id) . '"><i class="fas fa-chart-bar"></i> ' . __('Statistics', 'newsletter') . '</a>';
|
314 |
Â
} else {
|
315 |
Â
echo $emails_module->get_edit_button($email);
|
316 |
Â
} ?></td>
|
325 |
Â
<div id="tnp-dash-premium" class="postbox">
|
326 |
Â
<h3><?php _e( 'Premium', 'newsletter' ) ?>
|
327 |
Â
<a href="https://www.thenewsletterplugin.com/extensions" target="_blank">
|
328 |
+
<i class="fas fa-trophy"></i> <?php _e( 'Buy', 'newsletter' ) ?>
|
329 |
Â
</a>
|
330 |
Â
</h3>
|
331 |
Â
<div class="inside">
|
353 |
Â
<div id="tnp-dash-subscribers" class="postbox">
|
354 |
Â
<h3><?php _e( 'Last Subscribers', 'newsletter' ) ?>
|
355 |
Â
<a href="<?php echo $users_module->get_admin_page_url( 'index' ); ?>">
|
356 |
+
<i class="fas fa-users"></i> <?php _e( 'List', 'newsletter' ) ?>
|
357 |
Â
</a>
|
358 |
Â
<a href="<?php echo $users_module->get_admin_page_url( 'new' ); ?>">
|
359 |
+
<i class="fas fa-user-plus"></i> <?php _e( 'New', 'newsletter' ) ?>
|
360 |
Â
</a>
|
361 |
Â
</h3>
|
362 |
Â
<div class="inside">
|
371 |
Â
<a class="button-primary tnp-button-white"
|
372 |
Â
title="<?php _e( 'Edit', 'newsletter' ) ?>"
|
373 |
Â
href="<?php echo $users_module->get_admin_page_url( 'edit' ); ?>&id=<?php echo $s->id; ?>"><i
|
374 |
+
class="fas fa-edit"></i></a>
|
375 |
Â
<a title="<?php _e( 'Profile', 'newsletter' ) ?>"
|
376 |
Â
href="<?php echo home_url( '/' ) ?>?na=p&nk=<?php echo $s->id . '-' . $s->token; ?>"
|
377 |
Â
class="button-primary tnp-button-white" target="_blank"><i
|
378 |
+
class="fas fa-user"></i></a>
|
379 |
Â
</td>
|
380 |
Â
</tr>
|
381 |
Â
<?php } ?>
|
main/smtp.php
CHANGED
@@ -52,7 +52,7 @@ if (empty($controls->data['enabled']) && !empty($controls->data['host'])) {
|
|
52 |
Â
<h2><?php _e('SMTP Settings', 'newsletter') ?></h2>
|
53 |
Â
|
54 |
Â
<p>
|
55 |
-
<i class="
|
56 |
Â
<!--
|
57 |
Â
<p>SMTP (Simple Mail Transfer Protocol) refers to external delivery services you can use to send emails.</p>
|
58 |
Â
<p>SMTP services are usually more reliable, secure and spam-aware than the standard delivery method available to your blog.</p>
|
52 |
Â
<h2><?php _e('SMTP Settings', 'newsletter') ?></h2>
|
53 |
Â
|
54 |
Â
<p>
|
55 |
+
<i class="fas fa-info-circle"></i> <a href="https://www.thenewsletterplugin.com/extensions" target="_blank">Discover how SMTP services can boost your newsletters!</a>
|
56 |
Â
<!--
|
57 |
Â
<p>SMTP (Simple Mail Transfer Protocol) refers to external delivery services you can use to send emails.</p>
|
58 |
Â
<p>SMTP services are usually more reliable, secure and spam-aware than the standard delivery method available to your blog.</p>
|
plugin.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Â
Plugin Name: Newsletter
|
5 |
Â
Plugin URI: https://www.thenewsletterplugin.com/plugins/newsletter
|
6 |
Â
Description: Newsletter is a cool plugin to create your own subscriber list, to send newsletters, to build your business. <strong>Before update give a look to <a href="https://www.thenewsletterplugin.com/category/release">this page</a> to know what's changed.</strong>
|
7 |
-
Version: 6.5.
|
8 |
Â
Author: Stefano Lissa & The Newsletter Team
|
9 |
Â
Author URI: https://www.thenewsletterplugin.com
|
10 |
Â
Disclaimer: Use at your own risk. No warranty expressed or implied is provided.
|
@@ -28,7 +28,14 @@
|
|
28 |
Â
|
29 |
Â
*/
|
30 |
Â
|
31 |
-
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
32 |
Â
|
33 |
Â
global $newsletter, $wpdb;
|
34 |
Â
|
4 |
Â
Plugin Name: Newsletter
|
5 |
Â
Plugin URI: https://www.thenewsletterplugin.com/plugins/newsletter
|
6 |
Â
Description: Newsletter is a cool plugin to create your own subscriber list, to send newsletters, to build your business. <strong>Before update give a look to <a href="https://www.thenewsletterplugin.com/category/release">this page</a> to know what's changed.</strong>
|
7 |
+
Version: 6.5.4
|
8 |
Â
Author: Stefano Lissa & The Newsletter Team
|
9 |
Â
Author URI: https://www.thenewsletterplugin.com
|
10 |
Â
Disclaimer: Use at your own risk. No warranty expressed or implied is provided.
|
28 |
Â
|
29 |
Â
*/
|
30 |
Â
|
31 |
+
if (version_compare(phpversion(), '5.6', '<')) {
|
32 |
+
add_action('admin_notices', function () {
|
33 |
+
echo '<div class="notice notice-error"><p>PHP version 5.6 or greater is required for Newsletter. Ask your provider to upgrade. <a href="https://www.php.net/supported-versions.php" target="_blank">Read more on PHP versions</a></p></div>';
|
34 |
+
});
|
35 |
+
return;
|
36 |
+
}
|
37 |
+
|
38 |
+
define('NEWSLETTER_VERSION', '6.5.4');
|
39 |
Â
|
40 |
Â
global $newsletter, $wpdb;
|
41 |
Â
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Â
Tags: email, email marketing, newsletter, newsletter subscribers, welcome email, signup forms, contact, lead generation, popup, marketing automation
|
3 |
Â
Requires at least: 3.4.0
|
4 |
Â
Tested up to: 5.3.2
|
5 |
-
Stable tag: 6.5.
|
6 |
Â
Requires PHP: 5.6
|
7 |
Â
Contributors: satollo,webagile,michael-travan
|
8 |
Â
|
@@ -109,6 +109,15 @@ Thank you, The Newsletter Team
|
|
109 |
Â
|
110 |
Â
== Changelog ==
|
111 |
Â
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
112 |
Â
= 6.5.3 =
|
113 |
Â
|
114 |
Â
* Removed a background wrapper for outlook otherwise outlook cut down long emails
|
2 |
Â
Tags: email, email marketing, newsletter, newsletter subscribers, welcome email, signup forms, contact, lead generation, popup, marketing automation
|
3 |
Â
Requires at least: 3.4.0
|
4 |
Â
Tested up to: 5.3.2
|
5 |
+
Stable tag: 6.5.4
|
6 |
Â
Requires PHP: 5.6
|
7 |
Â
Contributors: satollo,webagile,michael-travan
|
8 |
Â
|
109 |
Â
|
110 |
Â
== Changelog ==
|
111 |
Â
|
112 |
+
= 6.5.4 =
|
113 |
+
|
114 |
+
* Font awesome now included
|
115 |
+
* Spacing fix on hero block
|
116 |
+
* Support methods for the WooCommerce addon
|
117 |
+
* Security fix on CSV export
|
118 |
+
* Removed obsolete fonts
|
119 |
+
* PHP 5.6 check
|
120 |
+
|
121 |
Â
= 6.5.3 =
|
122 |
Â
|
123 |
Â
* Removed a background wrapper for outlook otherwise outlook cut down long emails
|
statistics/index.php
CHANGED
@@ -73,7 +73,7 @@ if (empty($emails)) {
|
|
73 |
Â
<div class="col-md-3">
|
74 |
Â
<div class="tnp-widget tnp-number">
|
75 |
Â
<h3>Emails Sent</h3>
|
76 |
-
<div class="tnp-icon"><i class="
|
77 |
Â
<div class="tnp-value"><?php echo number_format_i18n($report->total, 0) ?></div>
|
78 |
Â
</div>
|
79 |
Â
</div>
|
@@ -81,7 +81,7 @@ if (empty($emails)) {
|
|
81 |
Â
<div class="col-md-3">
|
82 |
Â
<div class="tnp-widget tnp-number">
|
83 |
Â
<h3>Overall Opens</h3>
|
84 |
-
<div class="tnp-icon tnp-blue"><i class="
|
85 |
Â
<div class="tnp-value"><?php echo $report->open_rate; ?>%</div>
|
86 |
Â
<div class="tnp-value-2">(<?php echo $report->open_count; ?>)</div>
|
87 |
Â
</div>
|
@@ -90,7 +90,7 @@ if (empty($emails)) {
|
|
90 |
Â
<div class="col-md-3">
|
91 |
Â
<div class="tnp-widget tnp-number">
|
92 |
Â
<h3>Overall Clicks</h3>
|
93 |
-
<div class="tnp-icon tnp-orange"><i class="
|
94 |
Â
<div class="tnp-value"><?php echo $report->click_rate; ?>%</div>
|
95 |
Â
<div class="tnp-value-2">(<?php echo $report->click_count; ?>)</div>
|
96 |
Â
</div>
|
@@ -99,7 +99,7 @@ if (empty($emails)) {
|
|
99 |
Â
<div class="col-md-3">
|
100 |
Â
<div class="tnp-widget tnp-number tnp-inactive">
|
101 |
Â
<h3>Overall Reactivity</h3>
|
102 |
-
<div class="tnp-icon tnp-gray"><i class="
|
103 |
Â
<div class="tnp-value">-%</div>
|
104 |
Â
</div>
|
105 |
Â
</div>
|
73 |
Â
<div class="col-md-3">
|
74 |
Â
<div class="tnp-widget tnp-number">
|
75 |
Â
<h3>Emails Sent</h3>
|
76 |
+
<div class="tnp-icon"><i class="fas fa-users"></i></div>
|
77 |
Â
<div class="tnp-value"><?php echo number_format_i18n($report->total, 0) ?></div>
|
78 |
Â
</div>
|
79 |
Â
</div>
|
81 |
Â
<div class="col-md-3">
|
82 |
Â
<div class="tnp-widget tnp-number">
|
83 |
Â
<h3>Overall Opens</h3>
|
84 |
+
<div class="tnp-icon tnp-blue"><i class="fas fa-envelope-open"></i></div>
|
85 |
Â
<div class="tnp-value"><?php echo $report->open_rate; ?>%</div>
|
86 |
Â
<div class="tnp-value-2">(<?php echo $report->open_count; ?>)</div>
|
87 |
Â
</div>
|
90 |
Â
<div class="col-md-3">
|
91 |
Â
<div class="tnp-widget tnp-number">
|
92 |
Â
<h3>Overall Clicks</h3>
|
93 |
+
<div class="tnp-icon tnp-orange"><i class="fas fa-mouse-pointer"></i></div>
|
94 |
Â
<div class="tnp-value"><?php echo $report->click_rate; ?>%</div>
|
95 |
Â
<div class="tnp-value-2">(<?php echo $report->click_count; ?>)</div>
|
96 |
Â
</div>
|
99 |
Â
<div class="col-md-3">
|
100 |
Â
<div class="tnp-widget tnp-number tnp-inactive">
|
101 |
Â
<h3>Overall Reactivity</h3>
|
102 |
+
<div class="tnp-icon tnp-gray"><i class="fas fa-star"></i></div>
|
103 |
Â
<div class="tnp-value">-%</div>
|
104 |
Â
</div>
|
105 |
Â
</div>
|
statistics/view.php
CHANGED
@@ -32,7 +32,7 @@ if ($email->status == 'new') {
|
|
32 |
Â
<div class="col-md-3">
|
33 |
Â
<div class="tnp-widget tnp-number">
|
34 |
Â
<h3><?php _e('Reach', 'newsletter') ?></h3>
|
35 |
-
<div class="tnp-icon"><i class="
|
36 |
Â
<div class="tnp-value"><?php echo number_format_i18n($report->total, 0) ?></div>
|
37 |
Â
</div>
|
38 |
Â
</div>
|
@@ -40,7 +40,7 @@ if ($email->status == 'new') {
|
|
40 |
Â
<div class="col-md-3">
|
41 |
Â
<div class="tnp-widget tnp-number">
|
42 |
Â
<h3><?php _e('Opens', 'newsletter') ?></h3>
|
43 |
-
<div class="tnp-icon tnp-blue"><i class="
|
44 |
Â
<div class="tnp-value"><?php echo $report->open_rate; ?>%</div>
|
45 |
Â
<div class="tnp-value-2">(<?php echo $report->open_count; ?>)</div>
|
46 |
Â
</div>
|
@@ -49,7 +49,7 @@ if ($email->status == 'new') {
|
|
49 |
Â
<div class="col-md-3">
|
50 |
Â
<div class="tnp-widget tnp-number">
|
51 |
Â
<h3><?php _e('Clicks', 'newsletter') ?></h3>
|
52 |
-
<div class="tnp-icon tnp-orange"><i class="
|
53 |
Â
<div class="tnp-value"><?php echo $report->click_rate; ?>%</div>
|
54 |
Â
<div class="tnp-value-2">(<?php echo $report->click_count; ?>)</div>
|
55 |
Â
</div>
|
@@ -58,7 +58,7 @@ if ($email->status == 'new') {
|
|
58 |
Â
<div class="col-md-3">
|
59 |
Â
<div class="tnp-widget tnp-number tnp-inactive">
|
60 |
Â
<h3>Reactivity</h3>
|
61 |
-
<div class="tnp-icon tnp-gray"><i class="
|
62 |
Â
<div class="tnp-value">-%</div>
|
63 |
Â
</div>
|
64 |
Â
</div>
|
32 |
Â
<div class="col-md-3">
|
33 |
Â
<div class="tnp-widget tnp-number">
|
34 |
Â
<h3><?php _e('Reach', 'newsletter') ?></h3>
|
35 |
+
<div class="tnp-icon"><i class="fas fa-users"></i></div>
|
36 |
Â
<div class="tnp-value"><?php echo number_format_i18n($report->total, 0) ?></div>
|
37 |
Â
</div>
|
38 |
Â
</div>
|
40 |
Â
<div class="col-md-3">
|
41 |
Â
<div class="tnp-widget tnp-number">
|
42 |
Â
<h3><?php _e('Opens', 'newsletter') ?></h3>
|
43 |
+
<div class="tnp-icon tnp-blue"><i class="fas fa-envelope-open"></i></div>
|
44 |
Â
<div class="tnp-value"><?php echo $report->open_rate; ?>%</div>
|
45 |
Â
<div class="tnp-value-2">(<?php echo $report->open_count; ?>)</div>
|
46 |
Â
</div>
|
49 |
Â
<div class="col-md-3">
|
50 |
Â
<div class="tnp-widget tnp-number">
|
51 |
Â
<h3><?php _e('Clicks', 'newsletter') ?></h3>
|
52 |
+
<div class="tnp-icon tnp-orange"><i class="fas fa-mouse-pointer"></i></div>
|
53 |
Â
<div class="tnp-value"><?php echo $report->click_rate; ?>%</div>
|
54 |
Â
<div class="tnp-value-2">(<?php echo $report->click_count; ?>)</div>
|
55 |
Â
</div>
|
58 |
Â
<div class="col-md-3">
|
59 |
Â
<div class="tnp-widget tnp-number tnp-inactive">
|
60 |
Â
<h3>Reactivity</h3>
|
61 |
+
<div class="tnp-icon tnp-gray"><i class="fas fa-star"></i></div>
|
62 |
Â
<div class="tnp-value">-%</div>
|
63 |
Â
</div>
|
64 |
Â
</div>
|
style.css
CHANGED
@@ -328,3 +328,7 @@ CUSTOM CSS RULES.
|
|
328 |
Â
background-color: #fff;
|
329 |
Â
border: 1px solid #ddd;
|
330 |
Â
}
|
Â
|
|
Â
|
|
Â
|
|
Â
|
328 |
Â
background-color: #fff;
|
329 |
Â
border: 1px solid #ddd;
|
330 |
Â
}
|
331 |
+
|
332 |
+
.tnp-nl-checkout {
|
333 |
+
margin-bottom: 1em;
|
334 |
+
}
|
subscription/lists.php
CHANGED
@@ -119,7 +119,7 @@ $status = array(0 => 'Private', 1 => 'Only on profile page', 2 => 'Even on subsc
|
|
119 |
Â
$text .= $note . '<br>';
|
120 |
Â
}
|
121 |
Â
if (!empty($text)) {
|
122 |
-
echo '<i class="
|
123 |
Â
}
|
124 |
Â
?>
|
125 |
Â
|
119 |
Â
$text .= $note . '<br>';
|
120 |
Â
}
|
121 |
Â
if (!empty($text)) {
|
122 |
+
echo '<i class="fas fa-info-circle tnp-notes" title="', esc_attr($text), '"></i>';
|
123 |
Â
}
|
124 |
Â
?>
|
125 |
Â
|
subscription/options.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
Â
<?php
|
2 |
Â
defined('ABSPATH') || exit;
|
3 |
Â
|
4 |
-
|
5 |
Â
$controls = new NewsletterControls();
|
6 |
Â
$module = NewsletterSubscription::instance();
|
7 |
Â
|
1 |
Â
<?php
|
2 |
Â
defined('ABSPATH') || exit;
|
3 |
Â
|
4 |
+
include_once NEWSLETTER_INCLUDES_DIR . '/controls.php';
|
5 |
Â
$controls = new NewsletterControls();
|
6 |
Â
$module = NewsletterSubscription::instance();
|
7 |
Â
|
subscription/subscription.php
CHANGED
@@ -565,9 +565,13 @@ class NewsletterSubscription extends NewsletterModule {
|
|
565 |
Â
}
|
566 |
Â
if ($sub == 'profile') {
|
567 |
Â
if ($language) {
|
568 |
-
|
569 |
-
|
570 |
-
$
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
571 |
Â
} else {
|
572 |
Â
$options = get_option('newsletter_profile', array());
|
573 |
Â
}
|
565 |
Â
}
|
566 |
Â
if ($sub == 'profile') {
|
567 |
Â
if ($language) {
|
568 |
+
// All that because for unknown reasome, sometime the options are returned as string, maybe a WPML
|
569 |
+
// interference...
|
570 |
+
$i18n_options = get_option('newsletter_profile_' . $language, array());
|
571 |
+
if (!is_array($i18n_options)) $i18n_options = array();
|
572 |
+
$options = get_option('newsletter_profile', array());
|
573 |
+
if (!is_array($options)) $options = array();
|
574 |
+
$options = array_merge($options, $i18n_options);
|
575 |
Â
} else {
|
576 |
Â
$options = get_option('newsletter_profile', array());
|
577 |
Â
}
|
subscription/template.php
CHANGED
@@ -33,7 +33,7 @@ if (!$controls->is_action()) {
|
|
33 |
Â
|
34 |
Â
$users = $module->get_test_users();
|
35 |
Â
if (count($users) == 0) {
|
36 |
-
$controls->errors = __('No test subscribers found.', 'newsletter') . ' <a href="https://www.thenewsletterplugin.com/plugins/newsletter/subscribers-module#test" target="_blank"><i class="
|
37 |
Â
} else {
|
38 |
Â
$template = $controls->data['template'];
|
39 |
Â
|
@@ -52,7 +52,7 @@ if (!$controls->is_action()) {
|
|
52 |
Â
Newsletter::instance()->mail($user->email, 'Newsletter Messages Template Test', $module->replace($message, $user));
|
53 |
Â
}
|
54 |
Â
$controls->messages .= 'Test emails sent to ' . count($users) . ' test subscribers: ' .
|
55 |
-
implode(', ', $addresses) . '.' . ' <a href="https://www.thenewsletterplugin.com/plugins/newsletter/subscribers-module#test" target="_blank"><i class="
|
56 |
Â
}
|
57 |
Â
}
|
58 |
Â
}
|
33 |
Â
|
34 |
Â
$users = $module->get_test_users();
|
35 |
Â
if (count($users) == 0) {
|
36 |
+
$controls->errors = __('No test subscribers found.', 'newsletter') . ' <a href="https://www.thenewsletterplugin.com/plugins/newsletter/subscribers-module#test" target="_blank"><i class="fas fa-info-circle"></i></a>';
|
37 |
Â
} else {
|
38 |
Â
$template = $controls->data['template'];
|
39 |
Â
|
52 |
Â
Newsletter::instance()->mail($user->email, 'Newsletter Messages Template Test', $module->replace($message, $user));
|
53 |
Â
}
|
54 |
Â
$controls->messages .= 'Test emails sent to ' . count($users) . ' test subscribers: ' .
|
55 |
+
implode(', ', $addresses) . '.' . ' <a href="https://www.thenewsletterplugin.com/plugins/newsletter/subscribers-module#test" target="_blank"><i class="fas fa-info-circle"></i></a>';
|
56 |
Â
}
|
57 |
Â
}
|
58 |
Â
}
|
tnp-header.php
CHANGED
@@ -37,48 +37,48 @@ $warning |= empty($status_options['mail']);
|
|
37 |
Â
<div class="tnp-drowpdown" id="tnp-header">
|
38 |
Â
<a href="?page=newsletter_main_index"><img src="<?php echo plugins_url('newsletter'); ?>/images/header/tnp-logo-red-header.png" class="tnp-header-logo" style="vertical-align: bottom;"></a>
|
39 |
Â
<ul>
|
40 |
-
<li><a href="#"><i class="
|
41 |
Â
<ul>
|
42 |
-
<li><a href="?page=newsletter_users_index"><i class="
|
43 |
Â
<small><?php _e('Add, edit, search', 'newsletter') ?></small></a></li>
|
44 |
-
<li><a href="?page=newsletter_profile_index"><i class="
|
45 |
Â
<small><?php _e('The subscriber personal profile editing panel', 'newsletter') ?></small></a></li>
|
46 |
-
<li><a href="?page=newsletter_users_import"><i class="
|
47 |
Â
<small><?php _e('Import from external sources', 'newsletter') ?></small></a></li>
|
48 |
-
<li><a href="?page=newsletter_users_export"><i class="
|
49 |
Â
<small><?php _e('Export your subscribers list', 'newsletter') ?></small></a></li>
|
50 |
-
<li><a href="?page=newsletter_users_massive"><i class="
|
51 |
Â
<small><?php _e('Massive actions: change list, clean up, ...', 'newsletter') ?></small></a></li>
|
52 |
-
<li><a href="?page=newsletter_users_statistics"><i class="
|
53 |
Â
<small><?php _e('All about your subscribers', 'newsletter') ?></small></a></li>
|
54 |
Â
<?php
|
55 |
Â
newsletter_print_entries('subscribers');
|
56 |
Â
?>
|
57 |
Â
</ul>
|
58 |
Â
</li>
|
59 |
-
<li><a href="#"><i class="
|
60 |
Â
<ul>
|
61 |
-
<li><a href="?page=newsletter_subscription_options"><i class="
|
62 |
Â
<small><?php _e('The subscription process in detail', 'newsletter') ?></small></a></li>
|
63 |
Â
|
64 |
-
<li><a href="?page=newsletter_subscription_antibot"><i class="
|
65 |
Â
<small><?php _e('Spam subscriptions control', 'newsletter') ?></small></a></li>
|
66 |
Â
|
67 |
Â
<li>
|
68 |
-
<a href="?page=newsletter_subscription_profile"><i class="
|
69 |
Â
<small><?php _e('When and what data to collect', 'newsletter') ?></small></a>
|
70 |
Â
</li>
|
71 |
Â
<li>
|
72 |
-
<a href="?page=newsletter_subscription_lists"><i class="
|
73 |
Â
<small><?php _e('Profile the subscribers for a better targeting', 'newsletter') ?></small></a>
|
74 |
Â
</li>
|
75 |
Â
<li>
|
76 |
-
<a href="?page=newsletter_unsubscription_index"><i class="
|
77 |
Â
<small><?php _e('How to give the last goodbye (or avoid it!)', 'newsletter') ?></small></a>
|
78 |
Â
</li>
|
79 |
Â
|
80 |
Â
<li>
|
81 |
-
<a href="?page=newsletter_subscription_forms"><i class="
|
82 |
Â
<small><?php _e('Hand coded form storage', 'newsletter') ?></small></a>
|
83 |
Â
</li>
|
84 |
Â
|
@@ -89,14 +89,14 @@ $warning |= empty($status_options['mail']);
|
|
89 |
Â
</li>
|
90 |
Â
|
91 |
Â
<li>
|
92 |
-
<a href="#"><i class="
|
93 |
Â
<ul>
|
94 |
-
<li><a href="?page=newsletter_emails_theme"><i class="
|
95 |
Â
<small><?php _e('Start your new campaign', 'newsletter') ?></small></a></li>
|
96 |
-
<li><a href="?page=newsletter_emails_index"><i class="
|
97 |
Â
<small><?php _e('The classic "write & send" newsletters', 'newsletter') ?></small></a></li>
|
98 |
Â
<li>
|
99 |
-
<a href="<?php echo NewsletterStatistics::instance()->get_index_url() ?>"><i class="
|
100 |
Â
<small><?php _e('Tracking configuration and basic data', 'newsletter') ?></small></a>
|
101 |
Â
</li>
|
102 |
Â
<?php
|
@@ -106,26 +106,26 @@ $warning |= empty($status_options['mail']);
|
|
106 |
Â
</li>
|
107 |
Â
|
108 |
Â
<li>
|
109 |
-
<a href="#"><i class="
|
110 |
Â
<ul>
|
111 |
Â
<?php if ($is_administrator) { ?>
|
112 |
Â
<li>
|
113 |
-
<a href="?page=newsletter_main_main"><i class="
|
114 |
Â
<small><?php _e('Delivery speed, sender details, ...', 'newsletter') ?></small></a>
|
115 |
Â
</li>
|
116 |
Â
<?php if (!class_exists('NewsletterSmtp')) { ?>
|
117 |
Â
<li>
|
118 |
-
<a href="?page=newsletter_main_smtp"><i class="
|
119 |
Â
<small><?php _e('External mail server', 'newsletter') ?></small>
|
120 |
Â
</a>
|
121 |
Â
</li>
|
122 |
Â
<?php } ?>
|
123 |
Â
<?php } ?>
|
124 |
Â
|
125 |
-
<li><a href="?page=newsletter_main_info"><i class="
|
126 |
Â
<small><?php _e('Social, address, logo and general info', 'newsletter') ?></small></a></li>
|
127 |
Â
<li>
|
128 |
-
<a href="?page=newsletter_subscription_template"><i class="
|
129 |
Â
<small><?php _e('Change the look of your service emails', 'newsletter') ?></small></a>
|
130 |
Â
</li>
|
131 |
Â
|
@@ -137,43 +137,45 @@ $warning |= empty($status_options['mail']);
|
|
137 |
Â
|
138 |
Â
<?php if ($is_administrator) { ?>
|
139 |
Â
<li>
|
140 |
-
<a href="?page=newsletter_main_status"><i class="
|
141 |
Â
<?php if ($warning) { ?>
|
142 |
-
<i class="
|
143 |
Â
<?php } ?>
|
144 |
Â
</a>
|
145 |
Â
</li>
|
146 |
Â
<?php } ?>
|
147 |
Â
|
148 |
-
<?php
|
Â
|
|
Â
|
|
Â
|
|
149 |
Â
|
150 |
Â
<?php if (empty($license_data)) { ?>
|
151 |
-
|
152 |
-
|
153 |
-
<i class="fa fa-trophy"></i> <?php _e('Get Professional Addons', 'newsletter') ?></a>
|
154 |
Â
</li>
|
155 |
Â
<?php } elseif (is_wp_error($license_data)) { ?>
|
156 |
-
<li class="tnp-professional-extensions-button-red">
|
157 |
-
<a href="?page=newsletter_main_main"><i class="
|
158 |
Â
</li>
|
159 |
Â
|
160 |
Â
<?php } elseif ($license_data->expire == 0) { ?>
|
161 |
Â
|
162 |
-
<li class="tnp-professional-extensions-button"><a href="
|
163 |
-
<i class="
|
164 |
Â
</li>
|
165 |
Â
|
166 |
Â
<?php } elseif ($license_data->expire < time()) { ?>
|
167 |
Â
|
168 |
Â
<li class="tnp-professional-extensions-button-red">
|
169 |
-
<a href="?page=newsletter_main_main"><i class="
|
170 |
Â
</li>
|
171 |
Â
|
172 |
Â
<?php } elseif ($license_data->expire >= time()) { ?>
|
173 |
Â
|
174 |
Â
<?php $p = class_exists('NewsletterExtensions')?'newsletter_extensions_index':'newsletter_main_extensions'; ?>
|
175 |
Â
<li class="tnp-professional-extensions-button">
|
176 |
-
<a href="?page=<?php echo $p?>"><i class="
|
177 |
Â
</li>
|
178 |
Â
|
179 |
Â
|
37 |
Â
<div class="tnp-drowpdown" id="tnp-header">
|
38 |
Â
<a href="?page=newsletter_main_index"><img src="<?php echo plugins_url('newsletter'); ?>/images/header/tnp-logo-red-header.png" class="tnp-header-logo" style="vertical-align: bottom;"></a>
|
39 |
Â
<ul>
|
40 |
+
<li><a href="#"><i class="fas fa-users"></i> <?php _e('Subscribers', 'newsletter') ?> <i class="fas fa-chevron-down"></i></a>
|
41 |
Â
<ul>
|
42 |
+
<li><a href="?page=newsletter_users_index"><i class="fas fa-search"></i> <?php _e('Search And Edit', 'newsletter') ?>
|
43 |
Â
<small><?php _e('Add, edit, search', 'newsletter') ?></small></a></li>
|
44 |
+
<li><a href="?page=newsletter_profile_index"><i class="fas fa-user-circle"></i> <?php _e('Profile page', 'newsletter') ?>
|
45 |
Â
<small><?php _e('The subscriber personal profile editing panel', 'newsletter') ?></small></a></li>
|
46 |
+
<li><a href="?page=newsletter_users_import"><i class="fas fa-upload"></i> <?php _e('Import', 'newsletter') ?>
|
47 |
Â
<small><?php _e('Import from external sources', 'newsletter') ?></small></a></li>
|
48 |
+
<li><a href="?page=newsletter_users_export"><i class="fas fa-download"></i> <?php _e('Export', 'newsletter') ?>
|
49 |
Â
<small><?php _e('Export your subscribers list', 'newsletter') ?></small></a></li>
|
50 |
+
<li><a href="?page=newsletter_users_massive"><i class="fas fa-wrench"></i> <?php _e('Maintenance', 'newsletter') ?>
|
51 |
Â
<small><?php _e('Massive actions: change list, clean up, ...', 'newsletter') ?></small></a></li>
|
52 |
+
<li><a href="?page=newsletter_users_statistics"><i class="fas fa-chart-bar"></i> <?php _e('Statistics', 'newsletter') ?>
|
53 |
Â
<small><?php _e('All about your subscribers', 'newsletter') ?></small></a></li>
|
54 |
Â
<?php
|
55 |
Â
newsletter_print_entries('subscribers');
|
56 |
Â
?>
|
57 |
Â
</ul>
|
58 |
Â
</li>
|
59 |
+
<li><a href="#"><i class="fas fa-list"></i> <?php _e('List Building', 'newsletter') ?> <i class="fas fa-chevron-down"></i></a>
|
60 |
Â
<ul>
|
61 |
+
<li><a href="?page=newsletter_subscription_options"><i class="fas fa-sign-in-alt"></i> <?php _e('Subscription', 'newsletter') ?>
|
62 |
Â
<small><?php _e('The subscription process in detail', 'newsletter') ?></small></a></li>
|
63 |
Â
|
64 |
+
<li><a href="?page=newsletter_subscription_antibot"><i class="fas fa-lock"></i> <?php _e('Security', 'newsletter') ?>
|
65 |
Â
<small><?php _e('Spam subscriptions control', 'newsletter') ?></small></a></li>
|
66 |
Â
|
67 |
Â
<li>
|
68 |
+
<a href="?page=newsletter_subscription_profile"><i class="fas fa-check-square"></i> <?php _e('Subscription Form Fields, Buttons, Labels', 'newsletter') ?>
|
69 |
Â
<small><?php _e('When and what data to collect', 'newsletter') ?></small></a>
|
70 |
Â
</li>
|
71 |
Â
<li>
|
72 |
+
<a href="?page=newsletter_subscription_lists"><i class="fas fa-th-list"></i> <?php _e('Lists', 'newsletter') ?>
|
73 |
Â
<small><?php _e('Profile the subscribers for a better targeting', 'newsletter') ?></small></a>
|
74 |
Â
</li>
|
75 |
Â
<li>
|
76 |
+
<a href="?page=newsletter_unsubscription_index"><i class="fas fa-sign-out-alt"></i> <?php _e('Unsubscription', 'newsletter') ?>
|
77 |
Â
<small><?php _e('How to give the last goodbye (or avoid it!)', 'newsletter') ?></small></a>
|
78 |
Â
</li>
|
79 |
Â
|
80 |
Â
<li>
|
81 |
+
<a href="?page=newsletter_subscription_forms"><i class="fas fa-edit"></i> <?php _e('Custom Forms', 'newsletter') ?>
|
82 |
Â
<small><?php _e('Hand coded form storage', 'newsletter') ?></small></a>
|
83 |
Â
</li>
|
84 |
Â
|
89 |
Â
</li>
|
90 |
Â
|
91 |
Â
<li>
|
92 |
+
<a href="#"><i class="fas fa-newspaper"></i> <?php _e('Newsletters', 'newsletter') ?> <i class="fas fa-chevron-down"></i></a>
|
93 |
Â
<ul>
|
94 |
+
<li><a href="?page=newsletter_emails_theme"><i class="fas fa-plus"></i> <?php _e('Create newsletter', 'newsletter') ?>
|
95 |
Â
<small><?php _e('Start your new campaign', 'newsletter') ?></small></a></li>
|
96 |
+
<li><a href="?page=newsletter_emails_index"><i class="fas fa-newspaper"></i> <?php _e('Newsletters', 'newsletter') ?>
|
97 |
Â
<small><?php _e('The classic "write & send" newsletters', 'newsletter') ?></small></a></li>
|
98 |
Â
<li>
|
99 |
+
<a href="<?php echo NewsletterStatistics::instance()->get_index_url() ?>"><i class="fas fa-chart-bar"></i> <?php _e('Statistics', 'newsletter') ?>
|
100 |
Â
<small><?php _e('Tracking configuration and basic data', 'newsletter') ?></small></a>
|
101 |
Â
</li>
|
102 |
Â
<?php
|
106 |
Â
</li>
|
107 |
Â
|
108 |
Â
<li>
|
109 |
+
<a href="#"><i class="fas fa-cog"></i> <?php _e('Settings', 'newsletter') ?> <i class="fas fa-chevron-down"></i></a>
|
110 |
Â
<ul>
|
111 |
Â
<?php if ($is_administrator) { ?>
|
112 |
Â
<li>
|
113 |
+
<a href="?page=newsletter_main_main"><i class="fas fa-cogs"></i> <?php _e('General Settings', 'newsletter') ?>
|
114 |
Â
<small><?php _e('Delivery speed, sender details, ...', 'newsletter') ?></small></a>
|
115 |
Â
</li>
|
116 |
Â
<?php if (!class_exists('NewsletterSmtp')) { ?>
|
117 |
Â
<li>
|
118 |
+
<a href="?page=newsletter_main_smtp"><i class="fas fa-server"></i> <?php _e('SMTP', 'newsletter') ?>
|
119 |
Â
<small><?php _e('External mail server', 'newsletter') ?></small>
|
120 |
Â
</a>
|
121 |
Â
</li>
|
122 |
Â
<?php } ?>
|
123 |
Â
<?php } ?>
|
124 |
Â
|
125 |
+
<li><a href="?page=newsletter_main_info"><i class="fas fa-info"></i> <?php _e('Company Info', 'newsletter') ?>
|
126 |
Â
<small><?php _e('Social, address, logo and general info', 'newsletter') ?></small></a></li>
|
127 |
Â
<li>
|
128 |
+
<a href="?page=newsletter_subscription_template"><i class="fas fa-file-alt"></i> <?php _e('Messages Template', 'newsletter') ?>
|
129 |
Â
<small><?php _e('Change the look of your service emails', 'newsletter') ?></small></a>
|
130 |
Â
</li>
|
131 |
Â
|
137 |
Â
|
138 |
Â
<?php if ($is_administrator) { ?>
|
139 |
Â
<li>
|
140 |
+
<a href="?page=newsletter_main_status"><i class="fas fa-thermometer"></i> <?php _e('Status', 'newsletter') ?>
|
141 |
Â
<?php if ($warning) { ?>
|
142 |
+
<i class="fas fa-exclamation-triangle" style="color: red;"></i>
|
143 |
Â
<?php } ?>
|
144 |
Â
</a>
|
145 |
Â
</li>
|
146 |
Â
<?php } ?>
|
147 |
Â
|
148 |
+
<?php
|
149 |
+
$license_data = Newsletter::instance()->get_license_data();
|
150 |
+
$premium_url = 'https://www.thenewsletterplugin.com/premium?utm_source=plugin&utm_medium=link&utm_campaign=header&utm_content=' . urlencode($_GET['page']);
|
151 |
+
?>
|
152 |
Â
|
153 |
Â
<?php if (empty($license_data)) { ?>
|
154 |
+
<li class="tnp-professional-extensions-button"><a href="<?php echo $premium_url?>" target="_blank">
|
155 |
+
<i class="fas fa-trophy"></i> <?php _e('Get Professional Addons', 'newsletter') ?></a>
|
Â
|
|
156 |
Â
</li>
|
157 |
Â
<?php } elseif (is_wp_error($license_data)) { ?>
|
158 |
+
<li class="tnp-professional-extensions-button-red">
|
159 |
+
<a href="?page=newsletter_main_main"><i class="fas fa-hand-paper" style="color: white"></i> <?php _e('License not valid', 'newsletter') ?></a>
|
160 |
Â
</li>
|
161 |
Â
|
162 |
Â
<?php } elseif ($license_data->expire == 0) { ?>
|
163 |
Â
|
164 |
+
<li class="tnp-professional-extensions-button"><a href="<?php echo $premium_url?>" target="_blank">
|
165 |
+
<i class="fas fa-trophy"></i> <?php _e('Get Professional Addons', 'newsletter') ?></a>
|
166 |
Â
</li>
|
167 |
Â
|
168 |
Â
<?php } elseif ($license_data->expire < time()) { ?>
|
169 |
Â
|
170 |
Â
<li class="tnp-professional-extensions-button-red">
|
171 |
+
<a href="?page=newsletter_main_main"><i class="fas fa-hand-paper" style="color: white"></i> <?php _e('License expired', 'newsletter') ?></a>
|
172 |
Â
</li>
|
173 |
Â
|
174 |
Â
<?php } elseif ($license_data->expire >= time()) { ?>
|
175 |
Â
|
176 |
Â
<?php $p = class_exists('NewsletterExtensions')?'newsletter_extensions_index':'newsletter_main_extensions'; ?>
|
177 |
Â
<li class="tnp-professional-extensions-button">
|
178 |
+
<a href="?page=<?php echo $p?>"><i class="fas fa-check-square"></i> <?php _e('License active', 'newsletter') ?></a>
|
179 |
Â
</li>
|
180 |
Â
|
181 |
Â
|
users/users.php
CHANGED
@@ -187,6 +187,13 @@ class NewsletterUsers extends NewsletterModule {
|
|
187 |
Â
$text = str_replace("\n", ' ', $text);
|
188 |
Â
$text = str_replace("\r", ' ', $text);
|
189 |
Â
$text = str_replace(";", ' ', $text);
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
190 |
Â
return $text;
|
191 |
Â
}
|
192 |
Â
|
187 |
Â
$text = str_replace("\n", ' ', $text);
|
188 |
Â
$text = str_replace("\r", ' ', $text);
|
189 |
Â
$text = str_replace(";", ' ', $text);
|
190 |
+
|
191 |
+
// Do you wonder? Excel...
|
192 |
+
$first = substr($text, 0, 1);
|
193 |
+
if ($first == '=' || $first == '+' || $first == '-' || $first == '@')
|
194 |
+
{
|
195 |
+
$text = "'" . $text;
|
196 |
+
}
|
197 |
Â
return $text;
|
198 |
Â
}
|
199 |
Â
|
vendor/fa/LICENSE.txt
ADDED
@@ -0,0 +1,34 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
Font Awesome Free License
|
2 |
+
-------------------------
|
3 |
+
|
4 |
+
Font Awesome Free is free, open source, and GPL friendly. You can use it for
|
5 |
+
commercial projects, open source projects, or really almost whatever you want.
|
6 |
+
Full Font Awesome Free license: https://fontawesome.com/license/free.
|
7 |
+
|
8 |
+
# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/)
|
9 |
+
In the Font Awesome Free download, the CC BY 4.0 license applies to all icons
|
10 |
+
packaged as SVG and JS file types.
|
11 |
+
|
12 |
+
# Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL)
|
13 |
+
In the Font Awesome Free download, the SIL OFL license applies to all icons
|
14 |
+
packaged as web and desktop font files.
|
15 |
+
|
16 |
+
# Code: MIT License (https://opensource.org/licenses/MIT)
|
17 |
+
In the Font Awesome Free download, the MIT license applies to all non-font and
|
18 |
+
non-icon files.
|
19 |
+
|
20 |
+
# Attribution
|
21 |
+
Attribution is required by MIT, SIL OFL, and CC BY licenses. Downloaded Font
|
22 |
+
Awesome Free files already contain embedded comments with sufficient
|
23 |
+
attribution, so you shouldn't need to do anything additional when using these
|
24 |
+
files normally.
|
25 |
+
|
26 |
+
We've kept attribution comments terse, so we ask that you do not actively work
|
27 |
+
to remove them from files, especially code. They're a great way for folks to
|
28 |
+
learn about Font Awesome.
|
29 |
+
|
30 |
+
# Brand Icons
|
31 |
+
All brand icons are trademarks of their respective owners. The use of these
|
32 |
+
trademarks does not indicate endorsement of the trademark holder by Font
|
33 |
+
Awesome, nor vice versa. **Please do not use brand logos for any purpose except
|
34 |
+
to represent the company, product, or service to which they refer.**
|
vendor/fa/css/all.min.css
ADDED
@@ -0,0 +1,5 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
/*!
|
2 |
+
* Font Awesome Free 5.12.1 by @fontawesome - https://fontawesome.com
|
3 |
+
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
4 |
+
*/
|
5 |
+
.fa,.fab,.fad,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adobe:before{content:"\f778"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-bahai:before{content:"\f666"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-biking:before{content:"\f84a"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bootstrap:before{content:"\f836"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before{content:"\f853"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caravan:before{content:"\f8ff"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-alt:before{content:"\f422"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-cotton-bureau:before{content:"\f89e"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dailymotion:before{content:"\f952"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-alt:before{content:"\f424"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fan:before{content:"\f863"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\f907"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-handshake:before{content:"\f2b5"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-hat-wizard:before{content:"\f6e8"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-ideal:before{content:"\f913"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-instagram-square:before{content:"\f955"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microblog:before{content:"\f91a"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mixer:before{content:"\f956"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse:before{content:"\f8cc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-square-alt:before{content:"\f87b"}.fa-phone-volume:before{content:"\f2a0"}.fa-photo-video:before{content:"\f87c"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-square:before{content:"\f91e"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-record-vinyl:before{content:"\f8d9"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-remove-format:before{content:"\f87d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopify:before{content:"\f957"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swift:before{content:"\f8e1"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-trailer:before{content:"\f941"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\f949"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-voicemail:before{content:"\f897"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-water:before{content:"\f773"}.fa-wave-square:before{content:"\f83e"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:400;font-display:auto;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:auto;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.fab,.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:auto;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900}
|
vendor/fa/webfonts/fa-brands-400.woff
ADDED
Binary file
|
vendor/fa/webfonts/fa-brands-400.woff2
ADDED
Binary file
|
vendor/fa/webfonts/fa-regular-400.woff
ADDED
Binary file
|
vendor/fa/webfonts/fa-regular-400.woff2
ADDED
Binary file
|
vendor/fa/webfonts/fa-solid-900.woff
ADDED
Binary file
|
vendor/fa/webfonts/fa-solid-900.woff2
ADDED
Binary file
|
vendor/fonts/CircularStd-Bold.eot
DELETED
Binary file
|
vendor/fonts/CircularStd-Bold.ttf
DELETED
Binary file
|
vendor/fonts/CircularStd-Bold.woff
DELETED
Binary file
|
vendor/fonts/CircularStd-Bold.woff2
DELETED
Binary file
|
vendor/fonts/CircularStd-Medium.eot
DELETED
Binary file
|
vendor/fonts/CircularStd-Medium.ttf
DELETED
Binary file
|
vendor/fonts/CircularStd-Medium.woff
DELETED
Binary file
|
vendor/fonts/CircularStd-Medium.woff2
DELETED
Binary file
|