Files
old-new-wiaas/backend/wp-content/plugins/mailchimp-for-woocommerce/admin/partials/mailchimp-woocommerce-admin-tabs.php
2018-06-14 16:49:28 +02:00

144 lines
5.9 KiB
PHP

<?php
$active_tab = isset($_GET['tab']) ? $_GET['tab'] : 'api_key';
$is_mailchimp_post = isset($_POST['mailchimp_woocommerce_settings_hidden']) && $_POST['mailchimp_woocommerce_settings_hidden'] === 'Y';
$handler = MailChimp_WooCommerce_Admin::connect();
//Grab all options for this particular tab we're viewing.
$options = get_option($this->plugin_name, array());
if (!isset($_GET['tab']) && isset($options['active_tab'])) {
$active_tab = $options['active_tab'];
}
$show_sync_tab = isset($_GET['resync']) ? $_GET['resync'] === '1' : false;;
$show_campaign_defaults = true;
$has_valid_api_key = false;
$allow_new_list = true;
$clicked_sync_button = $is_mailchimp_post&& $active_tab == 'sync';
if (isset($options['mailchimp_api_key']) && $handler->hasValidApiKey()) {
$has_valid_api_key = true;
// if we don't have a valid api key we need to redirect back to the 'api_key' tab.
if (($mailchimp_lists = $handler->getMailChimpLists()) && is_array($mailchimp_lists)) {
$show_campaign_defaults = false;
$allow_new_list = false;
}
// only display this button if the data is not syncing and we have a valid api key
if ((bool) $this->getData('sync.started_at', false)) {
$show_sync_tab = true;
}
}
?>
<style>
#sync-status-message strong {
font-weight:inherit;
}
#log-viewer {
background: #fff;
border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,.04);
padding: 5px 20px;
}
#log-viewer-select {
padding: 10px 0 8px;
line-height: 28px;
}
#log-viewer pre {
font-family: monospace;
white-space: pre-wrap;
}
user agent stylesheet
pre, xmp, plaintext, listing {
display: block;
font-family: monospace;
white-space: pre;
margin: 1em 0px;
}
</style>
<?php if (!defined('PHP_VERSION_ID') || (PHP_VERSION_ID < 70000)): ?>
<div data-dismissible="notice-php-version" class="error notice notice-error is-dismissible">
<p><?php _e('MailChimp says: Please upgrade your PHP version to a minimum of 7.0', 'mailchimp-woocommerce'); ?></p>
</div>
<?php endif; ?>
<!-- Create a header in the default WordPress 'wrap' container -->
<div class="wrap">
<div id="icon-themes" class="icon32"></div>
<h2>MailChimp Settings</h2>
<h2 class="nav-tab-wrapper">
<a href="?page=mailchimp-woocommerce&tab=api_key" class="nav-tab <?php echo $active_tab == 'api_key' ? 'nav-tab-active' : ''; ?>">Connect</a>
<?php if($has_valid_api_key): ?>
<a href="?page=mailchimp-woocommerce&tab=store_info" class="nav-tab <?php echo $active_tab == 'store_info' ? 'nav-tab-active' : ''; ?>">Store Settings</a>
<?php if ($handler->hasValidStoreInfo()) : ?>
<?php if($show_campaign_defaults): ?>
<a href="?page=mailchimp-woocommerce&tab=campaign_defaults" class="nav-tab <?php echo $active_tab == 'campaign_defaults' ? 'nav-tab-active' : ''; ?>">List Defaults</a>
<?php endif; ?>
<a href="?page=mailchimp-woocommerce&tab=newsletter_settings" class="nav-tab <?php echo $active_tab == 'newsletter_settings' ? 'nav-tab-active' : ''; ?>">List Settings</a>
<?php if($show_sync_tab): ?>
<a href="?page=mailchimp-woocommerce&tab=sync" class="nav-tab <?php echo $active_tab == 'sync' ? 'nav-tab-active' : ''; ?>">Sync</a>
<a href="?page=mailchimp-woocommerce&tab=logs" class="nav-tab <?php echo $active_tab == 'logs' ? 'nav-tab-active' : ''; ?>">Logs</a>
<?php endif; ?>
<?php endif;?>
<?php endif; ?>
</h2>
<form method="post" name="cleanup_options" action="options.php">
<input type="hidden" name="mailchimp_woocommerce_settings_hidden" value="Y">
<?php
if (!$clicked_sync_button) {
settings_fields($this->plugin_name);
do_settings_sections($this->plugin_name);
include('tabs/notices.php');
}
?>
<input type="hidden" name="<?php echo $this->plugin_name; ?>[mailchimp_active_tab]" value="<?php echo esc_attr($active_tab); ?>"/>
<?php if ($active_tab == 'api_key' ): ?>
<?php include_once 'tabs/api_key.php'; ?>
<?php endif; ?>
<?php if ($active_tab == 'store_info' && $has_valid_api_key): ?>
<?php include_once 'tabs/store_info.php'; ?>
<?php endif; ?>
<?php if ($active_tab == 'campaign_defaults' ): ?>
<?php include_once 'tabs/campaign_defaults.php'; ?>
<?php endif; ?>
<?php if ($active_tab == 'newsletter_settings' ): ?>
<?php include_once 'tabs/newsletter_settings.php'; ?>
<?php endif; ?>
<?php if ($active_tab == 'sync' && $show_sync_tab): ?>
<?php include_once 'tabs/store_sync.php'; ?>
<?php endif; ?>
<?php if ($active_tab == 'logs' && $show_sync_tab): ?>
<?php include_once 'tabs/logs.php'; ?>
<?php endif; ?>
<?php if ($active_tab !== 'sync' && $active_tab !== 'logs') submit_button('Save all changes', 'primary','submit', TRUE); ?>
</form>
<?php if ($active_tab == 'sync'): ?>
<h2 style="padding-top: 1em;">More Information</h2>
<ul>
<li>Have a larger store or having issues syncing? Consider using <a href="https://github.com/mailchimp/mc-woocommerce/issues/158" target="_blank">WP-CLI</a>.</li>
<li>Order and customer information will not sync if they contain an Amazon or generic email address.</li>
<li>Need help to connect your store? Visit the MailChimp <a href="http://kb.mailchimp.com/integrations/e-commerce/connect-or-disconnect-mailchimp-for-woocommerce/" target="_blank">Knowledge Base</a>.</li>
<li>Want to tell us how we're doing? <a href="https://wordpress.org/support/plugin/mailchimp-for-woocommerce/reviews/" target="_blank">Leave a review on Wordpress.org</a>.</li>
</ul>
<?php endif; ?>
</div><!-- /.wrap -->