HEX
Server: Apache/2.4.65 (Debian)
System: Linux kubikelcreative 5.10.0-35-amd64 #1 SMP Debian 5.10.237-1 (2025-05-19) x86_64
User: www-data (33)
PHP: 8.4.13
Disabled: NONE
Upload Files
File: /var/www/indoadvisory/wp/wp-content/plugins/wp-hide-security-enhancer/include/widgets.class.php
<?php

    if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    
    class WPH_widgets
        {
            var $wph;
                                  
            function __construct()
                {
                    global $wph;
                    $this->wph          =   &$wph;
                }
            
            function _get_dashboard_overview_widget_id()
                {
                    return 'wp-hide-overview';
                }
            
            
            function dashboard_overview_styles()
                {
                    wp_register_style('wph-graphs', WPH_URL . '/assets/css/graph.css', array(), WPH_CORE_VERSION );
                    wp_enqueue_style( 'wph-graphs');
                    
                    wp_register_style('wph-security-scan', WPH_URL . '/assets/css/security-scan.css', array(), WPH_CORE_VERSION );
                    wp_enqueue_style( 'wph-security-scan');
                    
                    wp_register_style('wph-dashboard-widget', WPH_URL . '/assets/css/dashboard-widget.css', array(), WPH_CORE_VERSION );
                    wp_enqueue_style( 'wph-dashboard-widget');
                }
                
                
            function dashboard_overview_widget_content()
                {   
                    $this->dashboard_overview_styles();
                    
                    $site_scan  =   (array)get_site_option('wph/site_scan');
                    $this->wph->security_scan->render_overview( $site_scan, 'widget' );
                    
                    $site_score =    $this->wph->security_scan->get_site_score( $site_scan );
                    
                    $allow_tags =   WPH_functions::get_general_description_allowed_tags();
                    
                    if ( isset ( $site_scan['last_scan'] )   &&  ! empty ( $site_scan['last_scan'] ) )
                        {
                            ?>
                            <p><?php esc_html_e( 'Your current estimated protection is',    'wp-hide-security-enhancer' ) ?> <b><?php echo esc_html( $site_score['protection'] ) ?></b>.<br /><?php
                            
                                echo wp_kses ( $this->wph->security_scan->get_security_hints( $site_score, 'widget' ), $allow_tags );
                            
                            ?></p>
                            <?php
                        }
                        else
                        {
                            ?>
                            <p><?php esc_html_e( 'Run a fist scan to determine the current protection level of your website.',    'wp-hide-security-enhancer') ?><br /><br /><a class="button button-primary" href="<?php echo esc_url ( network_admin_url ( 'admin.php?page=wp-hide-security-scan' ) ) ?>"><?php esc_html_e( 'Security Scan', 'wp-hide-security-enhancer') ?></a></p>
                            <?php
                        }
                    
                }
                
        }
        
        
?>