Example #1
0
 public static function getStatisticsData(&$params)
 {
     $stats = modCommunityStatistics::getInstance();
     $stats_arr = array();
     if ($params->get('show_members', 1)) {
         $members = $stats->getMemberCount();
         $params->def('t_members', $members);
         array_push($stats_arr, 't_members');
     }
     if ($params->get('show_groups', 1)) {
         $params->def('t_groups', $stats->getGroupCount());
         array_push($stats_arr, 't_groups');
     }
     if ($params->get('show_discussions', 1)) {
         $params->def('t_discussions', $stats->geDiscussionCount());
         array_push($stats_arr, 't_discussions');
     }
     if ($params->get('show_albums', 1)) {
         $params->def('t_albums', $stats->getAlbumsCount());
         array_push($stats_arr, 't_albums');
     }
     if ($params->get('show_photos', 1)) {
         $params->def('t_photos', $stats->getPhotosCount());
         array_push($stats_arr, 't_photos');
     }
     if ($params->get('show_videos', 1)) {
         $params->def('t_videos', $stats->getVideosCount());
         array_push($stats_arr, 't_videos');
     }
     if ($params->get('show_announcements', 1)) {
         $params->def('t_bulletins', $stats->getBulletinsCount());
         array_push($stats_arr, 't_bulletins');
     }
     if ($params->get('show_activities', 1)) {
         $params->def('t_activities', $stats->getActivitiesCount());
         array_push($stats_arr, 't_activities');
     }
     if ($params->get('walls', 1)) {
         $params->def('t_walls', $stats->getWallsCount());
         array_push($stats_arr, 't_walls');
     }
     if ($params->get('show_upcoming_events', 1)) {
         $params->def('t_events', $stats->getEventsCount());
         array_push($stats_arr, 't_events');
     }
     if ($params->get('show_males', 1) || $params->get('show_females', 1) || $params->get('show_unspecified', 1)) {
         $gender_fieldcode = $params->get('jsgender', 'FIELD_GENDER');
         $gender_male = strtolower($params->get('genders_male_display', 'Male'));
         $gender_female = strtolower($params->get('genders_female_display', 'Female'));
         $genders = $stats->getGendersCount($gender_fieldcode, $gender_male, $gender_female);
         if (!empty($genders)) {
             if (empty($members)) {
                 $members = $stats->getMemberCount();
             }
             $unspecified = $members - ($genders["male"] + $genders["female"]);
             $params->def('t_gender_males', $genders["male"]);
             $params->def('t_gender_females', $genders["female"]);
             $params->def('t_gender_unspecified', $unspecified);
             array_push($stats_arr, 'genders');
         }
     }
     return $stats_arr;
 }
<?php

/**
* @copyright (C) 2015 iJoomla, Inc. - All rights reserved.
* @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html)
* @author iJoomla.com <*****@*****.**>
* @url https://www.jomsocial.com/license-agreement
* The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0
* More info at https://www.jomsocial.com/license-agreement
*/
defined('_JEXEC') or die('Unauthorized Access');
// Check if JomSocial core file exists
$corefile = JPATH_ROOT . '/components/com_community/libraries/core.php';
jimport('joomla.filesystem.file');
if (!JFile::exists($corefile)) {
    return;
}
// Include JomSocial's Core file, helpers, settings...
require_once $corefile;
require_once dirname(__FILE__) . '/helper.php';
// Add proper stylesheet
JFactory::getLanguage()->isRTL() ? CTemplate::addStylesheet('style.rtl') : CTemplate::addStylesheet('style');
$document = JFactory::getDocument();
$document->addStyleSheet(JURI::root(true) . '/modules/mod_community_statistics/style.css');
$stats = modCommunityStatistics::getStatisticsData($params);
$user = CFactory::getUser();
require JModuleHelper::getLayoutPath('mod_community_statistics', $params->get('layout', 'default'));