3 * StatusNet, the distributed open-source microblogging tool
5 * Form for subscribing to a search
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.
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.
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/>.
22 * @category SearchSubPlugin
24 * @author Brion Vibber <brion@status.net>
25 * @author Evan Prodromou <evan@status.net>
26 * @author Sarven Capadisli <csarven@status.net>
27 * @copyright 2009-2011 StatusNet, Inc.
28 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
29 * @link http://status.net/
32 if (!defined('STATUSNET') && !defined('LACONICA')) {
37 * Form for subscribing to a user
39 * @category SearchSubPlugin
41 * @author Brion Vibber <brion@status.net>
42 * @author Evan Prodromou <evan@status.net>
43 * @author Sarven Capadisli <csarven@status.net>
44 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
45 * @link http://status.net/
47 * @see UnsubscribeForm
49 class SearchSubForm extends Form
52 * Name of search to subscribe to
59 * @param HTMLOutputter $out output channel
60 * @param string $search name of search to subscribe to
62 function __construct($out=null, $search=null)
64 parent::__construct($out);
66 $this->search = $search;
72 * @return int ID of the form
76 return 'search-subscribe-' . $this->search;
83 * @return string of the form class
87 // class to match existing styles...
88 return 'form_user_subscribe ajax';
95 * @return string URL of the action
99 return common_local_url('searchsub', array('search' => $this->search));
107 function formLegend()
109 // TRANS: Form legend.
110 $this->out->element('legend', null, _m('Subscribe to this search'));
114 * Data elements of the form
120 $this->out->hidden('subscribeto-' . $this->search,
130 function formActions()
132 $this->out->submit('submit',
133 // TRANS: Button text for subscribing to a search.
134 _m('BUTTON','Subscribe'),
137 // TRANS: Button title for subscribing to a search.
138 _m('Subscribe to this search.'));