Directory.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. declare(strict_types = 1);
  3. // {{{ License
  4. // This file is part of GNU social - https://www.gnu.org/software/social
  5. //
  6. // GNU social 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. // GNU social 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 GNU social. If not, see <http://www.gnu.org/licenses/>.
  18. // }}}
  19. namespace Plugin\Directory;
  20. use App\Core\Event;
  21. use App\Core\Modules\Plugin;
  22. use App\Core\Router\RouteLoader;
  23. use App\Core\Router\Router;
  24. class Directory extends Plugin
  25. {
  26. /**
  27. * Map URLs to Controllers
  28. */
  29. public function onAddRoute(RouteLoader $r)
  30. {
  31. $r->connect('directory_people', '/directory/people', [Controller\Directory::class, 'people']);
  32. $r->connect('directory_groups', '/directory/groups', [Controller\Directory::class, 'groups']);
  33. return Event::next;
  34. }
  35. /**
  36. * Add Links to menu
  37. *
  38. * @param array $res out menu items
  39. *
  40. * @return bool hook value; true means continue processing, false means stop
  41. */
  42. public function onAddMainNavigationItem(array $vars, array &$res): bool
  43. {
  44. $res[] = ['title' => 'People', 'path' => Router::url($path_id = 'directory_people', []), 'path_id' => $path_id];
  45. $res[] = ['title' => 'Groups', 'path' => Router::url($path_id = 'directory_groups', []), 'path_id' => $path_id];
  46. return Event::next;
  47. }
  48. }