]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/noticeform.php
Implement user interface for user to preview what location they are sharing with...
[quix0rs-gnu-social.git] / lib / noticeform.php
index 593a1e93220a1f6a5e1b9fd41dc5905227314e79..d85de9c22ed8cd5bffa304ae0e5a7abe0742c97e 100644 (file)
@@ -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');
+        }
     }
 }