Google

Cyb3r Drag0nz Team Shell

Server : Apache
System : Linux webd003.cluster126.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User : atwiofrxug (73666)
PHP Version : 8.4.10
Disable Functions : _dyuweyrj4,_dyuweyrj4r,dl
Current Directory : /home/atwiofrxug/mylittletelaviv/wp-content/plugins/newsletter/users/
Directory Status: Writeable | Document Root: Writeable

Upload File







Viewing: /home/atwiofrxug/mylittletelaviv/wp-content/plugins/newsletter/users/statistics-time.php

<?php
defined('ABSPATH') || exit;
?>

<div class="row">
    <div class="col-md-6">
        <h3><?php _e('Subscriptions by month (max 12 months)', 'newsletter') ?></h3>
        <?php
        $months = $wpdb->get_results("select count(*) as c, concat(year(created), '-', date_format(created, '%m')) as d from " . NEWSLETTER_USERS_TABLE . " where status='C' group by concat(year(created), '-', date_format(created, '%m')) order by d desc limit 12");
        ?>

        <table class="widefat">
            <thead>
                <tr>
                    <th><?php _e('Year and month', 'newsletter') ?></th>
                    <th><?php _e('Total', 'newsletter') ?></th>
                </tr>
            </thead>
            <?php foreach ($months as &$day) { ?>
                <tr>
                    <td><?php echo $day->d; ?></td>
                    <td><?php echo $day->c; ?></td>
                </tr>
            <?php } ?>
        </table>

    </div>

    <div class="col-md-6">

        <h3><?php _e('Subscriptions by day (max 90 days)', 'newsletter') ?></h3>
        <?php
        $list = $wpdb->get_results("select count(*) as c, date(created) as d from " . NEWSLETTER_USERS_TABLE . " where status='C' group by date(created) order by d desc limit 90");
        ?>
        <table class="widefat">
            <thead>
                <tr>
                    <th><?php _e('Date', 'newsletter') ?></th>
                    <th><?php _e('Total', 'newsletter') ?></th>
                </tr>
            </thead>
            <?php foreach ($list as $day) { ?>
                <tr>
                    <td><?php echo $day->d; ?></td>
                    <td><?php echo $day->c; ?></td>
                </tr>
            <?php } ?>
        </table>

    </div>

</div>


Cyb3r Drag0nz Team • Google Edition