TagCloudPlugin.php 3.1 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. * GNU social plugin for "tag clouds" in the UI
  18. *
  19. * @category UI
  20. * @package GNUsocial
  21. * @author Mikael Nordfeldth <mmn@hethane.se>
  22. * @copyright 2016 Free Software Foundation, Inc http://www.fsf.org
  23. * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
  24. */
  25. defined('GNUSOCIAL') || die();
  26. class TagCloudPlugin extends Plugin {
  27. const PLUGIN_VERSION = '2.0.0';
  28. public function onRouterInitialized(URLMapper $m)
  29. {
  30. $m->connect('tags/', ['action' => 'publictagcloud']);
  31. $m->connect('tag/', ['action' => 'publictagcloud']);
  32. $m->connect('tags', ['action' => 'publictagcloud']);
  33. $m->connect('tag', ['action' => 'publictagcloud']);
  34. }
  35. public function onEndPublicGroupNav(Menu $menu)
  36. {
  37. // TRANS: Menu item in search group navigation panel.
  38. $menu->out->menuItem(common_local_url('publictagcloud'), _m('MENU','Recent tags'),
  39. // TRANS: Menu item title in search group navigation panel.
  40. _('Recent tags'), $menu->actionName === 'publictagcloud', 'nav_recent-tags');
  41. }
  42. public function onEndShowSections(Action $action)
  43. {
  44. $cloud = null;
  45. switch (true) {
  46. case $action instanceof AllAction:
  47. $cloud = new InboxTagCloudSection($action, $action->getTarget());
  48. break;
  49. case $action instanceof AttachmentAction:
  50. $cloud = new AttachmentTagCloudSection($action);
  51. break;
  52. case $action instanceof PublicAction:
  53. $cloud = new PublicTagCloudSection($action);
  54. break;
  55. case $action instanceof ShowstreamAction:
  56. $cloud = new PersonalTagCloudSection($action, $action->getTarget());
  57. break;
  58. case $action instanceof GroupAction:
  59. $cloud = new GroupTagCloudSection($action, $action->getGroup());
  60. }
  61. if (!is_null($cloud)) {
  62. $cloud->show();
  63. }
  64. }
  65. public function onPluginVersion(array &$versions): bool
  66. {
  67. $versions[] = [
  68. 'name' => 'TagCloud',
  69. 'version' => self::PLUGIN_VERSION,
  70. 'author' => 'Mikael Nordfeldth',
  71. 'homepage' => GNUSOCIAL_ENGINE_URL,
  72. 'description' =>
  73. // TRANS: Module description.
  74. _m('Adds tag clouds to stream pages')
  75. ];
  76. return true;
  77. }
  78. }