groupmembers.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <?php
  2. /**
  3. * StatusNet, the distributed open-source microblogging tool
  4. *
  5. * List of group members
  6. *
  7. * PHP version 5
  8. *
  9. * LICENCE: This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License as published by
  11. * the Free Software Foundation, either version 3 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. *
  22. * @category Group
  23. * @package StatusNet
  24. * @author Evan Prodromou <evan@status.net>
  25. * @copyright 2008-2009 StatusNet, Inc.
  26. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  27. * @link http://status.net/
  28. */
  29. if (!defined('GNUSOCIAL')) {
  30. exit(1);
  31. }
  32. /**
  33. * List of group members
  34. *
  35. * @category Group
  36. * @package StatusNet
  37. * @author Evan Prodromou <evan@status.net>
  38. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  39. * @link http://status.net/
  40. */
  41. class GroupmembersAction extends GroupAction
  42. {
  43. public $page = null;
  44. public function isReadOnly($args)
  45. {
  46. return true;
  47. }
  48. public function title()
  49. {
  50. if ($this->page == 1) {
  51. // TRANS: Title of the page showing group members.
  52. // TRANS: %s is the name of the group.
  53. return sprintf(
  54. _('%s group members'),
  55. $this->group->nickname
  56. );
  57. } else {
  58. // TRANS: Title of the page showing group members.
  59. // TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
  60. return sprintf(
  61. _('%1$s group members, page %2$d'),
  62. $this->group->nickname,
  63. $this->page
  64. );
  65. }
  66. }
  67. public function showPageNotice()
  68. {
  69. $this->element(
  70. 'p',
  71. 'instructions',
  72. // TRANS: Page notice for group members page.
  73. _('A list of the users in this group.')
  74. );
  75. }
  76. public function showContent()
  77. {
  78. $offset = ($this->page - 1) * PROFILES_PER_PAGE;
  79. $limit = PROFILES_PER_PAGE + 1;
  80. $cnt = 0;
  81. $members = $this->group->getMembers($offset, $limit);
  82. if ($members) {
  83. $member_list = new GroupMemberList($members, $this->group, $this);
  84. $cnt = $member_list->show();
  85. }
  86. $this->pagination(
  87. $this->page > 1,
  88. $cnt > PROFILES_PER_PAGE,
  89. $this->page,
  90. 'groupmembers',
  91. ['nickname' => $this->group->nickname]
  92. );
  93. }
  94. protected function handle()
  95. {
  96. parent::handle();
  97. $this->showPage();
  98. }
  99. }