summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2009-12-29 16:17:17 -0500
committerCraig Andrews <candrews@integralblue.com>2009-12-29 16:18:52 -0500
commit98ce7daf5650ebd7e6f6bbaca6e57069ffccae55 (patch)
tree9fc9ec3b9b95d3bd638049e188b97de48662655d /lib
parente152bec2822a4ec773d02dd05f080a049ff3d524 (diff)
Implement user interface for user to preview what location they are sharing with a notice
Diffstat (limited to 'lib')
-rw-r--r--lib/action.php1
-rw-r--r--lib/noticeform.php6
-rw-r--r--lib/router.php3
3 files changed, 9 insertions, 1 deletions
diff --git a/lib/action.php b/lib/action.php
index dac0e2583..35df03566 100644
--- a/lib/action.php
+++ b/lib/action.php
@@ -252,6 +252,7 @@ class Action extends HTMLOutputter // lawsuit
if (Event::handle('StartShowJQueryScripts', array($this))) {
$this->script('js/jquery.min.js');
$this->script('js/jquery.form.js');
+ $this->script('js/jquery.cookie.js');
$this->script('js/jquery.joverlay.min.js');
Event::handle('EndShowJQueryScripts', array($this));
}
diff --git a/lib/noticeform.php b/lib/noticeform.php
index 593a1e932..d85de9c22 100644
--- a/lib/noticeform.php
+++ b/lib/noticeform.php
@@ -220,5 +220,11 @@ class NoticeForm extends Form
'name' => 'status_submit',
'type' => 'submit',
'value' => _('Send')));
+ if($this->user->shareLocation()) {
+ $this->out->elementStart('div',array('id' => 'notice_data-location_enabled_container', 'data-geocode-url' => common_local_url('geocode')));
+ $this->out->checkbox('notice_data-location_enabled',_('Share your location '));
+ $this->out->element('a', array('style' => 'display: none', 'target' => '_blank', 'id' => 'notice_data-location_name'), _('Finding your location...'));
+ $this->out->elementEnd('div');
+ }
}
}
diff --git a/lib/router.php b/lib/router.php
index 474e05996..7ec962460 100644
--- a/lib/router.php
+++ b/lib/router.php
@@ -100,7 +100,8 @@ class Router
'sandbox', 'unsandbox',
'silence', 'unsilence',
'repeat',
- 'deleteuser');
+ 'deleteuser',
+ 'geocode');
foreach ($main as $a) {
$m->connect('main/'.$a, array('action' => $a));