Copy of (un)subscribe forms in util.php
Will remove the copies in showstream.php once everything is okay. darcs-hash:20081120202448-eefa4-e2d294d906b0ff90f9977606d18ea6655a944452.gz
This commit is contained in:
parent
7c2c1855ba
commit
a8b7d0a7b5
28
lib/util.php
28
lib/util.php
@ -1896,12 +1896,32 @@ function common_nudge_form($profile) {
|
|||||||
common_element_end('form');
|
common_element_end('form');
|
||||||
}
|
}
|
||||||
|
|
||||||
function common_subscribe_response() {
|
function common_subscribe_form() {
|
||||||
common_element('p', array('id' => 'subscribe_response'), _('Subscribed'));
|
common_element_start('form', array('id' => 'subscribe', 'method' => 'post', 'class' => 'subscribe',
|
||||||
|
'action' => common_local_url('subscribe')));
|
||||||
|
common_hidden('token', common_session_token());
|
||||||
|
common_element('input', array('id' => 'subscribeto',
|
||||||
|
'name' => 'subscribeto',
|
||||||
|
'type' => 'hidden',
|
||||||
|
'value' => $profile->nickname));
|
||||||
|
common_element('input', array('type' => 'submit',
|
||||||
|
'class' => 'submit',
|
||||||
|
'value' => _('Subscribe')));
|
||||||
|
common_element_end('form');
|
||||||
}
|
}
|
||||||
|
|
||||||
function common_unsubscribe_response() {
|
function common_unsubscribe_form() {
|
||||||
common_element('p', array('id' => 'unsubscribe_response'), _('Unsubscribed'));
|
common_element_start('form', array('id' => 'unsubscribe', 'method' => 'post', 'class' => 'unsubscribe',
|
||||||
|
'action' => common_local_url('unsubscribe')));
|
||||||
|
common_hidden('token', common_session_token());
|
||||||
|
common_element('input', array('id' => 'unsubscribeto',
|
||||||
|
'name' => 'unsubscribeto',
|
||||||
|
'type' => 'hidden',
|
||||||
|
'value' => $profile->nickname));
|
||||||
|
common_element('input', array('type' => 'submit',
|
||||||
|
'class' => 'submit',
|
||||||
|
'value' => _('Unsubscribe')));
|
||||||
|
common_element_end('form');
|
||||||
}
|
}
|
||||||
|
|
||||||
function common_nudge_response() {
|
function common_nudge_response() {
|
||||||
|
Loading…
Reference in New Issue
Block a user