topposterssection.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. // This file is part of GNU social - https://www.gnu.org/software/social
  3. //
  4. // GNU social is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU Affero General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // GNU social is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU Affero General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU Affero General Public License
  15. // along with GNU social. If not, see <http://www.gnu.org/licenses/>.
  16. /**
  17. * Base class for sections showing lists of people
  18. *
  19. * @category Widget
  20. * @package GNUsocial
  21. * @author Evan Prodromou <evan@status.net>
  22. * @copyright 2009 StatusNet, Inc.
  23. * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
  24. */
  25. defined('GNUSOCIAL') || die();
  26. /**
  27. * Base class for sections
  28. *
  29. * These are the widgets that show interesting data about a person
  30. * group, or site.
  31. *
  32. * @copyright 2009 StatusNet, Inc.
  33. * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
  34. */
  35. class TopPostersSection extends ProfileSection
  36. {
  37. public function getProfiles()
  38. {
  39. $limit = PROFILES_PER_SECTION;
  40. $qry = 'SELECT profile.*, COUNT(*) AS value ' .
  41. 'FROM profile JOIN notice ON profile.id = notice.profile_id ' .
  42. (common_config('public', 'localonly') ? 'WHERE is_local = 1 ' : '') .
  43. 'GROUP BY profile.id, nickname, fullname, profileurl, homepage, bio, location, profile.created, profile.modified ' .
  44. 'ORDER BY value DESC LIMIT ' . $limit;
  45. $profile = Memcached_DataObject::cachedQuery('Profile', $qry, 6 * 3600);
  46. return $profile;
  47. }
  48. public function title()
  49. {
  50. // TRANS: Title for top posters section.
  51. return _('Top posters');
  52. }
  53. public function divId()
  54. {
  55. return 'top_posters';
  56. }
  57. }