]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Post.php
Merge branch 'friendica:develop' into bug-noLocalPosts
[friendica.git] / src / Model / Post.php
index 11e5c2c985a8e0e4301a06cbd09bebe01a7a912b..2baa76b5be676a69ec16434de78b7e3a8905f8a6 100644 (file)
@@ -374,6 +374,21 @@ class Post
                return self::selectView('post-thread-user-view', $selected, $condition, $params);
        }
 
+       /**
+        * Select rows from the post-thread-view view
+        *
+        * @param array $selected  Array of selected fields, empty for all
+        * @param array $condition Array of fields for condition
+        * @param array $params    Array of several parameters
+        *
+        * @return boolean|object
+        * @throws \Exception
+        */
+       public static function selectPostThread(array $selected = [], array $condition = [], array $params = [])
+       {
+               return self::selectView('post-thread-view', $selected, $condition, $params);
+       }
+
        /**
         * Select rows from the given view for a given user
         *