first commit

This commit is contained in:
DESKTOP-GBA0BK8\Admin
2023-04-08 12:19:53 -04:00
commit 7c8c8b1c76
4586 changed files with 2050693 additions and 0 deletions
@@ -0,0 +1,11 @@
<?php
$email_label = __('Email address', 'mailchimp-for-wp');
$email_placeholder = __('Your email address', 'mailchimp-for-wp');
$signup_button = __('Sign up', 'mailchimp-for-wp');
$content = "<p>\n\t<label>{$email_label}: \n";
$content .= "\t\t<input type=\"email\" name=\"EMAIL\" placeholder=\"{$email_placeholder}\" required />\n</label>\n</p>\n\n";
$content .= "<p>\n\t<input type=\"submit\" value=\"{$signup_button}\" />\n</p>";
return $content;
@@ -0,0 +1,39 @@
<?php
return array(
'subscribed' => array(
'type' => 'success',
'text' => __('Thank you, your sign-up request was successful! Please check your email inbox to confirm.', 'mailchimp-for-wp')
),
'updated' => array(
'type' => 'success',
'text' => __('Thank you, your records have been updated!', 'mailchimp-for-wp'),
),
'unsubscribed' => array(
'type' => 'success',
'text' => __('You were successfully unsubscribed.', 'mailchimp-for-wp'),
),
'not_subscribed' => array(
'type' => 'notice',
'text' => __('Given email address is not subscribed.', 'mailchimp-for-wp'),
),
'error' => array(
'type' => 'error',
'text' => __('Oops. Something went wrong. Please try again later.', 'mailchimp-for-wp'),
),
'invalid_email' => array(
'type' => 'error',
'text' => __('Please provide a valid email address.', 'mailchimp-for-wp'),
),
'already_subscribed' => array(
'type' => 'notice',
'text' => __('Given email address is already subscribed, thank you!', 'mailchimp-for-wp'),
),
'required_field_missing' => array(
'type' => 'error',
'text' => __('Please fill in the required fields.', 'mailchimp-for-wp'),
),
'no_lists_selected' => array(
'type' => 'error',
'text' => __('Please select at least one list.', 'mailchimp-for-wp')
),
);
@@ -0,0 +1,12 @@
<?php
return array(
'css' => 0,
'double_optin' => 1,
'hide_after_success' => 0,
'lists' => array(),
'redirect' => '',
'replace_interests' => 1,
'required_fields' => '',
'update_existing' => 0,
'subscriber_tags' => '',
);
@@ -0,0 +1,6 @@
<?php
return array(
'api_key' => '',
'allow_usage_tracking' => 0,
'debug_log_level' => 'warning',
);