6911b499d3
The "LIMIT $offset, $limit" syntax is only supported by MySQL and MariaDB.
65 lines
2.1 KiB
PHP
65 lines
2.1 KiB
PHP
<?php
|
|
// 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/>.
|
|
|
|
/**
|
|
* Base class for sections showing lists of people
|
|
*
|
|
* @category Widget
|
|
* @package GNUsocial
|
|
* @author Evan Prodromou <evan@status.net>
|
|
* @copyright 2009 StatusNet, Inc.
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
|
*/
|
|
|
|
defined('GNUSOCIAL') || die();
|
|
|
|
/**
|
|
* Base class for sections
|
|
*
|
|
* These are the widgets that show interesting data about a person
|
|
* group, or site.
|
|
*
|
|
* @copyright 2009 StatusNet, Inc.
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
|
*/
|
|
class TopPostersSection extends ProfileSection
|
|
{
|
|
public function getProfiles()
|
|
{
|
|
$limit = PROFILES_PER_SECTION;
|
|
|
|
$qry = 'SELECT profile.*, COUNT(*) AS value ' .
|
|
'FROM profile JOIN notice ON profile.id = notice.profile_id ' .
|
|
(common_config('public', 'localonly') ? 'WHERE is_local = 1 ' : '') .
|
|
'GROUP BY profile.id, nickname, fullname, profileurl, homepage, bio, location, profile.created, profile.modified ' .
|
|
'ORDER BY value DESC LIMIT ' . $limit;
|
|
|
|
$profile = Memcached_DataObject::cachedQuery('Profile', $qry, 6 * 3600);
|
|
return $profile;
|
|
}
|
|
|
|
public function title()
|
|
{
|
|
// TRANS: Title for top posters section.
|
|
return _('Top posters');
|
|
}
|
|
|
|
public function divId()
|
|
{
|
|
return 'top_posters';
|
|
}
|
|
}
|