mage-eventpress/inc/status.php

84 lines
3.3 KiB
PHP
Raw Normal View History

2021-02-03 06:44:54 -05:00
<?php
if (!defined('ABSPATH')) {
die;
} // Cannot access pages directly.
//Add admin page to the menu
add_action('admin_menu', 'mep_event_status_admin_menu');
function mep_event_status_admin_menu()
{
add_submenu_page('edit.php?post_type=mep_events', __('Status', 'mage-eventpress'), __('<span style="color:yellow">Status</span>', 'mage-eventpress'), 'manage_options', 'mep_event_status_page', 'mep_event_status_page');
}
function mep_event_status_page()
{
$wp_v = get_bloginfo( 'version' );
$wc_v = WC()->version;
$wc_i = mep_woo_install_check();
$from_name = mep_get_option( 'mep_email_form_name', 'email_setting_sec', '');
$from_email = mep_get_option( 'mep_email_form_email', 'email_setting_sec', '');
?>
<style>
.mep_success{
color:green;
font-weight: bold;
}
.mep_warning{
color:#e6b14e;
font-weight: bold;
}
.mep_error{
color:red;
font-weight: bold;
}
</style>
<!-- Create a header in the default WordPress 'wrap' container -->
<div class="wrap">
<?php do_action('mep_event_status_notice_sec'); ?>
<table class="wc_status_table widefat" cellspacing="0" id="status">
<thead>
<tr>
<th colspan="3" data-export-label="WordPress Environment"><h2>WooCommerce Event Manager Environment Status</h2></th>
</tr>
</thead>
<tbody>
<tr>
<td data-export-label="WC Version">WordPress Version:</td>
<td class="help"><span class="woocommerce-help-tip"></span></td>
<td><?php if($wp_v > 5.5){ echo '<span class="mep_success"> <span class="dashicons dashicons-saved"></span>'.$wp_v.'</span>'; }else{ echo '<span class="mep_warning"> <span class="dashicons dashicons-saved"></span>'.$wp_v.'</span>'; } ?></td>
</tr>
<tr>
<td data-export-label="WC Version">Woocommerce Installed:</td>
<td class="help"><span class="woocommerce-help-tip"></span></td>
<td><?php if($wc_i == 'Yes'){ echo '<span class="mep_success"> <span class="dashicons dashicons-saved"></span>'.$wc_i.'</span>'; }else{ echo '<span class="mep_error"> <span class="dashicons dashicons-no-alt"></span>'.$wc_i.'</span>'; } ?></td>
</tr>
<?php if(mep_woo_install_check() == 'Yes'){ ?>
<tr>
<td data-export-label="WC Version">Woocommerce Version:</td>
<td class="help"><span class="woocommerce-help-tip"></span></td>
<td><?php if($wc_v > 4.8){ echo '<span class="mep_success"> <span class="dashicons dashicons-saved"></span>'.$wc_v.'</span>'; }else{ echo '<span class="mep_warning"> <span class="dashicons dashicons-no-alt"></span>'.$wc_v.'</span>'; } ?></td>
</tr>
<tr>
<td data-export-label="WC Version">Email From Name:</td>
<td class="help"><span class="woocommerce-help-tip"></span></td>
<td><?php if($from_name){ echo '<span class="mep_success"> <span class="dashicons dashicons-saved"></span>'.$from_name.'</span>'; }else{ echo '<span class="mep_error"> <span class="dashicons dashicons-no-alt"></span></span>'; } ?></td>
</tr>
<tr>
<td data-export-label="WC Version">From Email Address:</td>
<td class="help"><span class="woocommerce-help-tip"></span></td>
<td><?php if($from_email){ echo '<span class="mep_success"> <span class="dashicons dashicons-saved"></span>'.$from_email.'</span>'; }else{ echo '<span class="mep_error"> <span class="dashicons dashicons-no-alt"></span></span>'; } ?></td>
</tr>
<?php }
do_action('mep_event_status_table_item_sec'); ?>
</tbody>
</table>
</div>
<?php
}