diff options
author | csarven <csarven@controlyourself.ca> | 2008-11-15 21:27:35 -0500 |
---|---|---|
committer | csarven <csarven@controlyourself.ca> | 2008-11-15 21:27:35 -0500 |
commit | f3572aec7f159231ca2b63be1d2c5466a3ff7208 (patch) | |
tree | be568695ec260c8af1e0499f2823dbcb294bb888 /lib/util.php | |
parent | 44602ae0ffb1dc3468d43381249f9a1618d88d1c (diff) |
Nudge feature
darcs-hash:20081116022735-eefa4-366f6deb85942f859ebd532e477b57737bcafbf8.gz
Diffstat (limited to 'lib/util.php')
-rw-r--r-- | lib/util.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/util.php b/lib/util.php index e958a87ba..43e565fbf 100644 --- a/lib/util.php +++ b/lib/util.php @@ -978,6 +978,8 @@ function common_fancy_url($action, $args=NULL) { } else { return common_path('main/remote'); } + case 'nudge': + return common_path($args['nickname'].'/nudge'); case 'openidlogin': return common_path('main/openid'); case 'profilesettings': @@ -1861,6 +1863,25 @@ function common_favor_form($notice) { common_element_end('form'); } +function common_nudge_form($profile) { + common_element_start('form', array('id' => 'nudge', 'method' => 'post', + 'action' => common_local_url('nudge', array('nickname' => $profile->nickname)))); + common_hidden('token', common_session_token()); //Is this necessary? +// common_element('input', array('id' => 'nudge_nickname', +// 'name' => 'nudge_nickname', +// 'type' => 'hidden', +// 'value' => $profile->nickname)); + common_element('input', array('type' => 'submit', + 'class' => 'submit', + 'value' => _('Send a nudge'))); + common_element_end('form'); +} + +function common_nudge_response() { + common_element('p', array('id' => 'nudge_response'), _('Nudge sent!')); +} + + function common_cache_key($extra) { return 'laconica:' . common_keyize(common_config('site', 'name')) . ':' . $extra; } |