2009-01-14 06:38:00 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2009-08-25 23:12:20 +01:00
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
2009-01-14 06:38:00 +00:00
|
|
|
*
|
|
|
|
* Form for unsubscribing from a user
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @category Form
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Sarven Capadisli <csarven@status.net>
|
2009-08-25 23:12:20 +01:00
|
|
|
* @copyright 2009 StatusNet, Inc.
|
2009-01-14 06:38:00 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-01-14 06:38:00 +00:00
|
|
|
*/
|
|
|
|
|
2009-08-26 15:41:36 +01:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) {
|
2009-01-14 06:38:00 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2019-08-23 13:36:02 +01:00
|
|
|
require_once INSTALLDIR . '/lib/util/form.php';
|
2009-01-14 06:38:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Form for unsubscribing from a user
|
|
|
|
*
|
|
|
|
* @category Form
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Sarven Capadisli <csarven@status.net>
|
2009-01-14 06:38:00 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-01-14 06:38:00 +00:00
|
|
|
*
|
|
|
|
* @see SubscribeForm
|
|
|
|
*/
|
|
|
|
class UnsubscribeForm extends Form
|
|
|
|
{
|
|
|
|
/**
|
2009-01-14 07:26:42 +00:00
|
|
|
* Profile of user to unsubscribe from
|
2009-01-14 06:38:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
var $profile = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* @param HTMLOutputter $out output channel
|
2009-01-14 07:26:42 +00:00
|
|
|
* @param Profile $profile profile of user to unsub from
|
2009-01-14 06:38:00 +00:00
|
|
|
*/
|
|
|
|
function __construct($out=null, $profile=null)
|
|
|
|
{
|
|
|
|
parent::__construct($out);
|
|
|
|
|
|
|
|
$this->profile = $profile;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ID of the form
|
|
|
|
*
|
|
|
|
* @return int ID of the form
|
|
|
|
*/
|
|
|
|
function id()
|
|
|
|
{
|
|
|
|
return 'unsubscribe-' . $this->profile->id;
|
|
|
|
}
|
|
|
|
|
2009-01-19 21:56:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* class of the form
|
|
|
|
*
|
|
|
|
* @return string of the form class
|
|
|
|
*/
|
|
|
|
function formClass()
|
|
|
|
{
|
2011-03-08 21:58:28 +00:00
|
|
|
return 'form_user_unsubscribe ajax';
|
2009-01-19 21:56:55 +00:00
|
|
|
}
|
|
|
|
|
2009-01-14 06:38:00 +00:00
|
|
|
/**
|
|
|
|
* Action of the form
|
|
|
|
*
|
|
|
|
* @return string URL of the action
|
|
|
|
*/
|
|
|
|
function action()
|
|
|
|
{
|
|
|
|
return common_local_url('unsubscribe');
|
|
|
|
}
|
|
|
|
|
2009-01-21 07:14:43 +00:00
|
|
|
/**
|
|
|
|
* Legend of the Form
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function formLegend()
|
|
|
|
{
|
2011-03-18 17:03:41 +00:00
|
|
|
// TRANS: Form legend on unsubscribe form.
|
2009-01-21 07:14:43 +00:00
|
|
|
$this->out->element('legend', null, _('Unsubscribe from this user'));
|
|
|
|
}
|
|
|
|
|
2009-01-14 06:38:00 +00:00
|
|
|
/**
|
|
|
|
* Data elements of the form
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function formData()
|
|
|
|
{
|
|
|
|
$this->out->hidden('unsubscribeto-' . $this->profile->id,
|
|
|
|
$this->profile->id,
|
|
|
|
'unsubscribeto');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Action elements
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function formActions()
|
|
|
|
{
|
2011-03-18 17:03:41 +00:00
|
|
|
// TRANS: Button text on unsubscribe form.
|
|
|
|
$this->out->submit('submit', _m('BUTTON','Unsubscribe'), 'submit', null,
|
|
|
|
// TRANS: Button title on unsubscribe form.
|
2011-08-18 14:11:10 +01:00
|
|
|
_('Unsubscribe from this user.'));
|
2009-01-14 06:38:00 +00:00
|
|
|
}
|
2009-01-19 21:56:55 +00:00
|
|
|
}
|