Remove block form functions from lib/util.php
This commit is contained in:
parent
5c69c75f46
commit
3b19d00ae9
36
lib/util.php
36
lib/util.php
@ -1700,39 +1700,3 @@ function common_compatible_license($from, $to)
|
|||||||
// XXX: better compatibility check needed here!
|
// XXX: better compatibility check needed here!
|
||||||
return ($from == $to);
|
return ($from == $to);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* These are almost identical, so we use a helper function */
|
|
||||||
|
|
||||||
function common_block_form($profile, $args=null)
|
|
||||||
{
|
|
||||||
common_blocking_form('block', _('Block'), $profile, $args);
|
|
||||||
}
|
|
||||||
|
|
||||||
function common_unblock_form($profile, $args=null)
|
|
||||||
{
|
|
||||||
common_blocking_form('unblock', _('Unblock'), $profile, $args);
|
|
||||||
}
|
|
||||||
|
|
||||||
function common_blocking_form($type, $label, $profile, $args=null)
|
|
||||||
{
|
|
||||||
common_element_start('form', array('id' => $type . '-' . $profile->id,
|
|
||||||
'method' => 'post',
|
|
||||||
'class' => $type,
|
|
||||||
'action' => common_local_url($type)));
|
|
||||||
common_hidden('token', common_session_token());
|
|
||||||
common_element('input', array('id' => $type . 'to-' . $profile->id,
|
|
||||||
'name' => $type . 'to',
|
|
||||||
'type' => 'hidden',
|
|
||||||
'value' => $profile->id));
|
|
||||||
common_element('input', array('type' => 'submit',
|
|
||||||
'class' => 'submit',
|
|
||||||
'name' => $type,
|
|
||||||
'value' => $label));
|
|
||||||
if ($args) {
|
|
||||||
foreach ($args as $k => $v) {
|
|
||||||
common_hidden('returnto-' . $k, $v);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
common_element_end('form');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user