ModPlusPlugin.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <?php
  2. /*
  3. * StatusNet - the distributed open-source microblogging tool
  4. * Copyright (C) 2010, StatusNet, Inc.
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU Affero General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Affero General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Affero General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. if (!defined('GNUSOCIAL')) { exit(1); }
  20. /**
  21. * Some UI extras for now...
  22. *
  23. * @package ModPlusPlugin
  24. * @maintainer Brion Vibber <brion@status.net>
  25. */
  26. class ModPlusPlugin extends Plugin
  27. {
  28. function onPluginVersion(array &$versions)
  29. {
  30. $versions[] = array('name' => 'ModPlus',
  31. 'version' => GNUSOCIAL_VERSION,
  32. 'author' => 'Brion Vibber',
  33. 'homepage' => 'http://status.net/wiki/Plugin:ModPlus',
  34. 'rawdescription' =>
  35. // TRANS: Plugin description.
  36. _m('UI extension for profile moderation actions.'));
  37. return true;
  38. }
  39. /**
  40. * Load JS at runtime.
  41. *
  42. * @param Action $action
  43. * @return boolean hook result
  44. */
  45. function onEndShowScripts(Action $action)
  46. {
  47. $action->script($this->path('js/modplus.js'));
  48. return true;
  49. }
  50. public function onEndShowStylesheets(Action $action) {
  51. $action->cssLink($this->path('css/modplus.css'));
  52. return true;
  53. }
  54. /**
  55. * Add per-profile info popup menu for author on notice lists.
  56. *
  57. * @param NoticeListItem $item
  58. * @return boolean hook value
  59. */
  60. function onEndShowNoticeItemAuthor(Profile $profile, HTMLOutputter $out)
  61. {
  62. $this->showProfileOptions($out, $profile);
  63. return true;
  64. }
  65. /**
  66. * Add per-profile info popup menu on profile lists.
  67. *
  68. * @param ProfileListItem $item
  69. */
  70. function onStartProfileListItemProfile($item)
  71. {
  72. $this->showProfileOptions($item->out, $item->profile->getProfile());
  73. return true;
  74. }
  75. /**
  76. * Build common remote-profile options structure.
  77. * Currently only adds output for remote profiles, nothing for local users.
  78. *
  79. * @param HTMLOutputter $out
  80. * @param Profile $profile
  81. */
  82. protected function showProfileOptions(HTMLOutputter $out, Profile $profile)
  83. {
  84. if (!$profile->isGroup() && !$profile->isLocal()) {
  85. $target = common_local_url('userbyid', array('id' => $profile->getID()));
  86. // TRANS: Label for access to remote profile options.
  87. $label = _m('Remote profile options...');
  88. $out->elementStart('div', 'remote-profile-options');
  89. $out->element('a', array('href' => $target), $label);
  90. $out->elementEnd('div');
  91. }
  92. }
  93. }