mirror of
https://github.com/friendica/friendica
synced 2025-04-29 03:04:22 +02:00
API: Tredning statuses added
This commit is contained in:
parent
6b36bd893b
commit
c00004f6ea
8 changed files with 85 additions and 12 deletions
|
@ -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
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue