. * * @category Form * @package StatusNet * @author Evan Prodromou * @author Shashi Gowda * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } require_once INSTALLDIR.'/lib/form.php'; /** * Form for unsubscribing to a peopletag * * @category Form * @package StatusNet * @author Shashi Gowda * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ * * @see UnunsubscribeForm */ class UnsubscribePeopletagForm extends Form { /** * peopletag for the user to join */ var $peopletag = null; /** * Constructor * * @param HTMLOutputter $out output channel * @param peopletag $peopletag peopletag to unsubscribe to */ function __construct($out=null, $peopletag=null) { parent::__construct($out); $this->peopletag = $peopletag; } /** * ID of the form * * @return string ID of the form */ function id() { return 'peopletag-unsubscribe-' . $this->peopletag->id; } /** * class of the form * * @return string of the form class */ function formClass() { return 'form_peopletag_unsubscribe'; } /** * Action of the form * * @return string URL of the action */ function action() { return common_local_url('unsubscribepeopletag', array('id' => $this->peopletag->id)); } /** * Action elements * * @return void */ function formActions() { // TRANS: Button text for unsubscribing from a list. $this->out->submit('submit', _m('BUTTON','Unsubscribe')); } }