unblockform uses profileactionform

This commit is contained in:
Evan Prodromou 2009-11-15 15:57:59 +01:00
parent d5032fc3a3
commit e3b53565bb
1 changed files with 14 additions and 84 deletions

View File

@ -28,12 +28,10 @@
* @link http://status.net/ * @link http://status.net/
*/ */
if (!defined('STATUSNET') && !defined('LACONICA')) { if (!defined('STATUSNET')) {
exit(1); exit(1);
} }
require_once INSTALLDIR.'/lib/form.php';
/** /**
* Form for unblocking a user * Form for unblocking a user
* *
@ -47,106 +45,38 @@ require_once INSTALLDIR.'/lib/form.php';
* @see BlockForm * @see BlockForm
*/ */
class UnblockForm extends Form class UnblockForm extends ProfileActionForm
{ {
/** /**
* Profile of user to unblock * Action this form provides
*/
var $profile = null;
/**
* Return-to args
*/
var $args = null;
/**
* Constructor
* *
* @param HTMLOutputter $out output channel * @return string Name of the action, lowercased.
* @param Profile $profile profile of user to unblock
* @param array $args return-to args
*/ */
function __construct($out=null, $profile=null, $args=null) function target()
{ {
parent::__construct($out); return 'unblock';
$this->profile = $profile;
$this->args = $args;
} }
/** /**
* ID of the form * Title of the form
* *
* @return int ID of the form * @return string Title of the form, internationalized
*/ */
function id() function title()
{ {
return 'unblock-' . $this->profile->id; return _('Unblock');
} }
/** /**
* class of the form * Description of the form
* *
* @return string class of the form * @return string description of the form, internationalized
*/ */
function formClass() function description()
{ {
return 'form_user_unblock'; return _('Unlock this user');
}
/**
* Action of the form
*
* @return string URL of the action
*/
function action()
{
return common_local_url('unblock');
}
/**
* Legend of the Form
*
* @return void
*/
function formLegend()
{
$this->out->element('legend', null, _('Unblock this user'));
}
/**
* Data elements of the form
*
* @return void
*/
function formData()
{
$this->out->hidden('unblockto-' . $this->profile->id,
$this->profile->id,
'unblockto');
if ($this->args) {
foreach ($this->args as $k => $v) {
$this->out->hidden('returnto-' . $k, $v);
}
}
}
/**
* Action elements
*
* @return void
*/
function formActions()
{
$this->out->submit('submit', _('Unblock'), 'submit', null, _('Unblock this user'));
} }
} }