Remove block form functions from lib/util.php

This commit is contained in:
Evan Prodromou 2009-01-14 02:34:55 -05:00
parent 5c69c75f46
commit 3b19d00ae9
1 changed files with 0 additions and 36 deletions

View File

@ -1700,39 +1700,3 @@ function common_compatible_license($from, $to)
// XXX: better compatibility check needed here!
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;
}