summaryrefslogtreecommitdiff
path: root/lib/util.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-01-14 02:34:55 -0500
committerEvan Prodromou <evan@controlyourself.ca>2009-01-14 02:34:55 -0500
commit3b19d00ae9ca565ed1d6fa4d7df22efed8c7d6a5 (patch)
treea564f7c0ddefffbfcca17fb840961952dca5f80f /lib/util.php
parent5c69c75f466a867c9ba3225f0a8e36e733255337 (diff)
Remove block form functions from lib/util.php
Diffstat (limited to 'lib/util.php')
-rw-r--r--lib/util.php36
1 files changed, 0 insertions, 36 deletions
diff --git a/lib/util.php b/lib/util.php
index f9ba73d6f..8c6cddbd9 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -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;
-}