2009-01-14 06:04:49 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2009-08-25 23:12:20 +01:00
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
2009-01-14 06:04:49 +00:00
|
|
|
*
|
|
|
|
* Form for disfavoring a notice
|
|
|
|
*
|
|
|
|
* 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
|
2013-10-14 23:20:36 +01:00
|
|
|
* @package GNUsocial
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Sarven Capadisli <csarven@status.net>
|
2013-09-23 10:34:15 +01:00
|
|
|
* @author Mikael Nordfeldth <mmn@hethane.se>
|
2009-08-25 23:12:20 +01:00
|
|
|
* @copyright 2009 StatusNet, Inc.
|
2009-01-14 06:04:49 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2013-09-23 10:34:15 +01:00
|
|
|
* @link http://www.gnu.org/software/social/
|
2009-01-14 06:04:49 +00:00
|
|
|
*/
|
|
|
|
|
2013-09-23 10:34:15 +01:00
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
2009-01-14 06:04:49 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Form for disfavoring a notice
|
|
|
|
*
|
|
|
|
* @category Form
|
2013-10-14 23:20:36 +01:00
|
|
|
* @package GNUsocial
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Sarven Capadisli <csarven@status.net>
|
2013-09-23 10:34:15 +01:00
|
|
|
* @author Mikael Nordfeldth <mmn@hethane.se>
|
2009-01-14 06:04:49 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2013-09-23 10:34:15 +01:00
|
|
|
* @link http://www.gnu.org/software/social/
|
2009-01-14 06:04:49 +00:00
|
|
|
*
|
|
|
|
* @see FavorForm
|
|
|
|
*/
|
|
|
|
class DisfavorForm extends Form
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Notice to disfavor
|
|
|
|
*/
|
|
|
|
var $notice = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* @param HTMLOutputter $out output channel
|
|
|
|
* @param Notice $notice notice to disfavor
|
|
|
|
*/
|
|
|
|
function __construct($out=null, $notice=null)
|
|
|
|
{
|
|
|
|
parent::__construct($out);
|
|
|
|
|
|
|
|
$this->notice = $notice;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ID of the form
|
|
|
|
*
|
|
|
|
* @return int ID of the form
|
|
|
|
*/
|
|
|
|
function id()
|
|
|
|
{
|
|
|
|
return 'disfavor-' . $this->notice->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Action of the form
|
|
|
|
*
|
|
|
|
* @return string URL of the action
|
|
|
|
*/
|
|
|
|
function action()
|
|
|
|
{
|
2015-03-10 14:39:35 +00:00
|
|
|
return common_local_url('activityverb',
|
|
|
|
array('id' => $this->notice->getID(),
|
|
|
|
'verb' => ActivityUtils::resolveUri(ActivityVerb::UNFAVORITE, true)));
|
2009-01-14 06:04:49 +00:00
|
|
|
}
|
|
|
|
|
2009-01-18 21:34:57 +00:00
|
|
|
/**
|
|
|
|
* Legend of the Form
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function formLegend()
|
|
|
|
{
|
2011-01-30 18:03:55 +00:00
|
|
|
// TRANS: Form legend for removing the favourite status for a favourite notice.
|
2009-01-18 21:34:57 +00:00
|
|
|
$this->out->element('legend', null, _('Disfavor this notice'));
|
|
|
|
}
|
|
|
|
|
2009-01-14 06:04:49 +00:00
|
|
|
/**
|
|
|
|
* Data elements
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
|
|
|
function formData()
|
|
|
|
{
|
2010-09-29 22:07:46 +01:00
|
|
|
if (Event::handle('StartDisFavorNoticeForm', array($this, $this->notice))) {
|
|
|
|
$this->out->hidden('notice-n'.$this->notice->id,
|
|
|
|
$this->notice->id,
|
|
|
|
'notice');
|
|
|
|
Event::handle('EndDisFavorNoticeForm', array($this, $this->notice));
|
|
|
|
}
|
2009-01-14 06:04:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Action elements
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function formActions()
|
|
|
|
{
|
|
|
|
$this->out->submit('disfavor-submit-' . $this->notice->id,
|
2011-01-30 18:03:55 +00:00
|
|
|
// TRANS: Button text for removing the favourite status for a favourite notice.
|
|
|
|
_m('BUTTON','Disfavor favorite'),
|
|
|
|
'submit',
|
|
|
|
null,
|
2011-08-18 14:11:10 +01:00
|
|
|
// TRANS: Button title for removing the favourite status for a favourite notice.
|
|
|
|
_('Remove this notice from your list of favorite notices.'));
|
2009-01-14 06:04:49 +00:00
|
|
|
}
|
2011-01-30 18:03:55 +00:00
|
|
|
|
2009-01-15 20:54:03 +00:00
|
|
|
/**
|
|
|
|
* Class of the form.
|
|
|
|
*
|
|
|
|
* @return string the form's class
|
|
|
|
*/
|
|
|
|
function formClass()
|
|
|
|
{
|
2011-03-08 21:58:28 +00:00
|
|
|
return 'form_disfavor ajax';
|
2009-01-15 20:54:03 +00:00
|
|
|
}
|
2009-01-18 03:12:39 +00:00
|
|
|
}
|