Classes

File phpboost/cache/StatsCache.class.php

File phpboost/cache/StatsCache.class.php

 1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 
<?php
/**
 * @package     PHPBoost
 * @subpackage  Cache
 * @copyright   &copy; 2005-2019 PHPBoost
 * @license     https://www.gnu.org/licenses/gpl-3.0.html GNU/GPL-3.0
 * @author      Kevin MASSY <reidlos@phpboost.com>
 * @version     PHPBoost 5.2 - last update: 2014 12 22
 * @since       PHPBoost 4.1 - 2014 08 10
*/

class StatsCache implements CacheData
{
    private $stats = array();

    /**
     * {@inheritdoc}
     */
    public function synchronize()
    {
        $this->stats = array();
        $querier = PersistenceContext::get_querier();

        $nbr_members = $querier->count(DB_TABLE_MEMBER);
        $last_member = $querier->select_single_row(DB_TABLE_MEMBER, array('user_id', 'display_name', 'level', 'groups'), 'ORDER BY registration_date DESC LIMIT 1 OFFSET 0');

        $this->stats =  array(
            'nbr_members' => $nbr_members,
            'last_member_login' => $last_member['display_name'],
            'last_member_id' => $last_member['user_id'],
            'last_member_level' => $last_member['level'],
            'last_member_groups' => $last_member['groups']
        );
    }

    public function get_stats()
    {
        return $this->stats;
    }

    public function get_stats_properties($identifier)
    {
        if (isset($this->stats[$identifier]))
        {
            return $this->stats[$identifier];
        }
        return null;
    }

    /**
     * Loads and returns the stats cached data.
     * @return StatsCache The cached data
     */
    public static function load()
    {
        return CacheManager::load(__CLASS__, 'kernel', 'stats');
    }

    /**
     * Invalidates the current stats cached data.
     */
    public static function invalidate()
    {
        CacheManager::invalidate('kernel', 'stats');
    }
}
?>