summaryrefslogtreecommitdiff
path: root/lib/util.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/util.php')
-rw-r--r--lib/util.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/util.php b/lib/util.php
index cd0a6260b..ece002812 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -377,6 +377,20 @@ function common_profile_url($nickname) {
return common_local_url('showstream', array('nickname' => $nickname));
}
+function common_notice_form() {
+ common_element_start('form', array('id' => 'newnotice', 'method' => 'POST',
+ 'action' => common_local_url('newnotice')));
+ common_element_start('p');
+ common_element('label', array('for' => 'content'), _t('What\'s up?'));
+ common_element('textarea', array('rows' => 3, 'cols' => 40,
+ 'name' => 'content',
+ 'id' => 'content',
+ 'class' => 'width75'),
+ ' ');
+ common_submit('submit', _t('Send'));
+ common_element_end('form');
+ }
+
// XXX: set up gettext
function _t($str) {