]> git.mxchange.org Git - friendica.git/blobdiff - object/Conversation.php
Port friendica/friendica#79012bf8882baa6843726bcffbcafe959028c1bd
[friendica.git] / object / Conversation.php
index f4f9c09720d43fa1f4ed78cef331d6817493a969..2b65ba468113c3c9778a43b631441d28768afc1e 100644 (file)
@@ -17,9 +17,11 @@ class Conversation extends BaseObject {
        private $mode = null;
        private $writable = false;
        private $profile_owner = 0;
+       private $preview = false;
 
-       public function __construct($mode) {
+       public function __construct($mode, $preview) {
                $this->set_mode($mode);
+               $this->preview = $preview;
        }
 
        /**
@@ -67,6 +69,13 @@ class Conversation extends BaseObject {
                return $this->writable;
        }
 
+       /**
+        * Check if page is a preview
+        */
+       public function is_preview() {
+               return $this->preview;
+       }
+
        /**
         * Get profile owner
         */