mirror of
https://github.com/friendica/friendica
synced 2025-04-26 09:10:15 +00:00
Rename PROTOCOL_* constants to Model\Conversation::PARCEL_*
- Remove unused Conversation::PROTOCOL_GS_CONVERSATION constant - Remove now renamed PROTOCOL_* constant declarations
This commit is contained in:
parent
ffe16be7d6
commit
c13dc549ed
7 changed files with 29 additions and 43 deletions
|
@ -11,13 +11,16 @@ require_once "include/dba.php";
|
|||
|
||||
class Conversation
|
||||
{
|
||||
const PROTOCOL_UNKNOWN = 0;
|
||||
const PROTOCOL_DFRN = 1;
|
||||
const PROTOCOL_DIASPORA = 2;
|
||||
const PROTOCOL_OSTATUS_SALMON = 3;
|
||||
const PROTOCOL_OSTATUS_FEED = 4; // Deprecated
|
||||
const PROTOCOL_GS_CONVERSATION = 5; // Deprecated
|
||||
const PROTOCOL_SPLITTED_CONV = 6;
|
||||
/*
|
||||
* These constants represent the parcel format used to transport a conversation independently of the message protocol.
|
||||
* It currently is stored in the "protocol" field for legacy reasons.
|
||||
*/
|
||||
const PARCEL_UNKNOWN = 0;
|
||||
const PARCEL_DFRN = 1;
|
||||
const PARCEL_DIASPORA = 2;
|
||||
const PARCEL_SALMON = 3;
|
||||
const PARCEL_FEED = 4; // Deprecated
|
||||
const PARCEL_SPLIT_CONVERSATION = 6;
|
||||
|
||||
/**
|
||||
* @brief Store the conversation data
|
||||
|
|
|
@ -1239,7 +1239,7 @@ class Item extends BaseObject
|
|||
$item['wall'] = 1;
|
||||
$item['origin'] = 1;
|
||||
$item['network'] = NETWORK_DFRN;
|
||||
$item['protocol'] = PROTOCOL_DFRN;
|
||||
$item['protocol'] = Conversation::PARCEL_DFRN;
|
||||
|
||||
if (is_int($notify)) {
|
||||
$priority = $notify;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue