# mainwp/trunk/modules/logs/widgets/widget-log-graph-php-widget.php

MainWP Dashboard: Self-hosted WordPress Management for Agencies, version trunk. 183 lines.

- Page: https://pluginprobe.com/plugins/mainwp/trunk/code/modules/logs/widgets/widget-log-graph-php-widget.php
- Raw: https://pluginprobe.com/plugins/mainwp/trunk/raw/modules/logs/widgets/widget-log-graph-php-widget.php
- Modified: 2026-02-24T16:08:26+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/mainwp/trunk/code/modules/logs/widgets/widget-log-graph-php-widget.php#L10-L20`.

```php
<?php
/**
 * MainWP Logs Widget
 *
 * Displays the Logs Info.
 *
 * @package MainWP/Dashboard
 * @version 4.6
 */

namespace MainWP\Dashboard\Module\Log;

use MainWP\Dashboard\MainWP_DB;
use MainWP\Dashboard\MainWP_Utility;
use MainWP\Dashboard\MainWP_UI;

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
    exit;
}

/**
 * Class Log_Graph_Php_Widget
 *
 * Displays the Logs info.
 */
class Log_Graph_Php_Widget {

    /**
     * Protected static variable to hold the single instance of the class.
     *
     * @var mixed Default null
     */
    protected static $instance = null;

    /**
     * Return the single instance of the class.
     *
     * @return mixed $instance The single instance of the class.
     */
    public static function instance() {
        if ( is_null( static::$instance ) ) {
            static::$instance = new self();
        }
        return static::$instance;
    }


    /**
     * Method get_class_name()
     *
     * @return string __CLASS__ Class name.
     */
    public static function get_class_name() {
        return __CLASS__;
    }

    /**
     * Method render()
     */
    public function render() {
        $this->render_widget();
    }


    /**
     * Render client overview Info.
     */
    public function render_widget() {
        $sites_count = MainWP_DB::instance()->get_websites_count();
        ?>
        <div class="mainwp-widget-header">
            <h2 class="ui header handle-drag">
                <?php esc_html_e( 'PHP Version Distribution', 'mainwp' ); ?>
                <div class="sub header">
                <?php esc_html_e( 'Distribution of PHP versions across the sites. Track which PHP versions are most prevalent in your network.', 'mainwp' ); ?>
                </div>
            </h2>
        </div>

        <div class="mainwp-widget-insights-card mainwp-scrolly-overflow">
            <?php
            /**
             * Action: mainwp_logs_widget_top
             *
             * Fires at the top of the widget.
             *
             * @since 4.6
             */
            do_action( 'mainwp_logs_widget_top', 'php' );
            ?>
            <div id="mainwp-message-zone" style="display:none;" class="ui message"></div>
            <?php
            MainWP_UI::generate_wp_nonce( 'mainwp-admin-nonce' );
            if ( 0 < intval( $sites_count ) ) {
                $this->render_widget_content();
            } else {
                MainWP_UI::render_empty_element_placeholder( __( 'No PHP Version Data', 'mainwp' ), '<a href="admin.php?page=managesites&do=new">' . __( 'Start connecting your sites now', 'mainwp' ) . '</a>', '<em data-emoji=":bar_chart:" class="medium"></em>' );
            }
            ?>
            <?php
            /**
             * Action: mainwp_logs_widget_bottom
             *
             * Fires at the bottom of the widget.
             *
             * @since 4.6
             */
            do_action( 'mainwp_logs_widget_bottom', 'php' );
            ?>
        </div>
        <div class="mainwp-widget-footer ui four columns stackable grid">
            <div class="column">
            </div>
            <div class="column">
            </div>
        </div>
        <?php
    }

    /**
     * Method render_widget_content()
     */
    public function render_widget_content() {
        $versions = array();
        $websites = MainWP_DB::instance()->query( MainWP_DB::instance()->get_sql_websites() );
        while ( $websites && ( $website  = MainWP_DB::fetch_object( $websites ) ) ) {
            if ( ! empty( $website->phpversion ) ) {
                $ver = substr( $website->phpversion, 0, 5 );
            } else {
                $ver = 'N/A';
            }
            if ( ! isset( $versions[ $ver ] ) ) {
                $versions[ $ver ] = 1;
            } else {
                $versions[ $ver ] += 1;
            }
        }
        MainWP_DB::free_result( $websites );

        ?>
        <div id="mainwp-module-log-chart-php-wrapper" ></div>
        <script type="text/javascript">
            jQuery( document ).ready( function() {
                let options = {
                    chart: {
                        type: 'pie',
                        height: 290,
                    },
                    tooltip: {
                        theme: 'dark'
                    },
                    legend: {
                        labels: {
                            colors: '#999'
                        }
                    },
                    stroke: {
                        width: 0
                    },
                    series: [ {
                        name: 'Sites',
                        data: [
                            <?php foreach ( $versions as $version => $count ) : ?>
                            {
                            x: '<?php echo esc_js( $version ); ?>',
                            y: <?php echo intval( $count ); ?>,
                            fillColor: '#18a4e0'
                            },
                            <?php endforeach; ?>
                        ]
                    } ],
                }
                let php = new ApexCharts(document.querySelector("#mainwp-module-log-chart-php-wrapper"), options);
                setTimeout(() => {
                    php.render();
                }, 1000);
            } );
        </script>
        <?php
    }
}

```
