Agentic
6 months ago
EmailImprovements
1 year ago
EmailPreview
1 month ago
Emails
2 weeks ago
ImportExport
1 year ago
Logging
2 weeks ago
Marketing
2 years ago
Notes
2 weeks ago
Onboarding
2 weeks ago
Orders
1 month ago
ProductForm
2 years ago
ProductReviews
2 months ago
RemoteFreeExtensions
2 months ago
Reports
2 weeks ago
Schedulers
2 weeks ago
Settings
2 weeks ago
Suggestions
2 weeks ago
WCPayPromotion
1 year ago
ActivityPanels.php
4 years ago
Analytics.php
2 weeks ago
CategoryLookup.php
4 years ago
Coupons.php
2 weeks ago
CouponsMovedTrait.php
7 months ago
CustomerEffortScoreTracks.php
9 months ago
Events.php
2 weeks ago
FeaturePlugin.php
2 weeks ago
Homescreen.php
2 weeks ago
Loader.php
1 month ago
Marketing.php
1 year ago
Marketplace.php
7 months ago
MobileAppBanner.php
4 years ago
OrderMilestoneEasterEgg.php
2 months ago
RemoteInboxNotifications.php
2 weeks ago
Settings.php
2 weeks ago
ShippingLabelBanner.php
1 year ago
ShippingLabelBannerDisplayRules.php
1 year ago
SiteHealth.php
2 weeks ago
Survey.php
4 years ago
SystemStatusReport.php
2 weeks ago
TaxSettingsRecommendations.php
1 month ago
Translations.php
1 year ago
WCAdminAssets.php
1 week ago
WCAdminSharedSettings.php
1 year ago
WCAdminUser.php
10 months ago
WcPayWelcomePage.php
1 year ago
SystemStatusReport.php
223 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_action_time = function_exists( 'as_next_scheduled_action' ) |
| 118 | ? as_next_scheduled_action( 'wc_admin_daily_wrapper', null, 'woocommerce' ) |
| 119 | : false; |
| 120 | ?> |
| 121 | <tr> |
| 122 | <td data-export-label="Daily Cron"> |
| 123 | <?php esc_html_e( 'Daily Cron', 'woocommerce' ); ?>: |
| 124 | </td> |
| 125 | <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> |
| 126 | <td> |
| 127 | <?php |
| 128 | if ( $next_action_time ) { |
| 129 | $status_text = true === $next_action_time |
| 130 | ? esc_html__( 'Currently running', 'woocommerce' ) |
| 131 | /* translators: %s: Date and time the daily cron job is next scheduled to run. */ |
| 132 | : sprintf( esc_html__( 'Next scheduled: %s', 'woocommerce' ), esc_html( date_i18n( 'Y-m-d H:i:s P', (int) $next_action_time ) ) ); |
| 133 | echo '<mark class="yes"><span class="dashicons dashicons-yes"></span> ' . $status_text . '</mark>'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- $status_text built from esc_html()/esc_html__() above. |
| 134 | } else { |
| 135 | echo '<mark class="error"><span class="dashicons dashicons-warning"></span> ' . esc_html__( 'Not scheduled', 'woocommerce' ) . '</mark>'; |
| 136 | } |
| 137 | ?> |
| 138 | </td> |
| 139 | </tr> |
| 140 | <?php |
| 141 | } |
| 142 | |
| 143 | /** |
| 144 | * Render option row. |
| 145 | */ |
| 146 | public function render_options() { |
| 147 | $woocommerce_admin_install_timestamp = get_option( 'woocommerce_admin_install_timestamp' ); |
| 148 | |
| 149 | $all_options_expected = is_numeric( $woocommerce_admin_install_timestamp ) |
| 150 | && 0 < (int) $woocommerce_admin_install_timestamp |
| 151 | && is_array( get_option( 'woocommerce_onboarding_profile', array() ) ); |
| 152 | |
| 153 | ?> |
| 154 | <tr> |
| 155 | <td data-export-label="Options"> |
| 156 | <?php esc_html_e( 'Options', 'woocommerce' ); ?>: |
| 157 | </td> |
| 158 | <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> |
| 159 | <td> |
| 160 | <?php |
| 161 | if ( $all_options_expected ) { |
| 162 | echo '<mark class="yes"><span class="dashicons dashicons-yes"></span></mark>'; |
| 163 | } else { |
| 164 | echo '<mark class="error"><span class="dashicons dashicons-warning"></span> ' . esc_html__( 'Not all expected', 'woocommerce' ) . '</mark>'; |
| 165 | } |
| 166 | ?> |
| 167 | </td> |
| 168 | </tr> |
| 169 | <?php |
| 170 | } |
| 171 | |
| 172 | /** |
| 173 | * Render the notes row. |
| 174 | */ |
| 175 | public function render_notes() { |
| 176 | $notes_count = Notes::get_notes_count(); |
| 177 | |
| 178 | ?> |
| 179 | <tr> |
| 180 | <td data-export-label="Notes"> |
| 181 | <?php esc_html_e( 'Notes', 'woocommerce' ); ?>: |
| 182 | </td> |
| 183 | <td class="help"><?php echo wc_help_tip( esc_html__( 'How many notes in the database?', 'woocommerce' ) ); /* phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped */ ?></td> |
| 184 | <td> |
| 185 | <?php |
| 186 | echo esc_html( $notes_count ) |
| 187 | ?> |
| 188 | </td> |
| 189 | </tr> |
| 190 | <?php |
| 191 | } |
| 192 | |
| 193 | /** |
| 194 | * Render the onboarding state row. |
| 195 | */ |
| 196 | public function render_onboarding_state() { |
| 197 | $onboarding_profile = get_option( 'woocommerce_onboarding_profile', array() ); |
| 198 | $onboarding_state = '-'; |
| 199 | |
| 200 | if ( isset( $onboarding_profile['skipped'] ) && $onboarding_profile['skipped'] ) { |
| 201 | $onboarding_state = 'skipped'; |
| 202 | } |
| 203 | |
| 204 | if ( isset( $onboarding_profile['completed'] ) && $onboarding_profile['completed'] ) { |
| 205 | $onboarding_state = 'completed'; |
| 206 | } |
| 207 | |
| 208 | ?> |
| 209 | <tr> |
| 210 | <td data-export-label="Onboarding"> |
| 211 | <?php esc_html_e( 'Onboarding', 'woocommerce' ); ?>: |
| 212 | </td> |
| 213 | <td class="help"><?php echo wc_help_tip( esc_html__( 'Was onboarding completed or skipped?', 'woocommerce' ) ); /* phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped */ ?></td> |
| 214 | <td> |
| 215 | <?php |
| 216 | echo esc_html( $onboarding_state ) |
| 217 | ?> |
| 218 | </td> |
| 219 | </tr> |
| 220 | <?php |
| 221 | } |
| 222 | } |
| 223 |