searchsubmenu.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <?php
  2. /**
  3. * StatusNet - the distributed open-source microblogging tool
  4. * Copyright (C) 2011, StatusNet, Inc.
  5. *
  6. * Menu to show searches you're subscribed to
  7. *
  8. * PHP version 5
  9. *
  10. * This program is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License as published by
  12. * the Free Software Foundation, either version 3 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU Affero General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Affero General Public License
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. *
  23. * @category Menu
  24. * @package StatusNet
  25. * @author Evan Prodromou <evan@status.net>
  26. * @copyright 2011 StatusNet, Inc.
  27. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
  28. * @link http://status.net/
  29. */
  30. if (!defined('STATUSNET')) {
  31. // This check helps protect against security problems;
  32. // your code file can't be executed directly from the web.
  33. exit(1);
  34. }
  35. /**
  36. * Class comment
  37. *
  38. * @category General
  39. * @package StatusNet
  40. * @author Evan Prodromou <evan@status.net>
  41. * @copyright 2011 StatusNet, Inc.
  42. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
  43. * @link http://status.net/
  44. */
  45. class SearchSubMenu extends MoreMenu
  46. {
  47. protected $user;
  48. protected $searches;
  49. function __construct($out, $user, $searches)
  50. {
  51. parent::__construct($out);
  52. $this->user = $user;
  53. $this->searches = $searches;
  54. }
  55. function tag()
  56. {
  57. return 'searchsubs';
  58. }
  59. function seeAllItem()
  60. {
  61. return array('searchsubs',
  62. array('nickname' => $this->user->nickname),
  63. _('See all'),
  64. _('See all searches you are following'));
  65. }
  66. function getItems()
  67. {
  68. $items = array();
  69. foreach ($this->searches as $search) {
  70. if (!empty($search)) {
  71. $items[] = array('noticesearch',
  72. array('q' => $search),
  73. sprintf('"%s"', $search),
  74. sprintf(_('Notices including %s'), $search));;
  75. }
  76. }
  77. return $items;
  78. }
  79. function item($actionName, array $args, $label, $description, $id=null, $cls=null)
  80. {
  81. if (empty($id)) {
  82. $id = $this->menuItemID($actionName, $args);
  83. }
  84. if ($actionName == 'noticesearch') {
  85. // Add 'q' as a search param, not part of the url path
  86. $url = common_local_url($actionName, array(), $args);
  87. } else {
  88. $url = common_local_url($actionName, $args);
  89. }
  90. $this->out->menuItem($url,
  91. $label,
  92. $description,
  93. $this->isCurrent($actionName, $args),
  94. $id,
  95. $cls);
  96. }
  97. }