Added @title to user_action inputs and anchor and form legends
This commit is contained in:
parent
27b627c094
commit
92e2f3babc
@ -331,8 +331,9 @@ class ShowstreamAction extends Action
|
||||
$user = User::staticGet('id', $this->profile->id);
|
||||
if ($cur && $cur->id != $user->id && $cur->mutuallySubscribed($user)) {
|
||||
$this->elementStart('li', array('id' => 'user_send-a-message'));
|
||||
$this->element('a', array('href' => common_local_url('newmessage', array('to' => $user->id))),
|
||||
_('Send a message'));
|
||||
$this->element('a', array('href' => common_local_url('newmessage', array('to' => $user->id)),
|
||||
'title' => _('Send a direct message to this user')),
|
||||
_('Message'));
|
||||
$this->elementEnd('li');
|
||||
|
||||
if ($user->email && $user->emailnotifynudge) {
|
||||
|
@ -112,6 +112,18 @@ class BlockForm extends Form
|
||||
return common_local_url('block');
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Legend of the Form
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function formLegend()
|
||||
{
|
||||
$this->out->element('legend', null, _('Block this user'));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Data elements of the form
|
||||
*
|
||||
@ -138,6 +150,6 @@ class BlockForm extends Form
|
||||
|
||||
function formActions()
|
||||
{
|
||||
$this->out->submit('submit', _('Block'));
|
||||
$this->out->submit('submit', _('block'), 'submit', null, _('Block this user'));
|
||||
}
|
||||
}
|
||||
|
@ -105,6 +105,18 @@ class NudgeForm extends Form
|
||||
array('nickname' => $this->profile->nickname));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Legend of the Form
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function formLegend()
|
||||
{
|
||||
$this->out->element('legend', null, _('Nudge this user'));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Action elements
|
||||
*
|
||||
@ -113,6 +125,6 @@ class NudgeForm extends Form
|
||||
|
||||
function formActions()
|
||||
{
|
||||
$this->out->submit('submit', _('Send a nudge'));
|
||||
$this->out->submit('submit', _('Nudge'), 'submit', null, _('Send a nudge to this user'));
|
||||
}
|
||||
}
|
||||
|
@ -104,6 +104,17 @@ class SubscribeForm extends Form
|
||||
return common_local_url('subscribe');
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Legend of the Form
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function formLegend()
|
||||
{
|
||||
$this->out->element('legend', null, _('Subscribe to this user'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Data elements of the form
|
||||
*
|
||||
@ -125,6 +136,6 @@ class SubscribeForm extends Form
|
||||
|
||||
function formActions()
|
||||
{
|
||||
$this->out->submit('submit', _('Subscribe'));
|
||||
$this->out->submit('submit', _('Subscribe'), 'submit', null, _('Subscribe to this user'));
|
||||
}
|
||||
}
|
||||
|
@ -110,6 +110,17 @@ class UnblockForm extends Form
|
||||
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
|
||||
*
|
||||
@ -136,6 +147,6 @@ class UnblockForm extends Form
|
||||
|
||||
function formActions()
|
||||
{
|
||||
$this->out->submit('submit', _('Unblock'));
|
||||
$this->out->submit('submit', _('Unblock'), 'submit', null, _('Unblock this user'));
|
||||
}
|
||||
}
|
||||
|
@ -103,6 +103,16 @@ class UnsubscribeForm extends Form
|
||||
return common_local_url('unsubscribe');
|
||||
}
|
||||
|
||||
/**
|
||||
* Legend of the Form
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function formLegend()
|
||||
{
|
||||
$this->out->element('legend', null, _('Unsubscribe from this user'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Data elements of the form
|
||||
*
|
||||
@ -124,6 +134,6 @@ class UnsubscribeForm extends Form
|
||||
|
||||
function formActions()
|
||||
{
|
||||
$this->out->submit('submit', _('Unsubscribe'));
|
||||
$this->out->submit('submit', _('Unsubscribe'), 'submit', null, _('Unsubscribe from this user'));
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user