Added documentation
This commit is contained in:
parent
27905cc21a
commit
4ef44c67b8
1 changed files with 12 additions and 4 deletions
|
@ -676,13 +676,21 @@ function ostatus_conv_fetch_actor($actor) {
|
||||||
update_gcontact($contact);
|
update_gcontact($contact);
|
||||||
}
|
}
|
||||||
|
|
||||||
function ostatus_fetch_conversation($self, $conversation_url = "") {
|
/**
|
||||||
|
* @brief Fetches the conversation url for a given item link or conversation id
|
||||||
|
*
|
||||||
|
* @param string $self The link to the posting
|
||||||
|
* @param string $conversation_id The conversation id
|
||||||
|
*
|
||||||
|
* @return string The conversation url
|
||||||
|
*/
|
||||||
|
function ostatus_fetch_conversation($self, $conversation_id = "") {
|
||||||
|
|
||||||
if ($conversation_url != "") {
|
if ($conversation_id != "") {
|
||||||
$elements = explode(":", $conversation_url);
|
$elements = explode(":", $conversation_id);
|
||||||
|
|
||||||
if ((count($elements) <= 2) OR ($elements[0] != "tag"))
|
if ((count($elements) <= 2) OR ($elements[0] != "tag"))
|
||||||
return $conversation_url;
|
return $conversation_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($self == "")
|
if ($self == "")
|
||||||
|
|
Loading…
Reference in a new issue