]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/noticeform.php
ToSelector widget to send private notices
[quix0rs-gnu-social.git] / lib / noticeform.php
index 2cbacc9280ae6f20df06b7574e35a9a20541ddc2..01a462aad1bbbfc03ea85ed43a36b5756d358e93 100644 (file)
@@ -79,6 +79,15 @@ class NoticeForm extends Form
     var $location_id;
     var $location_ns;
 
+    /** select this group from the drop-down by default. */
+    var $to_group;
+
+    /** select this user from the drop-down by default. */
+    var $to_user;
+
+    /** Pre-click the private checkbox. */
+    var $private;
+
     /**
      * Constructor
      *
@@ -109,7 +118,8 @@ class NoticeForm extends Form
         $this->actionName  = $action->trimmed('action');
 
         $prefill = array('content', 'inreplyto', 'lat', 
-                         'lon', 'location_id', 'location_ns');
+                         'lon', 'location_id', 'location_ns',
+                         'to_group', 'to_profile', 'private');
 
         foreach ($prefill as $fieldName) {
             if (array_key_exists($fieldName, $options)) {
@@ -117,6 +127,16 @@ class NoticeForm extends Form
             }
         }
 
+        // Prefill the profile if we're replying
+
+        if (empty($this->to_profile) &&
+            !empty($this->inreplyto)) {
+            $notice = Notice::staticGet('id', $this->inreplyto);
+            if (!empty($notice)) {
+                $this->to_profile = $notice->getProfile();
+            }
+        }
+
         if (array_key_exists('user', $options)) {
             $this->user = $options['user'];
         } else {
@@ -218,6 +238,14 @@ class NoticeForm extends Form
             }
             $this->out->hidden('notice_in-reply-to', $this->inreplyto, 'inreplyto');
 
+            $this->out->elementStart('div');
+            $toWidget = new ToSelector($this->out,
+                                       $this->user,
+                                       (!empty($this->to_group) ? $this->to_group : $this->to_user));
+
+            $toWidget->show();
+            $this->out->elementEnd('div');
+
             if ($this->user->shareLocation()) {
                 $this->out->hidden('notice_data-lat', empty($this->lat) ? (empty($this->profile->lat) ? null : $this->profile->lat) : $this->lat, 'lat');
                 $this->out->hidden('notice_data-lon', empty($this->lon) ? (empty($this->profile->lon) ? null : $this->profile->lon) : $this->lon, 'lon');