]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Remove block form functions from lib/util.php
authorEvan Prodromou <evan@controlyourself.ca>
Wed, 14 Jan 2009 07:34:55 +0000 (02:34 -0500)
committerEvan Prodromou <evan@controlyourself.ca>
Wed, 14 Jan 2009 07:34:55 +0000 (02:34 -0500)
lib/util.php

index f9ba73d6f0b8f59937587c5c9425a2cc360a6da7..8c6cddbd9eda3e043c147ed5ed23a422bc65c899 100644 (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;
-}