Agentic
4 months ago
BlockTemplates
4 weeks ago
EmailImprovements
1 year ago
EmailPreview
4 weeks ago
Emails
1 year ago
ImportExport
1 year ago
Logging
1 year ago
Marketing
2 years ago
Notes
4 weeks ago
Onboarding
5 months ago
Orders
4 weeks ago
ProductForm
2 years ago
ProductReviews
4 weeks ago
RemoteFreeExtensions
4 weeks ago
Schedulers
4 weeks ago
Settings
2 weeks ago
Suggestions
4 weeks ago
WCPayPromotion
10 months ago
ActivityPanels.php
3 years ago
Analytics.php
4 weeks ago
CategoryLookup.php
4 years ago
Coupons.php
1 year ago
CouponsMovedTrait.php
5 months ago
CustomerEffortScoreTracks.php
7 months ago
Events.php
2 months ago
FeaturePlugin.php
4 months ago
Homescreen.php
1 month ago
Loader.php
4 weeks ago
Marketing.php
1 year ago
Marketplace.php
5 months ago
MobileAppBanner.php
4 years ago
OrderMilestoneEasterEgg.php
4 weeks ago
RemoteInboxNotifications.php
3 years ago
Settings.php
2 weeks ago
ShippingLabelBanner.php
1 year ago
ShippingLabelBannerDisplayRules.php
1 year ago
SiteHealth.php
3 years ago
Survey.php
4 years ago
SystemStatusReport.php
1 year ago
Translations.php
1 year ago
WCAdminAssets.php
2 weeks ago
WCAdminSharedSettings.php
1 year ago
WCAdminUser.php
9 months ago
WcPayWelcomePage.php
1 year ago
SystemStatusReport.php
218 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Add additional system status report sections. |
| 4 | */ |
| 5 | |
| 6 | namespace Automattic\WooCommerce\Internal\Admin; |
| 7 | |
| 8 | use Automattic\WooCommerce\Admin\Notes\Notes; |
| 9 | defined( 'ABSPATH' ) || exit; |
| 10 | |
| 11 | /** |
| 12 | * SystemStatusReport class. |
| 13 | */ |
| 14 | class SystemStatusReport { |
| 15 | /** |
| 16 | * Class instance. |
| 17 | * |
| 18 | * @var SystemStatus instance |
| 19 | */ |
| 20 | protected static $instance = null; |
| 21 | |
| 22 | /** |
| 23 | * Get class instance. |
| 24 | */ |
| 25 | public static function get_instance() { |
| 26 | if ( ! self::$instance ) { |
| 27 | self::$instance = new self(); |
| 28 | } |
| 29 | return self::$instance; |
| 30 | } |
| 31 | |
| 32 | /** |
| 33 | * Hook into WooCommerce. |
| 34 | */ |
| 35 | public function __construct() { |
| 36 | add_action( 'woocommerce_system_status_report', array( $this, 'system_status_report' ) ); |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * Hooks extra necessary sections into the system status report template |
| 41 | */ |
| 42 | public function system_status_report() { |
| 43 | ?> |
| 44 | <table class="wc_status_table widefat" cellspacing="0"> |
| 45 | <thead> |
| 46 | <tr> |
| 47 | <th colspan="5" data-export-label="Admin"> |
| 48 | <h2> |
| 49 | <?php esc_html_e( 'Admin', 'woocommerce' ); ?><?php echo wc_help_tip( esc_html__( 'This section shows details of WC Admin.', 'woocommerce' ) ); ?> |
| 50 | </h2> |
| 51 | </th> |
| 52 | </tr> |
| 53 | </thead> |
| 54 | <tbody> |
| 55 | <?php |
| 56 | $this->render_features(); |
| 57 | $this->render_daily_cron(); |
| 58 | $this->render_options(); |
| 59 | $this->render_notes(); |
| 60 | $this->render_onboarding_state(); |
| 61 | ?> |
| 62 | </tbody> |
| 63 | </table> |
| 64 | <?php |
| 65 | } |
| 66 | |
| 67 | /** |
| 68 | * Render features rows. |
| 69 | */ |
| 70 | public function render_features() { |
| 71 | /** |
| 72 | * Filter the admin feature configs. |
| 73 | * |
| 74 | * @since 6.5.0 |
| 75 | */ |
| 76 | $features = apply_filters( 'woocommerce_admin_get_feature_config', wc_admin_get_feature_config() ); |
| 77 | $enabled_features = array_filter( $features ); |
| 78 | $disabled_features = array_filter( |
| 79 | $features, |
| 80 | function( $feature ) { |
| 81 | return empty( $feature ); |
| 82 | } |
| 83 | ); |
| 84 | |
| 85 | ?> |
| 86 | <tr> |
| 87 | <td data-export-label="Enabled Features"> |
| 88 | <?php esc_html_e( 'Enabled Features', 'woocommerce' ); ?>: |
| 89 | </td> |
| 90 | <td class="help"><?php echo wc_help_tip( esc_html__( 'Which features are enabled?', 'woocommerce' ) ); /* phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped */ ?></td> |
| 91 | <td> |
| 92 | <?php |
| 93 | echo esc_html( implode( ', ', array_keys( $enabled_features ) ) ) |
| 94 | ?> |
| 95 | </td> |
| 96 | </tr> |
| 97 | |
| 98 | <tr> |
| 99 | <td data-export-label="Disabled Features"> |
| 100 | <?php esc_html_e( 'Disabled Features', 'woocommerce' ); ?>: |
| 101 | </td> |
| 102 | <td class="help"><?php echo wc_help_tip( esc_html__( 'Which features are disabled?', 'woocommerce' ) ); /* phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped */ ?></td> |
| 103 | <td> |
| 104 | <?php |
| 105 | echo esc_html( implode( ', ', array_keys( $disabled_features ) ) ) |
| 106 | ?> |
| 107 | </td> |
| 108 | </tr> |
| 109 | <?php |
| 110 | } |
| 111 | |
| 112 | |
| 113 | /** |
| 114 | * Render daily cron row. |
| 115 | */ |
| 116 | public function render_daily_cron() { |
| 117 | $next_daily_cron = wp_next_scheduled( 'wc_admin_daily' ); |
| 118 | ?> |
| 119 | <tr> |
| 120 | <td data-export-label="Daily Cron"> |
| 121 | <?php esc_html_e( 'Daily Cron', 'woocommerce' ); ?>: |
| 122 | </td> |
| 123 | <td class="help"><?php echo wc_help_tip( esc_html__( 'Is the daily cron job active, when does it next run?', 'woocommerce' ) ); /* phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped */ ?></td> |
| 124 | <td> |
| 125 | <?php |
| 126 | if ( empty( $next_daily_cron ) ) { |
| 127 | echo '<mark class="error"><span class="dashicons dashicons-warning"></span> ' . esc_html__( 'Not scheduled', 'woocommerce' ) . '</mark>'; |
| 128 | } else { |
| 129 | echo '<mark class="yes"><span class="dashicons dashicons-yes"></span> Next scheduled: ' . esc_html( date_i18n( 'Y-m-d H:i:s P', $next_daily_cron ) ) . '</mark>'; |
| 130 | } |
| 131 | ?> |
| 132 | </td> |
| 133 | </tr> |
| 134 | <?php |
| 135 | } |
| 136 | |
| 137 | /** |
| 138 | * Render option row. |
| 139 | */ |
| 140 | public function render_options() { |
| 141 | $woocommerce_admin_install_timestamp = get_option( 'woocommerce_admin_install_timestamp' ); |
| 142 | |
| 143 | $all_options_expected = is_numeric( $woocommerce_admin_install_timestamp ) |
| 144 | && 0 < (int) $woocommerce_admin_install_timestamp |
| 145 | && is_array( get_option( 'woocommerce_onboarding_profile', array() ) ); |
| 146 | |
| 147 | ?> |
| 148 | <tr> |
| 149 | <td data-export-label="Options"> |
| 150 | <?php esc_html_e( 'Options', 'woocommerce' ); ?>: |
| 151 | </td> |
| 152 | <td class="help"><?php echo wc_help_tip( esc_html__( 'Do the important options return expected values?', 'woocommerce' ) ); /* phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped */ ?></td> |
| 153 | <td> |
| 154 | <?php |
| 155 | if ( $all_options_expected ) { |
| 156 | echo '<mark class="yes"><span class="dashicons dashicons-yes"></span></mark>'; |
| 157 | } else { |
| 158 | echo '<mark class="error"><span class="dashicons dashicons-warning"></span> ' . esc_html__( 'Not all expected', 'woocommerce' ) . '</mark>'; |
| 159 | } |
| 160 | ?> |
| 161 | </td> |
| 162 | </tr> |
| 163 | <?php |
| 164 | } |
| 165 | |
| 166 | /** |
| 167 | * Render the notes row. |
| 168 | */ |
| 169 | public function render_notes() { |
| 170 | $notes_count = Notes::get_notes_count(); |
| 171 | |
| 172 | ?> |
| 173 | <tr> |
| 174 | <td data-export-label="Notes"> |
| 175 | <?php esc_html_e( 'Notes', 'woocommerce' ); ?>: |
| 176 | </td> |
| 177 | <td class="help"><?php echo wc_help_tip( esc_html__( 'How many notes in the database?', 'woocommerce' ) ); /* phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped */ ?></td> |
| 178 | <td> |
| 179 | <?php |
| 180 | echo esc_html( $notes_count ) |
| 181 | ?> |
| 182 | </td> |
| 183 | </tr> |
| 184 | <?php |
| 185 | } |
| 186 | |
| 187 | /** |
| 188 | * Render the onboarding state row. |
| 189 | */ |
| 190 | public function render_onboarding_state() { |
| 191 | $onboarding_profile = get_option( 'woocommerce_onboarding_profile', array() ); |
| 192 | $onboarding_state = '-'; |
| 193 | |
| 194 | if ( isset( $onboarding_profile['skipped'] ) && $onboarding_profile['skipped'] ) { |
| 195 | $onboarding_state = 'skipped'; |
| 196 | } |
| 197 | |
| 198 | if ( isset( $onboarding_profile['completed'] ) && $onboarding_profile['completed'] ) { |
| 199 | $onboarding_state = 'completed'; |
| 200 | } |
| 201 | |
| 202 | ?> |
| 203 | <tr> |
| 204 | <td data-export-label="Onboarding"> |
| 205 | <?php esc_html_e( 'Onboarding', 'woocommerce' ); ?>: |
| 206 | </td> |
| 207 | <td class="help"><?php echo wc_help_tip( esc_html__( 'Was onboarding completed or skipped?', 'woocommerce' ) ); /* phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped */ ?></td> |
| 208 | <td> |
| 209 | <?php |
| 210 | echo esc_html( $onboarding_state ) |
| 211 | ?> |
| 212 | </td> |
| 213 | </tr> |
| 214 | <?php |
| 215 | } |
| 216 | |
| 217 | } |
| 218 |