2009-01-23 02:07:03 +00:00
|
|
|
<?php
|
2019-09-11 08:12:49 +01:00
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// GNU social is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2009-01-23 02:07:03 +00:00
|
|
|
/**
|
|
|
|
* Groups with the most members section
|
|
|
|
*
|
|
|
|
* @category Widget
|
2019-09-11 08:12:49 +01:00
|
|
|
* @package GNUsocial
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2009-08-25 23:12:20 +01:00
|
|
|
* @copyright 2009 StatusNet, Inc.
|
2019-09-11 08:12:49 +01:00
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2009-01-23 02:07:03 +00:00
|
|
|
*/
|
|
|
|
|
2019-09-11 08:12:49 +01:00
|
|
|
defined('GNUSOCIAL') || die();
|
2009-01-23 02:07:03 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Groups with the most members section
|
|
|
|
*
|
2019-09-11 08:12:49 +01:00
|
|
|
* @copyright 2019 Free Software Foundation, Inc http://www.fsf.org
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2009-01-23 02:07:03 +00:00
|
|
|
*/
|
|
|
|
class GroupsByMembersSection extends GroupSection
|
|
|
|
{
|
2019-09-11 08:12:49 +01:00
|
|
|
public function getGroups()
|
2009-01-23 02:07:03 +00:00
|
|
|
{
|
|
|
|
$limit = GROUPS_PER_SECTION;
|
|
|
|
|
2020-08-10 17:29:04 +01:00
|
|
|
$qry = <<<END
|
|
|
|
SELECT *
|
|
|
|
FROM user_group INNER JOIN (
|
|
|
|
SELECT group_id AS id, COUNT(group_id) AS value
|
|
|
|
FROM group_member
|
|
|
|
GROUP BY group_id
|
|
|
|
) AS t1 USING (id)
|
|
|
|
ORDER BY value DESC LIMIT {$limit};
|
|
|
|
END;
|
2009-01-23 02:07:03 +00:00
|
|
|
|
2019-09-11 08:12:49 +01:00
|
|
|
$group = Memcached_DataObject::cachedQuery('User_group', $qry, 3600);
|
2009-01-23 02:07:03 +00:00
|
|
|
return $group;
|
|
|
|
}
|
|
|
|
|
2019-09-11 08:12:49 +01:00
|
|
|
public function title()
|
2009-01-23 02:07:03 +00:00
|
|
|
{
|
2010-10-21 02:10:46 +01:00
|
|
|
// TRANS: Title for groups with the most members section.
|
2011-04-14 23:16:10 +01:00
|
|
|
return _('Popular groups');
|
2009-01-23 02:07:03 +00:00
|
|
|
}
|
|
|
|
|
2019-09-11 08:12:49 +01:00
|
|
|
public function divId()
|
2009-01-23 02:07:03 +00:00
|
|
|
{
|
|
|
|
return 'top_groups_by_member';
|
|
|
|
}
|
|
|
|
}
|