woocommerce_system_status_environment_rows

woocommerce_system_status_environment_rows

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

apply_filters('woocommerce_system_status_environment_rows') is found 1 times:

  • /includes/admin/views/html-admin-page-status-report.php line 429
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    // phpcs:disable WooCommerce.Commenting.CommentHooks.MissingSinceComment
    /**
     * Filters the environment rows to show in the WooCommerce status report.
     */
    $rows = apply_filters( 'woocommerce_system_status_environment_rows', array() );
    // phpcs:enable WooCommerce.Commenting.CommentHooks.MissingSinceVersionComment
    foreach ( $rows as $row ) {
        if ( ! empty( $row['success'] ) ) {
            $css_class = 'yes';
            $icon      = '<span class="dashicons dashicons-yes"></span>';
        } else {