featureduserssection.php 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. * Section for featured users
  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. * Section for featured users
  28. *
  29. * @copyright 2009 StatusNet, Inc.
  30. * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
  31. */
  32. class FeaturedUsersSection extends ProfileSection
  33. {
  34. public function show()
  35. {
  36. $featured_nicks = common_config('nickname', 'featured');
  37. if (empty($featured_nicks)) {
  38. return;
  39. }
  40. parent::show();
  41. }
  42. public function getProfiles()
  43. {
  44. $featured_nicks = common_config('nickname', 'featured');
  45. if (!$featured_nicks) {
  46. return null;
  47. }
  48. $quoted = array();
  49. foreach ($featured_nicks as $nick) {
  50. $quoted[] = "'$nick'";
  51. }
  52. $table = common_database_tablename('user');
  53. $limit = PROFILES_PER_SECTION + 1;
  54. $qry = 'SELECT profile.* ' .
  55. 'FROM profile INNER JOIN ' . $table . ' ON profile.id = ' . $table . '.id ' .
  56. 'WHERE ' . $table . '.nickname IN (' . implode(',', $quoted) . ') ' .
  57. 'ORDER BY profile.created DESC LIMIT ' . $limit;
  58. $profile = Memcached_DataObject::cachedQuery('Profile', $qry, 6 * 3600);
  59. return $profile;
  60. }
  61. public function title()
  62. {
  63. // TRANS: Title for featured users section.
  64. return _('Featured users');
  65. }
  66. public function divId()
  67. {
  68. return 'featured_users';
  69. }
  70. public function moreUrl()
  71. {
  72. return common_local_url('featured');
  73. }
  74. }