diff --git a/admin/admin_settings.php b/admin/admin_settings.php index 71090595..9930252c 100644 --- a/admin/admin_settings.php +++ b/admin/admin_settings.php @@ -1299,11 +1299,13 @@ if ( defined('HESK_DEMO') )
-
+
    -
'; +
+
+
'; ?> @@ -1334,6 +1342,9 @@ if ( defined('HESK_DEMO') )
+
+

populate this!

+
diff --git a/js/modsForHesk-javascript.js b/js/modsForHesk-javascript.js index 3e1f9913..11481352 100644 --- a/js/modsForHesk-javascript.js +++ b/js/modsForHesk-javascript.js @@ -57,4 +57,13 @@ function toggleChildrenForm(show) { } } +function toggleContainers(showIds, hideIds) { + showIds.forEach(function (entry) { + $('#' + entry).show(); + }); + hideIds.forEach(function (entry) { + $('#' + entry).hide(); + }); +} + jQuery(document).ready(loadJquery); diff --git a/language/en/text.php b/language/en/text.php index 621f524a..7d8bbf7a 100644 --- a/language/en/text.php +++ b/language/en/text.php @@ -33,6 +33,8 @@ $hesklang['email_custom_field_help'] = 'Allows the input of an email address. Si $hesklang['email_custom_field_label'] = 'Address Type'; $hesklang['cc'] = 'Cc:'; $hesklang['bcc'] = 'Bcc:'; +$hesklang['mailgun'] = 'Mailgun'; +$hesklang['mailgun_help'] = 'Send mail using the Mailgun API. For more information on Mailgun, visit https://www.mailgun.com'; // ADDED OR MODIFIED IN Mods For HESK 1.7.0